Binary to Decimal Converter

Base 2
Base 10

Conversion table

SourceResult

Convert Binary integers to Decimal with exact arbitrary-precision arithmetic. Signed values, long integers, common source prefixes, spaces, and underscore separators are accepted, and the result updates as the input changes.

How to convert Binary to Decimal

Multiply each source digit by its place value, which is a power of the source base, then add those values. The rightmost digit has a place value of one.

Binary to Decimal example

110101 in base 2 equals 53 in base 10. The converter supports values much larger than JavaScript's ordinary safe integer range because it uses integer arithmetic rather than floating-point numbers.

Common conversions: Binary to Decimal · Decimal to Binary · Binary to Hex · Hex to Binary · Decimal to Hex · Hex to Decimal · Binary to Octal · Octal to Binary