ASCII Table by croyal

for c in range(32,127):
 if c!=32 and (c-32)%16==0:print
 print chr(c),   

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page