ASCII Table by Systwo

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

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

download

return to the top page