Binary to Decimal Converter

Convert binary numbers to decimal format with our free online calculator. Enter a binary number and get the decimal equivalent instantly, along with step-by-step conversion details.

Binary Position Values

Position 8 7 6 5 4 3 2 1 0
Value 256 128 64 32 16 8 4 2 1

Each position represents a power of 2, starting from 20 (rightmost digit).

Result

Binary -
Decimal -
Hex -
Signed Decimal -

Conversion Steps

Enter a binary number to see the conversion steps.

About Binary to Decimal Conversion

Binary to decimal conversion is the process of converting a number from the binary (base-2) numeral system to the decimal (base-10) numeral system. This is a fundamental operation in computer science and digital electronics, as computers use binary to represent all data and perform calculations.

How to Convert Binary to Decimal

To convert a binary number to decimal, follow these steps:

  1. Write down the binary number.
  2. Starting from the right (least significant bit), assign each digit a position number starting at 0.
  3. Multiply each binary digit by 2 raised to the power of its position number.
  4. Sum all the results to get the decimal equivalent.

Example Conversion:

Convert binary 1010 to decimal:

1 × 2³ = 8
0 × 2² = 0
1 × 2¹ = 2
0 × 2⁰ = 0
            

Sum: 8 + 0 + 2 + 0 = 10 (decimal)

Signed Binary Numbers (Two's Complement)

For signed binary numbers using two's complement representation:

Binary Number System Basics

The binary number system is a base-2 numeral system that uses only two digits: 0 and 1. Each digit in a binary number is called a bit. Binary is the fundamental language of computers and digital systems.

Key Properties:

Common Uses

Binary to decimal conversion is essential for: