In my project I have a QString with the hex value (Big Endian)
QString hex_in("413DF3EBA463B0");
How could I convert hex_in to a rounded double? IEEE 754 (https://en.wikipedia.org/wiki/Double_precision_floating-point_format)
34.5
The user will edit the double and then my program needs to convert it back to hex.
Thanks for your time :)