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:

OctalNumber × 8 ^ iOutput
22 × 831024
33 × 82192
22 × 8116
22 × 802
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:

33 × 8^598304
66 × 8^424576
11 × 8^3512
11 × 8^264
00 × 8^10
00 × 10
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:

DecimalOctal
00
11
22
33
44
55
66
77
810
911
1012
1113
1214
1315
1416
1517
1620
1721
1822
1923
2024
2125
2226
2327
2430
2531
2632
2733
2834

Comments on this page

Login or Signup to add a comment