Binary to Decimal Converter

Convert binary numbers to decimal instantly. Enter any binary value and get the decimal result immediately for programming, electronics, networking, and computer science calculations.

Quick Binary to Decimal Examples

Binary Decimal
1015
101010
111115
1101026
10111147
1111011123
11111111255
100000000001024

How to Convert Binary to Decimal

Each binary digit represents a power of 2. Starting from the right, multiply each digit by 2⁰, 2¹, 2², and so on, then add the results.

Example: Convert 11010 to decimal 1 × 2⁴ = 16 1 × 2³ = 8 0 × 2² = 0 1 × 2¹ = 2 0 × 2⁰ = 0 Add the values → 16 + 8 + 0 + 2 + 0 = 26 Therefore, 11010₂ = 26₁₀.
Scroll to Top