Convert hex to ASCII by llhuii

awk '{for(i=e;e$++i;)printf(32>c=+("0x"$i))||126<c?c-10?"\\x%02x":"\\n%c":"%c",c}'

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

download

return to the top page