Convert hex to ASCII by jonathan camacho

#!perl -p
$_=join("",map{$v=ord pack("H2",$_);($v<32||$v>126)&&$v!=10?lc("\\x$_"):chr($v) eq"\n"?"\\n\n":chr($v)}split)

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

download

return to the top page