ASCII Table by

#include <iostream>;\x0d
using namespace std;\x0d
int main() {\x0d
char i;\x0d
int c=0;\x0d
for (i=32;i<127;i++){\x0d
c++;\x0d
cout << i;\x0d
\x0d
if(c%16==0){cout << "\n";}else{cout <<" ";}\x0d
}\x0d
return 0;\x0d
}

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

download

return to the top page