I want to print some unicode characters but u\'\\u1000\' up to u\'\\u1099\'. This doesn\'t work:
u\'\\u1000\'
u\'\\u1099\'
for i in range(1000,1100): s=unico
Use unichr:
s = unichr(i)
From the documentation:
unichr(i) Return the Unicode string of one character whose Unicode code is the integer i. For example, unichr(97) returns the string u'a'.
unichr(i)
Return the Unicode string of one character whose Unicode code is the integer i. For example, unichr(97) returns the string u'a'.