I'm trying to read data from a MySql database. Everything is correct except when I have to receive words with an accent or the character 'ñ'
I have reviewed the collation of my database. I have it configured in utf8_unicode_ci in the table and in the column.
I use python 2.7.8 and I have tried to decode and unicode and I can not write well the result of the tables. I always get:
Baño -> Ba\xf1o
Lámina -> L\xe1mina
I launch the query from RIDE (1.5.2.1) under Windows 10.
Any ideas?
Thank you.