import unicodedata # for h in [0x11, 0x41, 0x61, 0x1f34c]: for h in [ 0x41, 0x61, 0x1f34c]: c = chr(h) print(f"{h:05x} {unicodedata.category(c)} {unicodedata.name(c)}")
Index