I've a problem with mysql 5.5 on os x. I'm working on a multilanguages project and using MyISAM table. the default characterset is utf-8 and default collation utf8_unicode_ci.
Italian and German are fine, but spanish is not. I'm using python for manipulating datas, pymysql driver with charset option to utf-8 and unicode true.
Practically all the specific spanish letters are a mess.
from python shell:
>>>r
>>>['Blas P\xc3\xa9rez Gonz\xc3\xa1lez, 4']
>>>print[0]
>>>Blas Pérez González, 4
after saving it to database and fetching it again:
>>>r
>>>(u'Blas P\xc3\xa9rez Gonz\xc3\xa1lez, 4')
>>>print r[0]
>>>Blas Pérez González, 4
I'm really confused, it clearly seems to be the same unicode string!
Thanks.