CalcuClubCalcuClub Logo

Octal to Decimal Converter

Enter the octal number you want to convert to decimal.

The result will be displayed here.
Calculation Steps:
Calculation steps will be displayed here.

Table of Contents

How does octal to decimal conversion work?

The octal system is base 8 and the decimal system is base 10. To convert an octal number to decimal, multiply each octal digit by the corresponding power of 8 (starting from the right with 80) and add the results. This method provides the direct equivalent value in base 10.

Octal to decimal conversion formula

For an octal number with n digits:

N₈ = ∑(oi × 8i)

Where oi is each octal digit (0–7) in position i, and each is multiplied by 8i. The sum of all products gives the equivalent value in base 10.

Conversion process

  1. Write the octal number and assign powers of 8 to each digit (80 on the right).
  2. Multiply each digit by its corresponding power of 8.
  3. Add all the products to get the equivalent value in base 10.

Examples

Example 1: convert 17₈ to decimal
Octal DigitPower of 8Product
780 = 17 × 1 = 7
181 = 81 × 8 = 8

Total sum: 8 + 7 = 15.

Result: 17₈ = 15₁₀.

Example 2: convert 25₈ to decimal
Octal DigitPower of 8Product
580 = 15 × 1 = 5
281 = 82 × 8 = 16

Total sum: 16 + 5 = 21.

Result: 25₈ = 21₁₀.

Octal to decimal conversion table

Quick reference values for short octal numbers.

Octal (base 8) to decimal (base 10) reference table
OctalDecimal
00
11
22
33
44
55
66
77
108
119
1210
2016
4032
10064
200128
400256
1000512
20001024

Frequently Asked Questions

How do you convert an octal number to decimal?

To convert an octal number to decimal, multiply each digit by a power of 8 according to its position (starting with 8⁰ from the right) and sum the results.

Why does the octal system use powers of 8?

Because each position in the octal system represents a multiple of 8. It’s a base-8 system where valid digits range from 0 to 7.

How was this page? Share feedback.