Skip to content

Instantly share code, notes, and snippets.

Created April 27, 2013 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/5473754 to your computer and use it in GitHub Desktop.
Save anonymous/5473754 to your computer and use it in GitHub Desktop.
>>> for c in 'abc中文def'.decode('utf-8'):
... print len(c), c, binascii.b2a_hex(c)
1 a 61
1 b 62
1 c 63
1 中 e4b8ad
1 文 e69687
1 d 64
1 e 65
1 f 66
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment