Enter values to see detailed analysis and insights.
How to Use
- 1Enter a decimal number.
- 2The calculator will show the binary and hexadecimal representation.
- 3It also breaks down the Sign, Exponent, and Mantissa.
IEEE 754 Single Precision
Value = (-1)^S × 1.M × 2^(E-127)Variables:
SSign bit (0=+, 1=-)EExponent (biased by 127)MMantissa (fractional part)Example
Inputs:
Steps:
- 1.Binary = 01000001010010000000000000000000
- 2.Sign = 0 (+)
- 3.Exponent = 10000010 (130 - 127 = 3)
- 4.Mantissa = 1.1001... (1 + 0.5 + 0.0625 = 1.5625)
- 5.Value = 1.5625 * 2^3 = 12.5
