Rohan Yeole - HomepageRohan Yeole

Decimal to Binary Conversion Calculator

The decimal number system is the one we use in everyday life. It operates on base-10 and includes digits from 0 to 9. Computers, however, use binary (base-2), and converting decimal to binary is essential in understanding how digital systems work.

What Is the Decimal System?

The decimal system is a base-10 number system. Each digit represents a power of 10, increasing from right to left.

Example: Decimal 156
= 1×10² + 5×10¹ + 6×10⁰ = 156

What Is the Binary System?

Binary uses base 2. It only has two digits: 0 and 1. Each position represents a power of 2.

Example: Binary 10011100₂
= 1×2⁷ + 0×2⁶ + 0×2⁵ + 1×2⁴ + 1×2³ + 1×2² + 0×2¹ + 0×2⁰ = 156₁₀

Decimal to Binary Conversion Formula

Method: Divide the decimal number by 2 repeatedly and record the remainders.

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

Decimal to Binary Conversion Table

DecimalBinary
00
5101
91001
2210110
2911101
38100110
45101101
60111100

Why Computers Use Binary

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