Octal to Decimal Converter

Convert octal (base 8) numbers to decimal (base 10)

Decimal Result

42

Step-by-Step Conversion

DigitPositionPower of 8Value
518^1 = 85 Γ— 8 = 40
208^0 = 12 Γ— 1 = 2

Sum: 40 + 2 = 42

Common Octal Values

About Octal

Octal (base 8) uses digits 0-7. Each octal digit represents exactly 3 binary bits.

Historically used in computing, especially on systems with 12, 24, or 36-bit words.

Still used in Unix file permissions (e.g., chmod 755).