Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python bytes to hex

#Hex -> Bytes
>>> b'xdexadxbexef'.hex()
'deadbeef'

#Bytes -> Hex
>>> bytes.fromhex('deadbeef')
b'xdexadxbexef'
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #bytes #hex
ADD COMMENT
Topic
Name
4+6 =