IEEE 754 floating-point converter
Convert any decimal number into its IEEE 754 representation in 32-bit single or 64-bit double precision. The tool shows the hexadecimal value, the full binary pattern, and breaks the number into its three fields: the sign bit, the biased exponent, and the mantissa.
IEEE 754 is the floating-point standard used by virtually every programming language and CPU. Because many decimals cannot be stored exactly in binary, the bits you see are the nearest representable value — computed locally in your browser.