import re, unicodedata

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

for i in range(0x10ffff + 1):
	s = chr(i)
	if r.match(s):
		print(s, unicodedata.name(s))