💻 Binary to Decimal Converter

Convert Binary (binary) to Decimal (decimal) instantly. Binary to decimal conversion.

1 unit =
From
To
Formulae.g. 11111111 = 255
UnitNameValue
decimalDecimal (Base 10)
hexHexadecimal (Base 16)
octalOctal (Base 8)

Quick Answer

Example: 1010 (Binary) = 10 (Decimal)

Method: Sum the place values: each '1' digit contributes its power of 2. E.g. 1010₂ = 8+0+2+0 = 10₁₀.

Binary is base-2; Decimal is base-10. Use the converter above for any value instantly.

Worked Examples

Basic 4-bit value
10102 = 1010
Binary 1010 → Decimal 10
Maximum 8-bit byte (255 decimal)
111111112 = 25510
Binary 11111111 → Decimal 255
64 decimal = 1 megabyte multiplier
10000002 = 6410
Binary 1000000 → Decimal 64
180 decimal — a common data value
101101002 = 18010
Binary 10110100 → Decimal 180

Binary to Decimal Reference Table

Common values from 0 to 1,048,576 — powers of 2 and standard computing values

Binary (base 2)Decimal (base 10)Notes
00Zero
11One
102Two
113
1004Four
1015
1106
1117
10008Eight
10019
101010Ten
101111
110012
110113
111014
111115Max nibble (4-bit)
1000016One hex digit
100000322⁵
1000000642⁶
100000001282⁷
11111111255Max byte
1000000002562⁸
10000000005122⁹
1000000000010241 KiB
10000000000020482 KiB
100000000000040964 KiB
10000000000000003276832 KiB
111111111111111165535Max 16-bit unsigned
10000000000000000655362¹⁶
10000000000000000000010485761 MiB (2²⁰)

How to Convert

Sum powers of 2

Write out the powers of 2 for each bit position: 1, 2, 4, 8, 16, 32, 64, 128... Add those where the bit is 1.

Nibble trick

Split into 4-bit groups first. Each nibble is 0–15. 1010₂ = 10, 1111₂ = 15.

Check: multiply by 2

Binary × 2 = shift left one bit. Binary ÷ 2 = shift right one bit.

Who Uses This Converter?

Software Developer

Converts between binary, hex, and decimal daily for debugging, bitmasking, and memory address analysis.

Computer Science Student

Learns number base conversions as a fundamental concept in computer architecture and digital logic courses.

Network Engineer

Works with IP addresses, subnet masks, and MAC addresses in binary, decimal, and hex representations.

Embedded Systems Engineer

Programs microcontrollers using binary bit patterns and hex register values for hardware configuration.

Digital Electronics Designer

Designs logic circuits using binary truth tables and checks hex values on oscilloscopes and analyzers.

Cybersecurity Analyst

Reads hex dumps, analyzes binary data, and decodes encoded strings during reverse engineering and forensics.

Frequently Asked Questions

About Binary and Decimal Number Systems

Binary (Base 2)

The binary (base-2) number system uses only two digits: 0 and 1. Every number is represented as a sum of powers of 2. It is the fundamental language of all digital computers, since electronic circuits naturally represent two states — on/off, high/low voltage, magnetized/demagnetized.

Binary was formalized by Gottfried Wilhelm Leibniz in 1703, inspired by the ancient Chinese I Ching hexagrams. The modern use of binary in computing traces to Claude Shannon's 1937 master's thesis, which showed that Boolean algebra could be implemented with electrical circuits — the foundation of all digital logic.

Interesting fact: A single binary digit is a 'bit'; 8 bits = 1 byte. A standard 64-bit computer processor works with numbers up to 2⁶⁴ − 1 ≈ 18.4 quintillion simultaneously. The DNA genetic code, though not binary, encodes information in base-4 (ACGT) — life's own digital system.

Decimal (Base 10)

The decimal (base-10) number system uses ten digits (0–9) and is the universal numeral system for human mathematics, commerce, and everyday life. It is almost certainly based on the ten fingers of the human hand — 'digit' comes from the Latin digitus meaning finger.

The decimal system with positional notation and zero was developed in India (5th–7th century CE) and transmitted to Europe via Arabic mathematicians — which is why it is also called the Hindu-Arabic numeral system. It replaced Roman numerals in European commerce by the 16th century.

Interesting fact: Not all cultures chose base-10. Babylonians used base-60 (preserved in our 60 seconds, 60 minutes, 360 degrees). The Mayans used base-20. The Yuki people of California used base-8, counting the spaces between fingers rather than the fingers themselves.

About Binary to Decimal Conversion

Binary to decimal conversion is a core computer science skill. Every binary digit (bit) represents a power of 2: 1010₂ = 2³+2¹ = 10₁₀. The maximum 8-bit value is 11111111₂ = 255₁₀. Key anchors: 1=1, 10=2, 100=4, 1000=8, 10000=16, 100000=32, 1000000=64, 10000000=128.

Use the converter above for any value. Results are exact — numeral base conversions involve no rounding or approximation.