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
unichr is the function you are looking for - it takes a number and returns the Unicode character for that point.
for i in range(1000, 1100): print i, unichr(i)