Easily convert binary numbers to decimal equivalents. This tool simplifies the process for you.
Binary is a number system that uses only two digits: 0 and 1. Each digit represents a power of 2, starting from 20 on the right. It is commonly used in computing and digital electronics.
The decimal system, also known as base-10, is the standard system for denoting integer and non-integer numbers. It uses ten digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9.
Binary | Decimal | Calculation |
---|---|---|
0 | 0 | 0 |
1 | 1 | 1 × 20 = 1 |
10 | 2 | 1 × 21 + 0 × 20 = 2 |
11 | 3 | 1 × 21 + 1 × 20 = 3 |
100 | 4 | 1 × 22 + 0 × 21 + 0 × 20 = 4 |
101 | 5 | 1 × 22 + 0 × 21 + 1 × 20 = 5 |
110 | 6 | 1 × 22 + 1 × 21 + 0 × 20 = 6 |
111 | 7 | 1 × 22 + 1 × 21 + 1 × 20 = 7 |
To convert a binary number to decimal:
Example: Convert binary 1011 to decimal:
Sum = 8 + 0 + 2 + 1 = 11