In Python, I need to convert a string to float where the string hex value as below
print(float.fromhex("c018dd8dad51d100"))
I got a value of:
1.3842057055291167e+19
but the same string in IEEE-754 calculator given some other negative value. My requirement is to match with IEEE-754 standard. Can anyone help me in this?