# your code goes here
from unicodedata import name

# caracteres que isdigit() retorna True, mas dão erro ao converter para int
for i in range(0x10ffff + 1):
	s = chr(i)
	if s.isdigit():
		try:
			int(s)
		except ValueError:
			print(f'{i:06X}, {s}, {name(s, "")}')