Never been to DZone Snippets before?

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

Using utf-8 in python (See related posts)

Convert a byte string into a Unicode string and back again.
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')

You need to create an account or log in to post comments to this site.


Click here to browse all 5146 code snippets

Related Posts