hex integer to string python code example
Example 1: hex to string python
>>> bytes.fromhex('HexValue').decode('utf-8')
'string'
>>> bytes.fromhex('7368616b6564').decode('utf-8')
'shaked'
Example 2: hex to string python
>>> bytes.fromhex('deadbeef')
b'\xde\xad\xbe\xef'