Skip to main content
Numverto logo NUMVERTO

Octal to Decimal Converter

Convert Octal to Decimal

Decimal Result

Step-by-Step Working

    Advertisement

    About This Converter

    Convert octal (base 8) numbers to decimal (base 10) using positional weight multiplication. Enter an octal number like 377 and see the decimal result (255) with each power-of-8 calculation shown. Commonly needed for Unix permissions, embedded systems, and computer science exams.

    Worked Examples

    Octal: 377 → Decimal: 255

    3×64 + 7×8 + 7×1 = 192+56+7 = 255

    Octal: 755 → Decimal: 493

    7×64 + 5×8 + 5×1 = 448+40+5 = 493 (common chmod value)

    Octal: 10 → Decimal: 8

    1×8 + 0×1 = 8 (octal 10 = decimal 8)

    Need More Bases?

    For full multi-base conversion (binary, octal, decimal, and hex all at once), use our Number System Converter — it shows all four representations simultaneously with complete step-by-step working.

    Frequently Asked Questions

    How do I convert octal to decimal?

    Multiply each octal digit by 8 raised to its position index (starting from 0 on the right) and sum all results.

    What is octal 777 in decimal?

    7×64 + 7×8 + 7×1 = 448+56+7 = 511 decimal (full permissions in Unix).

    Can octal contain the digit 8 or 9?

    No. Octal uses only digits 0-7. Any digit ≥8 makes the input invalid.

    Why is octal used in Unix chmod?

    Each permission group (rwx) maps to 3 bits, and one octal digit represents exactly 3 bits.

    Is octal still relevant in modern computing?

    Yes, primarily for Unix/Linux permissions, some legacy documentation, and digital electronics curricula.

    Related Converters

    Advertisement

    Popular Tools

    View all 13 free tools → · Read tutorials · Number system guide