16 进制需要先转为 10 进制的 byte,然后 byte 和 str 相互转换 Python # ascii str to hex str "hello".encode().hex() # '68656c6c6f' # hex str to ascii bytes.fromhex("68656c6c6f").decode() # "hello"