Binary to Decimal
Convert binary (base 2) numbers to decimal (base 10) instantly online.
About this tool
Binary (base 2) is the fundamental number system used by all digital computers. Every value stored in memory, every pixel in a display, and every character in a text file is ultimately represented as a sequence of 0s and 1s. Converting binary to decimal is a core skill in computer science, programming, and digital electronics, and is frequently tested in exams and interview questions.
- โ Free to use, no sign-up required
- โ Files never leave your device
- โ Instant conversion
- โ Works on any browser and device
How it works
To convert binary to decimal, each digit is multiplied by 2 raised to the power of its position (counting from right, starting at 0). For example, binary 1101 = (1ร2ยณ) + (1ร2ยฒ) + (0ร2ยน) + (1ร2โฐ) = 8 + 4 + 0 + 1 = 13 in decimal. This tool performs that calculation instantly for any binary input.