Binary to Decimal Calculator

Enter a binary number (0s and 1s) to convert it to decimal.

How to Convert Binary to Decimal

Method: positional notation

Multiply each bit by 2 raised to its position (right to left, starting at 0), then sum all values.

Example: 1010 = 1×2³ + 0×2² + 1×2¹ + 0×2&sup0; = 8 + 0 + 2 + 0 = 10

Quick reference

BinaryDecimalHex
000000
000111
100088
101010A
111115F
100001610

Related Calculators

Have Feedback or a Suggestion? Contact Us
Top