I\'m having troubles in encoding characters in utf-8. I\'m using Django, and I get this error when I tried to send an Android notification with non-plain text. I tried to find w
Use u'...', without the u prefix it is byte-string not a unicode string.:
u'...'
u
>>> u'ç'.encode('utf8') '\xc3\xa7'