toolery

IEEE 754 converter

Convert a decimal number into its IEEE 754 single-precision binary representation, broken into sign, exponent, and mantissa.

| |
Sign
Exponent
Mantissa
Hex:

How it works

IEEE 754 single-precision splits 32 bits into three parts: 1 sign bit (positive or negative), 8 exponent bits (scale), and 23 mantissa bits (precision). Together they represent the number the same way scientific notation does, in binary.

Used this in a paper or lesson?