im trying to sending a response to a web, with multilingual characters on python 3 but all the time, it comes this:
"\\xd8\\xa7\\xd9\\x84\\xd9\\x82\\xd8\\xa7\\xd9\\x85\\xd9\\x88\\xd8\\xb3 \\xd8\\xa7\\xd9\\x84\\xd8\\xb9\\xd8\\xb1\\xd8\\xa8\\xd9\\x8a Espa\\xc3\\xb1a".
When the correct answer is this:
القاموس العربي España.
This is the code:
s="القاموس العربي España".encode(encoding='UTF-8')
Where can be my mistake?