Convert hex to ASCII by llhuii

import os
while 1:d=int(os.read(0,3),16);os.write(1,(('\\x%02x','\\n%c')[d==10],'%c')[31<d<127]%d)

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

download

return to the top page