Decimal to Octal Converter

Convert decimal values to octal format by entering a decimal number and clicking 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 Decimal to Octal?

To convert a decimal number to octal, you can use the following steps:

Step 1: Write down the decimal number.

Step 2: Divide the decimal number by 8.

Step 3: Write down the remainder (in octal) and quotient.

Step 4: Repeat steps 2 and 3 with the quotient until the quotient is 0.

Example 1: Convert 123410 to (?)8

Step 1: Write down the decimal number: 123410

Step 2-3: Make a table of the division of 1234 by 8:

Division by 8QuotentRemainderBit
\frac{1234}{8}15420
\frac{154}{8}1921
\frac{19}{8}232
\frac{2}{8}023
The octal Representation of (1234)10 is (2322)8

Example 2: Convert 12345610 to (?)8

Step 1: Write down the decimal number: 123456 10

Step 2-3: Make a table of the division of 123456 by 8:

Division by 8QuotentRemainderBit
\frac{123456}{8}1543200
\frac{15432}{8}192901
\frac{1929}{8}24112
\frac{241}{8}3013
\frac{30}{8}364
\frac{3}{8}035
The octal Representation of (123456)10 is (361110)8

Decimal to Octal 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