I am trying to migrate my old backend to Djano REST framework. I have my old MySQL database with UTF-8. For example, in my database a name is saved as "Felipe Niño Arango". I'm not sure, but I think drf should decode this in response "Felipe Niño Arango".
I'am trying passing the chartset to db options:
'OPTIONS': {
'charset': 'latin1',
'use_unicode': True, }
Any idea?