Octal to Decimal Converter

Type a Octal number and get Decimal instantly — plus every other base at the same time.

Every base updates as you type; click bits to toggle them. Digit separators (_, spaces) are allowed. In two's complement mode the binary/octal/hex rows show the bit pattern and the decimal row shows the signed value. Choose Text to convert ASCII/UTF-8 text to bytes in any base — or bytes back to text.

How to convert Octal to Decimal

Octal is a positional system with place values that are powers of 8. To convert to decimal, multiply each digit by its place value — 8⁰ for the rightmost digit, 8¹ for the next, and so on — then add everything up.

Worked example

Convert 725 (octal) to decimal:

  1. Write out the place values: 725 = 7×64 + 2×8 + 5×1
  2. Add them up: 469

So 725 in octal is 469 in decimal.

Octal to Decimal conversion table

OctalDecimal
00
11
22
33
44
55
66
77
108
119
1210
1311
1412
1513
1614
1715

Frequently asked questions

Can this handle numbers larger than 64 bits?
Yes. Conversion runs on arbitrary-precision integers, so numbers of any length convert exactly. Many online converters silently lose precision above 2⁵³ (about 16 decimal digits) — this one doesn't.
How do I convert negative numbers?
A leading minus sign works in every base. For the bit-pattern view programmers usually want, switch the mode to two's complement at 8, 16, 32, or 64 bits — then binary, octal, and hex show the bit pattern while decimal shows the signed value.
Can I convert the other way, or to other bases?
Use the Decimal to Octal converter, or just change the From/To dropdowns above — every common base is shown at once anyway, and a Text mode converts ASCII to bytes and back.

Need arithmetic rather than conversion — adding hex numbers, shifting bits, masking? Use the programmer's calculator.