CalcuClubCalcuClub Logo

Binary to Decimal Converter

Enter the binary number you want to convert to decimal.

The result will be displayed here.
Calculation Steps:
Calculation steps will be displayed here.

Table of Contents

How does binary to decimal conversion work?

The binary system is base 2 and the decimal system is base 10. To convert, multiply each binary digit by the corresponding power of 2 (starting from the right with 20) and add up the results.

Binary to decimal conversion formula

For a binary number of n digits:

D=i=0n1bi·2i

Where bi is each binary digit (0 or 1) at position i.

This formula represents the conversion of a binary number to decimal, where each binary digit is multiplied by 2 raised to the power of its position.
Decimal Number=bn×2n+bn1×2n1++b1×21+b0×20\text{Decimal Number} = \color{#B91C1C}b_n \color{#111827}\times 2^n + \color{#B91C1C}b_{n-1} \color{#111827}\times 2^{n-1} + \ldots + \color{#B91C1C}b_1 \color{#111827}\times 2^1 + \color{#B91C1C}b_0 \color{#111827}\times 2^0

Conversion process

  1. Write the binary number and assign powers of 2 to each digit (20 on the right).
  2. Multiply each digit by its corresponding power of 2.
  3. Add the products to obtain the decimal value.

Examples

Example 1: convert 1011₂ to decimal
(1 × 2^3) + (0 × 2^2) + (1 × 2^1) + (1 × 2^0)
= (1 × 8) + (0 × 4) + (1 × 2) + (1 × 1)
= 8 + 0 + 2 + 1 = 11

Result: 1011₂ = 11₁₀.

Example 2: convert 11010₂ to decimal
(1 × 2^4) + (1 × 2^3) + (0 × 2^2) + (1 × 2^1) + (0 × 2^0)
= 16 + 8 + 0 + 2 + 0 = 26

Result: 11010₂ = 26₁₀.

Binary to decimal conversion table

Quick reference values for short binary numbers.

References from binary (base 2) to decimal (base 10)
BinaryDecimal
00
11
102
113
1004
1015
1106
1117
10008
10019
101010
1000016
10000032
100000064
10000000128
100000000256
1000000000512
100000000001024

Frequently Asked Questions

How do you convert a binary number to decimal?

To convert a binary number to decimal, multiply each binary digit by a power of 2 based on its position (starting from the right at 0) and then add up all the results. For example, binary 1011 is converted as: (1×2^3) + (0×2^2) + (1×2^1) + (1×2^0) = 11.

Why are powers of 2 used in the binary system?

The binary system only uses two digits: 0 and 1. Each position in a binary number represents a power of 2 (1, 2, 4, 8, 16, etc.), in the same way that each position in the decimal system represents a power of 10.

How was this page? Share feedback.