
from unicodedata import name
import re

d = re.compile(r'\d')

for c in range(0x10ffff):
    s = chr(c)
    if d.match(s):
        print(f'{c:06X} {s} - {name(s, "")}')