The function returns places in radius using the Google Places API. To be exact, I use this library to handle the task.
The problem is that cyrillic symbols are shown like this:
ÐО Сбербанк РоÑÑии, КиевÑкое отделение â„–14
I tried these suggestions. I also tried this:
pname = place.name
uni = unicode(place.name)
And this:
convertedname = pname.encode(encoding='UTF-8', errors='strict')
Nothing helped. What else can I try?