BinaryConverter

Octal to Decimal Converter

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

How to convert octal to decimal

Octal is base 8, so each place is worth eight times the one to its right. Multiply each digit by its place value and add the results.

Formula: value = d₀ + d₁×8 + d₂×8² + … (each digit times a power of 8).

  1. Give each digit its place valueReading from the right, the places are powers of 8: 1, 8, 64, 512 and so on.
  2. Note each digit's valueEach digit is a number from 0 to 7.
  3. Multiply and addMultiply each digit by its place value and add the totals to get the decimal number.

Examples 32 = 26377 = 255

Octal to Decimal Table

Common octal values with their decimal equivalents.

Octal to Decimal conversion table
OctalDecimal
00
11
22
33
44
55
66
77
108
119
1210
1311
1412
1513
1614
1715
2016
2420
4032
6250
10064
144100
200128
377255
400256
1000512
17501000

Frequently asked questions

How do you convert octal to decimal?

Give each digit a place value that is a power of 8 — 1, 8, 64, 512 — multiply each digit by its place value and add. 144 gives 100.

What is octal 10 in decimal?

Octal 10 is 8 in decimal.

What is 777 in decimal?

Octal 777 is 511 in decimal (7×64 + 7×8 + 7).