Hello I am trying to store a string value to MySQL, and i use db.escape_string() so not to escape special characters. The string is
Lala*=#&%@<>_?!:;-'"/()¥¡¿
But when I try to run the code, I get this error:
UnicodeEncodeError: 'ascii' codec can't encode characters in position 23-25: ordinal not in range(128)
What should I do?