Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to decode hexadecimal in python

hexstring = "4869"
a_string = bytes.fromhex(hexstring)
a_string = a_string.decode("ascii")
print(a_string)
Source by www.kite.com #
 
PREVIOUS NEXT
Tagged: #decode #hexadecimal #python
ADD COMMENT
Topic
Name
2+5 =