integers.info

Octal Numbers

Conversion between 519 and 1007

The below table visualizes how the decimal number 519 equals the octal number 1007.

1×83=512
+0×82=0
+0×81=0
+7×80=7
=519

About Octal Numbers

Octal numbers are a positional numeral system with the base (or "radix") 8, which means it consists of the digits 0, 1, 2, 3, 4, 5, 6 och 7. In the octal system, the number 8 is written as 10.

Since 8 is equal to 23, each octal digit can be used to describe three binary digits. This was frequently used early on in the computer era, when the word length in computer processors was often a multiple of 3, such as 6, 12 or 24 bits. In modern computers the word length is usually a multiple of 8, such as 32 or 64 bits, and therefore hexadecimal numbers are better suited to describe data nowadays.

The octal system is built in into many programming languages, and an octal number can usually be declared by starting the number with a 0. You can easily test this in JavaScript by opening the Console in your web browser (normally by the F12 key) and typing in 010. The browser will return the number 8. If you type in 011, it will return 9, and so on.