Blog
Custom Print on Demand Apparel — Free Storefront for Your Business
Wild & Free Tools

Binary to Decimal Converter — How to Convert Binary Numbers (With Chart & Calculator)

Last updated: April 20267 min readConverter Tools

To convert binary to decimal, multiply each bit by its power of 2 and add them up. For example, 1101 in binary = (1 times 8) + (1 times 4) + (0 times 2) + (1 times 1) = 13 in decimal. Or just paste your binary number into our converter for instant results.

Whether you are learning computer science, debugging network configurations, or just curious about how computers think, understanding binary-to-decimal conversion is a foundational skill. This guide gives you the method, a reference chart you can bookmark, and a free calculator that handles the math instantly.

Binary to Decimal Reference Chart

Here are the most commonly referenced binary-to-decimal-to-hex conversions. Bookmark this table — you will use it more than you think.

BinaryDecimalHex
000000
000111
001022
001133
010044
010155
011066
011177
100088
100199
101010A
101111B
110012C
110113D
111014E
111115F
1000003220
10000006440
1000000012880
11111111255FF
100000000256100
1000000000512200
100000000001024400
111111111111111165535FFFF

Powers of 2 Table

Every binary digit represents a power of 2. Memorize the first 10 and you can convert most values in your head.

PowerValueCommon Use
2^01Least significant bit
2^12
2^24
2^38Octal digit range (0-7)
2^416Hex digit range (0-F)
2^532
2^664
2^7128Signed byte range (-128 to 127)
2^8256One byte (0-255), RGB color values
2^9512
2^101,0241 KB (kilobyte)
2^112,048
2^124,096Memory page size
2^138,192
2^1416,384
2^1532,768Signed 16-bit max (32,767)
2^1665,536Unsigned 16-bit max (65,535)

The Conversion Method

Binary to decimal conversion is straightforward once you see the pattern. Each bit position has a value that doubles as you move left.

  1. Write out the binary number and label each bit position from right to left, starting at 0
  2. Multiply each bit (0 or 1) by 2 raised to its position number
  3. Add all the results together — that is your decimal value

Example 1: Convert 1101 to decimal

Positions (right to left): bit 0 = 1, bit 1 = 0, bit 2 = 1, bit 3 = 1

8 + 4 + 0 + 1 = 13. Binary 1101 = decimal 13.

Example 2: Convert 10110 to decimal

16 + 0 + 4 + 2 + 0 = 22. Binary 10110 = decimal 22.

Example 3: Convert 11111111 to decimal

All eight bits are 1, so add all powers of 2 from 2^0 through 2^7:

128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 = 255. This is the maximum value for one byte.

Why Computers Use Binary

Digital computers are built from billions of transistors. Each transistor is a tiny switch that is either on or off — there is no "half on." This two-state nature maps perfectly to binary: on = 1, off = 0.

Engineers tried building computers with more states (ternary computers use three states), but two-state circuits are dramatically simpler, cheaper, and more reliable. When you have billions of components on a chip, simplicity wins. That is why every modern computer, phone, tablet, and smart device uses binary at the hardware level.

Everything you see on your screen right now — this text, the colors, the layout — is stored and processed as binary numbers deep down. A letter "A" is stored as 01000001. The color white is stored as 11111111 11111111 11111111 (255, 255, 255 in RGB).

Common Binary Values Every Developer Should Know

Decimal to Binary — The Reverse Method

To convert decimal back to binary, repeatedly divide by 2 and track the remainders:

  1. Divide the decimal number by 2
  2. Write down the remainder (0 or 1)
  3. Take the quotient and divide by 2 again
  4. Repeat until the quotient is 0
  5. Read the remainders from bottom to top — that is the binary number

Example: Convert 25 to binary

Reading bottom to top: 11001. Decimal 25 = binary 11001.

Binary in Real Life

Binary is not just an academic concept. You encounter it in practical computing every day:

Convert Any Number Base Instantly

Skip the math — paste any binary number and get the decimal, hex, and octal values instantly.

Open Number Base Converter
Launch Your Own Clothing Brand — No Inventory, No Risk