Convert hex to ASCII by Uruwi

import sys
for w in sys.stdin.read().split():c=int(w,16);print(end=[['\\x'+w.lower(),'\\n\n'],chr(c)][31<c<127][c==10])

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

download

return to the top page