s = "hello normal string" u = unicode(s, "utf-8") backToBytes = u.encode("utf-8")
For Thai, python uses cp874 encoding.
s = '' # my thai name t = s.decode('cp874') # same as unicode(..) appuifw.note(t, 'info')
12382 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
s = "hello normal string" u = unicode(s, "utf-8") backToBytes = u.encode("utf-8")
s = '' # my thai name t = s.decode('cp874') # same as unicode(..) appuifw.note(t, 'info')
You need to create an account or log in to post comments to this site.