Skip to content

Instantly share code, notes, and snippets.

@mahiuchun
Created April 14, 2014 06:50
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 mahiuchun/10622337 to your computer and use it in GitHub Desktop.
Save mahiuchun/10622337 to your computer and use it in GitHub Desktop.
from unicodedata import name
bullets = list()
for i in range(0x10000):
try:
c = unichr(i)
if 'BULLET' in name(c):
bullets.append(c)
except:
pass
bullets.sort(key = lambda c:name(c))
for c in bullets:
print name(c), c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment