Octal to Decimal Converter
Convert octal values to decimal 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.
Decimal Number System
Decimal number system is the most commonly used number system. It is a base 10 number system. It uses 10 digits from 0 to 9. The position of each digit in a decimal number denotes the power of 10. The rightmost digit is the ones place, the next digit to the left is the tens place, the next digit to the left is the hundreds place, and so on.
An example of a decimal number is
123410 = 1×103 + 2×102 + 3×101 + 4×100
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
How to convert Octal to Decimal?
To convert an octal number to decimal, you can use the following steps:
Step 1: Write down the octal number.
Step 2: Write down the decimal equivalent of each octal digit.
Step 3: Multiply each decimal equivalent by 8 raised to the power of the position of the digit.
Step 4: Add the results from step 3 to get the decimal equivalent of the octal number.
Example 1: Convert 23228 to (?)10
Step 1: Write down the octal number: 23228
Step 2-4:
Octal | Number × 8 ^ i | Output | |
---|---|---|---|
2 | 2 × 83 | 1024 | |
3 | 3 × 82 | 192 | |
2 | 2 × 81 | 16 | |
2 | 2 × 80 | 2 | |
1024 + 192 + 16 + 2 = 1234 | |||
The decimal Representation of (2322)8 is (1234)10 |
Example 2: Convert 3611008 to (?)10
Step 1: Write down the octal number: 3611008
Step 2-4:
3 | 3 × 8^5 | 98304 | |
6 | 6 × 8^4 | 24576 | |
1 | 1 × 8^3 | 512 | |
1 | 1 × 8^2 | 64 | |
0 | 0 × 8^1 | 0 | |
0 | 0 × 1 | 0 | |
98304 + 24576 + 512 + 64 + 0 + 0 = 123456 | |||
The decimal Representation of (361100)8 is (123456)10 |
Octal to Decimal Conversion Table
The following table shows the common decimal numbers equivalent octal numbers:
Decimal | Octal |
---|---|
0 | 0 |
1 | 1 |
2 | 2 |
3 | 3 |
4 | 4 |
5 | 5 |
6 | 6 |
7 | 7 |
8 | 10 |
9 | 11 |
10 | 12 |
11 | 13 |
12 | 14 |
13 | 15 |
14 | 16 |
15 | 17 |
16 | 20 |
17 | 21 |
18 | 22 |
19 | 23 |
20 | 24 |
21 | 25 |
22 | 26 |
23 | 27 |
24 | 30 |
25 | 31 |
26 | 32 |
27 | 33 |
28 | 34 |
- Binary to Hexadecimal Converter
- Decimal to Hexadecimal Converter
- Decimal to Binary Converter
- Random Number Generator
- Hexadecimal to Binary Converter
- Hexadecimal to Octal Converter
- Octal to Hexadecimal Converter
- Binary to Octal Converter
- Hexadecimal to Decimal Converter
- Binary to Decimal Converter
- Octal to Decimal Converter
- Decimal to Octal Converter
- Octal to Binary Converter
Login or Signup to add a comment