Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save leveled/e966911539c99a9e2bdfe5e7aededead to your computer and use it in GitHub Desktop.
Save leveled/e966911539c99a9e2bdfe5e7aededead to your computer and use it in GitHub Desktop.
Return unicode character from an ordinal argument and vice versa in python
>>> unichr(97)
u'a'
>>> unichr(1234)
u'\u04d2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment