Octal to Binary Converter
Convert octal values to binary by inputting an octal number and pressing convert.
Information on Number Conversion
A number system is a method of expressing numbers in a consistent manner using digits and numbers. There are different number system like, Decimal, Binary, Octal, Hexadecimal. These different number systems are used in different contexts.
Binary Number System
Binary number system is a base 2 number system. It uses only two digits, 0 and 1. The position of each digit in a binary number denotes the power of 2. The rightmost digit is the ones place, the next digit to the left is the twos place, the next digit to the left is the fours place, and so on.
An example of a binary number is
10112 = 1×23 + 0×22 + 1×21 + 1×20
Octal Number System
Octal number system is a base 8 number system. It uses 8 digits from 0 to 7. The position of each digit in an octal number denotes the power of 8. The rightmost digit is the ones place, the next digit to the left is the eights place, the next digit to the left is the sixty-fours place, and so on.
An example of an octal number is
12348 = 1×83 + 2×82 + 3×81 + 4×80
Octal to Binary Conversion table
The table below shows the octal to binary conversion.
Binary | Octal |
---|---|
000 | 0 |
001 | 1 |
010 | 2 |
011 | 3 |
100 | 4 |
101 | 5 |
110 | 6 |
111 | 7 |
How to convert Octal to Binary?
To convert an octal number to binary, you can use the following steps:
Step 1: Write down the octal number.
Step 2: Write down the binary equivalent of each octal digit.
Example 1: Convert 23228 to (?)2
Step 1: Write down the octal number: 23228
Step 2: Write down the binary equivalent of each octal digit: 2 3 2 2
Therefore, 23228 = 100110100102
Elaborate Table
Octal | 2 3 2 2 | ||
Binary | 010 011 010 010 | ||
Result | 010011010010 | ||
The binary Representation of (2322)8 is (010011010010)2 |
Example 2: Convert 3611008 to (?)2
Step 1: Write down the octal number: 3611008
Step 2: Write down the binary equivalent of each octal digit: 3 6 1 1 0 0
Therefore, 3611008 = 111100010010000002
Elaborate Table
Octal | 3 6 1 1 0 0 | ||
Binary | 011 110 001 001 000 000 | ||
Result | 011110001001000000 | ||
The binary Representation of (361100)8 is (011110001001000000)2 |
- Binary to Decimal Converter
- Hexadecimal to Binary Converter
- Decimal to Binary Converter
- Octal to Hexadecimal Converter
- Binary to Hexadecimal Converter
- Decimal to Octal Converter
- Random Number Generator
- Octal to Decimal Converter
- Hexadecimal to Octal Converter
- Decimal to Hexadecimal Converter
- Binary to Octal Converter
- Octal to Binary Converter
- Hexadecimal to Decimal Converter
Login or Signup to add a comment