I want to print some unicode characters but u\'\\u1000\'
up to u\'\\u1099\'
. This doesn\'t work:
for i in range(1000,1100):
s=unico
if you'd like to print the characters corresponding to an arbitrary unicode range, you can use the following (python 3)
unicode_range = ('4E00', '9FFF') # (CJK Unified Ideographs)
characters = []
for unicode_character in range(int(unicode_range[0], 16), int(unicode_range[1], 16)):
characters.append(chr(unicode_character))