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
One might appreciate this php-cli version:
It is using html entities and UTF8 decoding.
Recent version of XTERM and others terminals supports unicode chars pretty nicely :)
php -r 'for ($x = 0; $x < 255000; $x++) {echo html_entity_decode("".$x.";",ENT_NOQUOTES,"UTF-8");}'