Floating point numbers are represented at the hardware level of most computer systems in normalized binary scientific notation. We will consider a hypothetical computer in which floating point numbers are represented in a 16-bit word. An example is shown in Figure 1. In the common Intel chips, the exponent of a float has 8 bits and the mantissa has 23 bits, otherwise the representation is the same as in Figure 1.

We will show that this particular example represents the number whose usual decimal representation is -10.375.
The leftmost bit (the sign bit) is 1 if the floating point number is negative, 0 otherwise.
The next seven bits (1000010 in this example) represent the Exponent component of the normalized binary scientific notation. The following two operations will reveal the exponent's actual value:
Evaluate the binary number 1000010: it is 1*64+0*32+0*16+0*8+0*4+1*2+0*1 = 66.
Subtract the bias correction 63 from 66, which yields 3 as the actual value of the exponent that we will use below.
(The purpose of the bias correction is to allow negative exponents. As long as the exponent has seven bits, which will always be the case in this program, the bias correction is 63 = 27-1 - 1.)
The remaining 8 bits (01001100 in this example) constitute the mantissa, which is the fractional part of the normalized binary scientific notation. You will see in the next step how it is used.
The sign bit, the mantissa, and the exponent are used to calculate the value of the floating point number:

The period preceding the mantissa is the "binary point" which has the same meaning as the decimal point in a decimal (base ten) representation.
In the normalized binary scientific notation there is only one binary digit preceding the binary point, and it is always 1 (except if the floating point number is the number zero). It is called the characteristic. Since it is always 1, it does not explicitly appear in the 16-bit representation of Figure 1.
Since the number 1.01001100 is in binary, the digits to the right of the binary point represent successive negative powers of 2. Therefore, the number shown in Figure 2 can be re-written as

Here the result has been expressed using scientific notation (base ten). Most programming languages would output this result as -1.0375e+001. The use of a lower case “e” or upper case “E”, and the number of leading zeros in the exponent can vary from one programming language to another.
An important exception: if all bits except the sign bit are zero, then the floating point number is zero, regardless of the sign bit.