python char to hex code example
Example 1: python char to hex
tmp = "hello world"
print("".join(["{:02x}".format(ord(c)) for c in tmp]))
Example 2: get hex code of character python
import codecs
codecs.encode(b"c", "hex")
Example 3: get hex code of character python
hex(ord("c"))
Example 4: python char to hex
import codecs
x = codecs.encode(b"c", "hex")
print(x)
# b'63'