Skip to content

🔢 Binary to Decimal Converter

Convert between binary and decimal number systems

💡 How conversion works

The binary system uses only two digits: 0 and 1. Each position represents a power of 2 (1, 2, 4, 8, 16, ...). To convert binary to decimal, multiply each digit by its corresponding power of 2 and sum the results.

Example: 1011₂ = 1×8 + 0×4 + 1×2 + 1×1 = 11₁₀