top | item 47044606

(no title)

timonoko | 13 days ago

where does this character set come from? It looks different on xterm.

for x in range(0x0,0x20): print(chr(x),end=" ")

                    

discuss

order

voxelghost|13 days ago

What are you trying to achieve, none of those characters are printable, and definetly not going to show up on the web.

    for x in range(0x0,0x20): print(f'({chr(x)})', end =' ')
    (0|) (1|) (2|) (3|) (4|) (5|) (6|) (7|) (8) (9| ) (10|
    ) (11|
          ) (12|
    ) (14|) (15|) (16|) (17|) (18|) (19|) (20|) (21|) (22|) (23|) (24|) (25|)    (26|␦) (27|8|) (29|) (30|) (31|)

timonoko|13 days ago

Just asking why they have different icons in different environments? Maybe it is UTF-8 vs ISO-8859?

timonoko|12 days ago

Ok this set does not even show on Android, just some boxes. Very strange.