in reply to Re^2: Converting bytes to floats
in thread Converting bytes to floats

Yes, I think, what you are looking for is $number = unpack('d', $bytes);

If $bytes hold 8 bytes, then unpack will convert that to a number.