Convert hex to utf in Python
- by user260223
Hi..
I have a hex string and i want to convert it utf8 to insert mysql. (my database is utf8)
hex_string = 'kitap ara\xfet\xfdrmas\xfd'
..
..
..
result='kitap arastirmasi'
How can i do that?
Best regards.