In Python 2, to get a string representation of the hexadecimal digits in a string, you could do
>>> '\x12\x34\x56\x78'.encode('hex') '12345678'
In Python 3, that doesn't work anymore (tested on Python 3.2 and 3.3):
>>> '\x12\x34\x56\x78'.encode('hex') Traceback (most recent call last): File "<stdin>", line 1, in <module> LookupError: unknown encoding: hex
There is at least one answer here on SO that mentions that the hex
codec has been removed in Python 3. But then, according to the docs, it was reintroduced in Python 3.2, as a "bytes-to-bytes mapping".
However, I don't know how to get these "bytes-to-bytes mappings" to work:
>>> b'\x12'.encode('hex') Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'bytes' object has no attribute 'encode'
And the docs don't mention that either (at least not where I looked). I must be missing something simple, but I can't see what it is.
To convert Python String to hex, use the inbuilt hex() method. The hex() is a built-in method that converts the integer to a corresponding hexadecimal string. For example, use the int(x, base) function with 16 to convert a string to an integer.
Hex encoding is performed by converting the 8 bit data to 2 hex characters. The hex characters are then stored as the two byte string representation of the characters. Often, some kind of separator is used to make the encoded data easier for human reading.
To assign value in hexadecimal format to a variable, we use 0x or 0X suffix. It tells to the compiler that the value (suffixed with 0x or 0X) is a hexadecimal value and assigns it to the variable.
You need to go via the codecs
module and the hex_codec
codec (or its hex
alias if available*):
codecs.encode(b'\x12', 'hex_codec')
* From the documentation: "Changed in version 3.4: Restoration of the aliases for the binary transforms".
Yet another way using binascii.hexlify()
:
>>> import binascii >>> binascii.hexlify(b'\x12\x34\x56\x78') b'12345678'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With