Skip to content

Instantly share code, notes, and snippets.

@acdha
Created November 3, 2017 19:03
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 acdha/77a46f29a17e6262d280a93a8d6f35c8 to your computer and use it in GitHub Desktop.
Save acdha/77a46f29a17e6262d280a93a8d6f35c8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
from unicodedata import category, name
from sys import maxunicode
for i in range(0, maxunicode):
char = chr(i)
if category(char) == 'Zs':
print(i, name(char), char, sep='\t')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment