Binary to Decimal Converter
Binary to Decimal Converter
Quick Examples
Other Base Conversions
Advanced: Convert Any Base (2-36)
Understanding Binary and Decimal
Binary is the base-2 number system used natively by computers: every value is stored as a sequence of bits, each either 0 or 1. Digital logic gates, boolean operations, and low-level memory all operate directly in binary — it's the only number system a CPU actually understands.
Decimal is the base-10 number system used in everyday counting, built from the digits 0–9. It's the format humans read and reason about naturally, which is why programmers convert binary, octal, and hexadecimal values back to decimal whenever they need a human-readable number.
How to Convert Binary to Decimal (Step by Step)
To convert binary to decimal, multiply each bit by its positional power of 2 (starting from 1 on the right) and add the results. For example, 1010 = (1×8) + (0×4) + (1×2) + (0×1) = 10. Applying the same method to a longer value, 11001010 = 128+64+8+2 = 202.
Frequently Asked Questions
Find answers to common questions
Free online binary to decimal converter. Convert binary numbers to decimal instantly, with support for arbitrarily large values.


