Convert hex to ASCII by lpha

main(i){for(;~scanf("%x",&i);)printf(isprint(i)?"%c":i-10?"\\x%02x":"\\n\n",i);}

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

download

return to the top page