[Fixed]-Show ASCII characters in django template (python 2)

1👍

Finally I solved it with

myString.decode('latin1')

I had to check my DB as Joel Goldstick said, as some tables were enconded in utf-8 and some in latin1, which I didn’t know.

Changing my mysql table charset to CHARSET=utf8mb4 didn’t work either.

Leave a comment