PythonでHexをデコードするには

頭に"\x"をつけてプリントすればOK

>>> print("\x68\x65\x6c\x6c\x6f")
hello

Python 2.0 系なら以下でも可

>>> '68656c6c6f'.decode('hex')
'hello'

以上

Leave a Reply

Your email address will not be published. Required fields are marked *