Binary Fraction to Decimal Converter
Convert binary fractions to decimal instantly. Enter values such as 101.101, 10.11 or 0.001 and get the decimal result together with a detailed powers-of-two breakdown and step-by-step calculation.
Handles integer and fractional binary digits.
See every power of two used.
View each bit and its decimal contribution.
Calculate directly in your browser.
Binary Fraction to Decimal Converter
A binary fraction is a base-2 number containing digits both before and after a binary point. While ordinary binary integers use powers such as 2⁰, 2¹, 2² and 2³, the digits after a binary point use negative powers of two such as 2⁻¹, 2⁻², 2⁻³ and 2⁻⁴.
This binary fraction to decimal converter calculates the base-10 value of a binary number automatically. You can enter a value such as 101.101₂, 0.011₂ or 1110.001₂ and immediately see its decimal equivalent.
How to Convert Binary Fractions to Decimal
Binary uses positional notation. Each position has a value equal to a power of two. The binary point separates positive powers of two from negative powers of two.
… b₃×2³ + b₂×2² + b₁×2¹ + b₀×2⁰ + b₋₁×2⁻¹ + b₋₂×2⁻² + b₋₃×2⁻³ …
Live Binary Fraction Calculation Breakdown
This table updates whenever you use the calculator. It shows each binary digit, the corresponding power of two, its place value and the amount contributed to the final decimal result.
| Bit | Position | Power | Decimal Place Value | Contribution |
|---|
Binary Fraction Place Value Chart
Every move one position to the right of the binary point divides the place value by two.
| Position | Power | Fraction | Decimal Value |
|---|---|---|---|
| 1st fractional bit | 2⁻¹ | 1/2 | 0.5 |
| 2nd fractional bit | 2⁻² | 1/4 | 0.25 |
| 3rd fractional bit | 2⁻³ | 1/8 | 0.125 |
| 4th fractional bit | 2⁻⁴ | 1/16 | 0.0625 |
| 5th fractional bit | 2⁻⁵ | 1/32 | 0.03125 |
| 6th fractional bit | 2⁻⁶ | 1/64 | 0.015625 |
| 7th fractional bit | 2⁻⁷ | 1/128 | 0.0078125 |
| 8th fractional bit | 2⁻⁸ | 1/256 | 0.00390625 |
Worked Example: Convert 101.101₂ to Decimal
Consider the binary fraction 101.101₂. Start by assigning a power of two to every digit.
= (1 × 2²)
+ (0 × 2¹)
+ (1 × 2⁰)
+ (1 × 2⁻¹)
+ (0 × 2⁻²)
+ (1 × 2⁻³)
= 4 + 0 + 1 + 0.5 + 0 + 0.125
= 5.625₁₀
The integer portion 101₂ equals 5. The fractional portion .101₂ equals 0.625. Adding both parts produces the final decimal value of 5.625.
Binary Fraction to Decimal Examples
The following examples cover some of the most common binary fractional patterns.
1 × 2⁻¹ = 0.5
1 × 2⁻² = 0.25
1 × 2⁻³ = 0.125
1 + 0.25 = 1.25
2 + 0.5 + 0.25 = 2.75
2 + 1 + 0.125 = 3.125
4 + 1 + 0.25 + 0.125 = 5.375
4 + 2 + 1 + 0.5 + 0.25 + 0.125
Binary Integers vs Binary Fractions
Binary integers and binary fractions use the same digits—0 and 1—but the position of those digits determines their value.
Binary integer positions
Digits to the left of the binary point use non-negative powers of two. Starting next to the binary point, the values are 1, 2, 4, 8, 16, 32 and so on.
Binary fractional positions
Digits to the right of the binary point use negative powers. Their values begin with 1/2, 1/4, 1/8, 1/16, 1/32 and continue dividing by two.
Where Binary Fractions Are Used
Binary fractions are not only an academic number-system concept. They are fundamental to the way digital systems represent non-integer values.
Binary Fraction Accuracy and Repeating Values
A finite binary fraction can exactly represent values whose reduced fractional denominator is a power of two. Examples include 1/2, 1/4, 3/8 and 7/16.
However, not every decimal fraction has a finite binary representation. For example, decimal 0.1 repeats indefinitely when written in binary. This is similar to how one-third repeats indefinitely as 0.3333… in decimal.
This behavior explains why computers sometimes display tiny rounding differences in calculations involving decimal fractions. The underlying binary representation may be an approximation rather than an exact finite value.
How to Convert Binary Fractions Manually
You can convert a binary fraction without a calculator by writing the place value underneath each bit and adding only the positions that contain a 1.
For example, consider 10.1011₂.
0 × 2⁰ = 0
1 × 2⁻¹ = 0.5
0 × 2⁻² = 0
1 × 2⁻³ = 0.125
1 × 2⁻⁴ = 0.0625
2 + 0.5 + 0.125 + 0.0625 = 2.6875
Therefore, 10.1011₂ = 2.6875₁₀.
Common Binary Fraction Conversion Mistakes
- Using decimal tenths and hundredths. Binary positions after the point are halves, quarters, eighths and other powers of two.
- Starting with 2⁰ after the binary point. The first fractional position is 2⁻¹, not 2⁰.
- Ignoring zero positions. A zero contributes nothing, but its place still affects the exponent of later bits.
- Reading .1₂ as 0.1 decimal. Binary .1 equals decimal 0.5.
- Using digits other than 0 and 1. Standard binary numbers can contain only those two digits.
- Confusing binary fractions with IEEE 754 bit patterns. An IEEE floating-point pattern must be decoded using separate sign, exponent and fraction fields.
About This Binary Fraction Calculator
The calculator above validates your binary input and calculates both the whole-number and fractional portions. It then generates an expanded equation and a detailed place-value table.
- Supports binary values containing a binary point.
- Also accepts binary integers without a fractional part.
- Shows the decimal result immediately.
- Displays active decimal contributions.
- Creates a bit-by-bit conversion table.
- Provides quick example values.
- Works directly in modern desktop and mobile browsers.
- No registration or software installation is required.
Binary Fraction to Decimal FAQs
What is a binary fraction?
How do you convert binary fractions to decimal?
What is binary 0.1 in decimal?
What is binary 0.01 in decimal?
What is 101.101 binary in decimal?
What is the first position after a binary point?
What is the second position after a binary point?
Is a binary point the same as a decimal point?
Can all decimal fractions be represented exactly in binary?
Can this calculator convert binary integers too?
Which digits are valid in a binary fraction?
Why are binary fractions important in computers?
Is a binary fraction the same as IEEE 754?
Is this binary fraction converter free?
Convert Binary Fractions to Decimal Instantly
Use the calculator at the top of this page whenever you need to convert a binary fraction into decimal form. Enter the base-2 number, choose Convert to Decimal, and review both the final result and the detailed powers-of-two breakdown.
The additional examples, place-value chart and explanations on this page can also help you understand the conversion manually rather than simply obtaining an answer.