Programing/Python
hex2string
mjune.kim
2020. 6. 2. 08:23
a = "0x20"
hex_str = str(hex(a))[2:]
a = "0x20"
hex_str = str(hex(a))[2:]