I have strings (English words + foreign word + emojis) stored in the Mysql DB.
The data is loaded with
charset = 'latin1'
Then I preproccess the data with
str = str.encode('latin-1').decode('utf-8')
After doing so everything looks good except for the Unicode symbols that look like \u'******'
I would appreciate any help.