Convert between decimal numbers and IEEE 754 floating-point binary representation. Essential for computer engineering and low-level programming.
Enter any decimal number. Supports positive/negative and fractional values.
Enter exactly 32 binary digits (0s and 1s) representing the IEEE 754 float.
IEEE 754 single precision (32-bit) floating-point numbers consist of three components: sign bit, exponent, and mantissa. This format provides a balance between range and precision.