I trying to decode a hex string in python.
value = ""
for i in "54 C3 BC 72 20 6F 66 66 65 6E 20 4B 6C 69 6D 61".split(" "):
value += chr(int(i, 16))
print(value)
Result:
Tür offen Klima
Expected result should be "Tür offen Klima" How can i make this work properly ?