Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python char to hex

tmp = "hello world"

print("".join(["{:02x}".format(ord(c)) for c in tmp]))
 
PREVIOUS NEXT
Tagged: #python #char #hex
ADD COMMENT
Topic
Name
5+3 =