Rohan Yeole - HomepageRohan Yeole

Binary to Decimal Conversion Calculator

Enter a binary number like 1010

The binary number system is the foundation of digital computing. It operates on base-2, using only two digits: 0 and 1. This guide explains the binary and decimal number systems, shows how to convert binary to decimal, and includes practical examples, formulas, and conversion tables to help you master the concept.

What Is the Binary System?

The binary system uses base 2. Each digit (bit) represents an increasing power of 2 from right to left.

Example: Binary 10110₂
= 1×2⁴ + 0×2³ + 1×2² + 1×2¹ + 0×2⁰ = 22₁₀

What Is the Decimal System?

The decimal system uses base 10. Each digit represents a power of 10.

Example: Decimal 429
= 4×10² + 2×10¹ + 9×10⁰ = 429

Binary vs. Decimal

FeatureBinary (Base 2)Decimal (Base 10)
Digits used0, 10–9
Base210
Example1100₂ = 1245 = 101101₂

Binary to Decimal Conversion Formula

Formula: Decimal = d₀×2⁰ + d₁×2¹ + d₂×2² + ... + dₙ×2ⁿ

Example: Binary 100110
= 1×2⁵ + 0×2⁴ + 0×2³ + 1×2² + 1×2¹ + 0×2⁰ = 38₁₀

Decimal to Binary Conversion Example

Convert 45:
45 ÷ 2 = 22 R1 → 11 R0 → 5 R1 → 2 R1 → 1 R0 → 0 R1
Binary = 101101₂

Binary to Decimal Conversion Table

DecimalBinary
00
5101
91001
2210110
2911101
38100110
45101101
60111100

Computers use binary because it's easy to distinguish between two electrical states: on (1) and off (0). This allows binary numbers to be processed reliably through logic gates and circuits, making digital computing fast and accurate.

Additional Reasons

Related Tools