Octal to Decimal Converter
Convert octal (base 8) numbers to decimal (base 10)
Decimal Result
42
Step-by-Step Conversion
| Digit | Position | Power of 8 | Value |
|---|---|---|---|
| 5 | 1 | 8^1 = 8 | 5 Γ 8 = 40 |
| 2 | 0 | 8^0 = 1 | 2 Γ 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).