Skip to content

Instantly share code, notes, and snippets.

@tohta
Created July 24, 2018 07:58
Show Gist options
  • Select an option

  • Save tohta/1f8146f46b381933a64e6468005a0f9c to your computer and use it in GitHub Desktop.

Select an option

Save tohta/1f8146f46b381933a64e6468005a0f9c to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import sys, unicodedata
for c in sys.stdin.read().decode('utf-8'):
try:
print '%s : %s' % (c, unicodedata.name(c))
except ValueError:
print 'codepoint ', ord(c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment