Binary to Decimal Conversion
Binary (base 2) uses only 0 and 1. To convert binary to decimal, multiply each digit by 2 raised to its position power (starting from 0 on the right) and sum the results. Example: 1101 = 1×8 + 1×4 + 0×2 + 1×1 = 13.
Convert numbers between Binary (base 2), Octal (base 8), Decimal (base 10), Hexadecimal (base 16), and any base from 2-36. See step-by-step conversion process.
Type the number you want to convert. Use 0x, 0b, or 0o prefixes for auto-detection.
Choose the base of your input number, or use auto-detect.
Select which base(s) to convert to - single base or all common bases.
See your converted number with optional step-by-step explanation.
To convert any base to decimal, multiply each digit by the base raised to its position power, then sum all values. For example, binary 1010 = 1×2³ + 0×2² + 1×2¹ + 0×2⁰ = 8 + 0 + 2 + 0 = 10.
Value = Σ(digit × base^position)
Use prefixes to quickly enter numbers: 0b for binary, 0o for octal, 0x for hexadecimal
Each hexadecimal digit equals exactly 4 binary digits - useful for quick mental conversion
When converting large numbers, work in groups of digits for easier calculation
Remember: A=10, B=11, C=12, D=13, E=14, F=15 in hexadecimal
Binary is fundamental - all other conversions go through binary internally in computers
Convert numbers instantly between binary, hexadecimal, octal, decimal, and any base from 2 to 36. Essential tool for programmers, students, and anyone working with different number systems.
Binary (base 2) uses only 0 and 1. To convert binary to decimal, multiply each digit by 2 raised to its position power (starting from 0 on the right) and sum the results. Example: 1101 = 1×8 + 1×4 + 0×2 + 1×1 = 13.
Hexadecimal (base 16) uses 0-9 and A-F. It's popular in programming because each hex digit represents exactly 4 binary bits. FF in hex = 255 in decimal = 11111111 in binary.
Computers use binary internally. Hexadecimal provides a compact way to represent binary data. Octal was used in older systems. Decimal is human-friendly. Each base has its purpose in computing and mathematics.