Binary to Decimal Converter

Type a Binary number and get Decimal instantly — plus every other base at the same time.

Every base updates as you type; click bits to toggle them. Digit separators (_, spaces) are allowed. In two's complement mode the binary/octal/hex rows show the bit pattern and the decimal row shows the signed value. Choose Text to convert ASCII/UTF-8 text to bytes in any base — or bytes back to text.

How to convert Binary to Decimal

Binary is a positional system with place values that are powers of 2. To convert to decimal, multiply each digit by its place value — 2⁰ for the rightmost digit, 2¹ for the next, and so on — then add everything up.

Worked example

Convert 101101 (binary) to decimal:

  1. Write out the place values: 101101 = 1×32 + 0×16 + 1×8 + 1×4 + 0×2 + 1×1
  2. Add them up: 45

So 101101 in binary is 45 in decimal.

Binary to Decimal conversion table

BinaryDecimal
00
11
102
113
1004
1015
1106
1117
10008
10019
101010
101111
110012
110113
111014
111115

Frequently asked questions

Can this handle numbers larger than 64 bits?
Yes. Conversion runs on arbitrary-precision integers, so numbers of any length convert exactly. Many online converters silently lose precision above 2⁵³ (about 16 decimal digits) — this one doesn't.
How do I convert negative numbers?
A leading minus sign works in every base. For the bit-pattern view programmers usually want, switch the mode to two's complement at 8, 16, 32, or 64 bits — then binary, octal, and hex show the bit pattern while decimal shows the signed value.
Can I convert the other way, or to other bases?
Use the Decimal to Binary converter, or just change the From/To dropdowns above — every common base is shown at once anyway, and a Text mode converts ASCII to bytes and back.

Need arithmetic rather than conversion — adding hex numbers, shifting bits, masking? Use the programmer's calculator.