BinaryConverter

Decimal to Octal Converter

Convert decimal to octal instantly — type on the left and the result appears on the right. Everything runs in your browser, nothing is uploaded.

How to convert decimal to octal

Octal is base 8. Convert a decimal number to octal by dividing repeatedly by 8 and reading the remainders from last to first.

Method: repeated division by 8, reading the remainders from last to first.

  1. Divide by 8 and note the remainderDivide the decimal number by 8 and write down the remainder.
  2. Repeat until you reach 0Keep dividing each quotient by 8, noting each remainder.
  3. Read the remainders in reverseRead the remainders from last to first — that is your octal number.

Examples 26 = 32255 = 377

Decimal to Octal Table

Common decimal values with their octal equivalents.

Decimal to Octal conversion table
DecimalOctal
00
11
22
33
44
55
66
77
810
911
1012
1113
1214
1315
1416
1517
1620
2024
3240
5062
64100
100144
128200
255377
256400
5121000
10001750

Frequently asked questions

How do you convert decimal to octal?

Divide the number by 8, note the remainder, repeat until the quotient is 0, then read the remainders from last to first. 100 gives 144.

What is 8 in octal?

8 in decimal is 10 in octal, because octal rolls over after 7.

What is 64 in octal?

64 is 100 in octal, since 8 × 8 = 64.