hex table by Hendrik

class X{static void Main(){for(int i=0,j;i<16;i++)for(j=0;j<17;)System.Console.Write(j>15?"\n":"{0:x}",i*j++%16);}}

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

download

return to the top page