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
You'll want to use the unichr() builtin function:
for i in range(1000,1100): print i, unichr(i)
Note that in Python 3, just chr() will suffice.