Ascii decode by nooodl

a=hex(input());print''.join([chr(int(a[n*2:n*2+2],16))for n in range(1,len(a)/2)])

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

download

return to the top page