I have hex value 4396 eccd. If I convert it to floating point number using some online calculator, I get value as 301.85 which is correct.
But when I convert it using python, I get some different value:
>>> float.fromhex('0x4396eccd')
1133964493.0
can anyone please help me on why its showing wrong value in python. Thanks