Skip to content

Instantly share code, notes, and snippets.

@alex
Created March 20, 2017 04:31
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 alex/a95b8960ff056ce9ade088ee1e64a4ff to your computer and use it in GitHub Desktop.
Save alex/a95b8960ff056ce9ade088ee1e64a4ff to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import sys
import unicodedata
if __name__ == "__main__":
for arg in sys.argv[1:]:
for c in arg.strip():
print(unicodedata.name(c))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment