ASCII Table by croyal

#include<stdio.h>

main(){
   int i;
   for(i=32;i<127;i++){
      if(i!=32 && (i-32)%16==0){
         printf("\n");
      }
      printf("%c",i);
      if((i-31)%16!=0){
         printf(" ");
      }
   }
}

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

download

return to the top page