Base 2, the Basis for Binary Code
The base 2, or binary numbering system is the basis for all binary code and data storage in computing systems and electronic devices. This guide shows you how to convert from binary to decimal and decimal to binary.
![]() |
| Binary number and its decimal equivalent. © Eugene Brennan |
Decimal, the Base 10 Numbering System
First let's start with decimal.
The decimal, also known as the denary or base 10 numbering system is what we use in everyday life for counting. The fact that there are ten symbols is more than likely because we have 10 fingers.
We use ten different symbols or numerals to represent the numbers from zero to nine.
Those numerals are 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9
When we get to the number ten, we have no numeral to represent this value, so it is written as:
10
The idea is to use a new place holder for each power of 10 to make up any number we want.
So 134 really means one hundred, 3 tens and 4 units, although we just interpret and read it as the number one hundred and thirty four.
Placeholder Value in the Decimal Numbering System
![]() |
| Placeholder value in the base 10 number system. © Eugene Brennan |
Binary, the Base 2 Numbering System
In the decimal number system, we saw that ten numerals were used to represent numbers from zero to nine.
Binary only uses two numerals 0 and 1. Place holders in binary each have a value of powers of 2. So the first place has a value 20 = 1, the second place 21 = 2, the third place 22 = 4, the fourth place 23 = 8 and so on.
In binary we count 0, 1 and then since there's no numeral for two we move onto the next place holder so two is written as 10 binary. This is exactly the same as when we get to ten decimal and have to write it as 10 because there's no numeral for ten.
Placeholder Value in the Binary Numbering System
![]() |
| Placeholder value in the binary number system. © Eugene Brennan |
Most Significant Bit (MSB) and Least Significant Bit (LSB)
![]() |
| Most significant bit (MSB) and least significant bit (LSB). © Eugene Brennan |
For a binary number, the most significant bit (MSB) is the digit furthermost to the left of the number and the least significant bit (LSB) is the rightmost digit.
Decimal and Binary Equivalents
| Decimal | Binary |
|---|---|
0 | 0 |
1 | 1 |
2 | 10 |
3 | 11 |
4 | 100 |
5 | 101 |
6 | 110 |
7 | 111 |
8 | 1000 |
Steps to Convert from Decimal to Binary
If you don't have a calculator to hand, you can easily convert a decimal number to binary using the remainder method. This involves dividing the number by 2 recursively until you're left with 0, while taking note of each remainder.
- Write down the decimal number.
- Divide the number by 2.
- Write the result underneath.
- Write the remainder on the right hand side. This will be 0 or 1.
- Divide the result of the division by 2 and again write down the remainder.
- Continue dividing and writing down remainders until the result of the division is 0.
- The most significant bit (MSB) is at the bottom of the column of remainders and the least significant bit (LSB) is at the top.
- Read the series of 1s and 0s on the right from the bottom up. This is the binary equivalent of the decimal number.
![]() |
| Converting decimal to binary. © Eugene Brennan |
Steps to Convert Binary to Decimal
Converting from binary to decimal involves multiplying the value of each digit (i.e. 1 or 0) by the value of the placeholder in the number
- Write down the number.
- Starting with the LSB, multiply the digit by the value of the place holder.
- Continue doing this until you reach the MSB.
- Add the results together.
![]() |
| Converting binary to decimal. © Eugene Brennan |
Test Yourself!
- What is 548 in binary?
- What is 101011001 in decimal?
- What is 01010101 in decimal?
Answers at bottom of page
Indicating the Base of a Number
The binary number 1011011 can be written as 10110112 to explicitly indicate the base. Similarly 54 base 10 can be written 5410 Often however, the subscript is omitted to avoid excessive detail when the context is known. Usually subscripts are only included in explanatory text or notes in code to avoid confusion if several numbers with different bases are used together.
What is Binary Used For?
For more details on how binary is used in computer systems and digital electronics, see my other article:
Why is Binary Used In Computers and Electronics?
What Other Bases Are There Apart From 2 and 10?
Base 16 or hexadecimal (hex for short) is a shorthand used when programming computer systems. It uses sixteen symbols, representing 10, 11, 12, 13, 14 and 15 decimal with the letters A, B, C, D, E, and F respectively. You can read more about converting hex to binary and binary to hex here:
How to Convert Hex to Binary and Binary to Hexadecimal
Answers to Problems
- 548 decimal is 1000100100 binary
- 101011001 is 345 decimal
- 01010101 is 85 decimal
© 2018 Eugene Brennan





