Binary to decimal converter

Find the decimal equivalent of the binary number.

Swap

How to convert binary to decimal

For example, let's convert 1001110 to decimal.

110100 =
1 * 25 + 1 * 24 + 0 * 23 + 1 * 22 + 0 * 21 + 0 * 20 =
32 + 16 + 4 = 52

So, in result 110100 is equal to 52.