I have an issue when I want to display non-american characters such as “é” on postman. When I compile the code that has to display these types of characters on my console, it works, but when I use this code as an api in Postman, the response displays “\u00e9” instead of “é”.
I tried to change the Content-Type to application/json;charset=utf-8 , but nothing changed.
The problem was just that, in order to print the result on postman, I used the json.dumps() method but if I don’t put ensure_ascii=False then it doesn’t convert non-american characters. I add this and now it works well.