Skip to content

Instantly share code, notes, and snippets.

@lxneng
Created August 31, 2016 07:03
Show Gist options
  • Save lxneng/f22ae4859d449210c90be477091c2bfb to your computer and use it in GitHub Desktop.
Save lxneng/f22ae4859d449210c90be477091c2bfb to your computer and use it in GitHub Desktop.
decode hex ascii
>>> a = unichr(int('5E97', 16))
>>> a
u'\u5e97'
>>> print(a)
>>> "%X" % ord(u'店')
'5E97'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment