Decimal to Octal Converter
Convert decimal values to octal format by entering a decimal number and clicking convert.
Information on Number Conversion
A number system is a method of expressing numbers in a consistent manner using digits and numbers. There are different number system like, Decimal, Binary, Octal, Hexadecimal. These different number systems are used in different contexts.
Decimal Number System
Decimal number system is the most commonly used number system. It is a base 10 number system. It uses 10 digits from 0 to 9. The position of each digit in a decimal number denotes the power of 10. The rightmost digit is the ones place, the next digit to the left is the tens place, the next digit to the left is the hundreds place, and so on.
An example of a decimal number is
123410 = 1×103 + 2×102 + 3×101 + 4×100
Octal Number System
Octal number system is a base 8 number system. It uses 8 digits from 0 to 7. The position of each digit in an octal number denotes the power of 8. The rightmost digit is the ones place, the next digit to the left is the eights place, the next digit to the left is the sixty-fours place, and so on.
An example of an octal number is
12348 = 1×83 + 2×82 + 3×81 + 4×80
How to convert Decimal to Octal?
To convert a decimal number to octal, you can use the following steps:
Step 1: Write down the decimal number.
Step 2: Divide the decimal number by 8.
Step 3: Write down the remainder (in octal) and quotient.
Step 4: Repeat steps 2 and 3 with the quotient until the quotient is 0.
Example 1: Convert 123410 to (?)8
Step 1: Write down the decimal number: 123410
Step 2-3: Make a table of the division of 1234 by 8:
Division by 8 | Quotent | Remainder | Bit |
---|---|---|---|
154 | 2 | 0 | |
19 | 2 | 1 | |
2 | 3 | 2 | |
0 | 2 | 3 | |
The octal Representation of (1234)10 is (2322)8 |
Example 2: Convert 12345610 to (?)8
Step 1: Write down the decimal number: 123456 10
Step 2-3: Make a table of the division of 123456 by 8:
Division by 8 | Quotent | Remainder | Bit |
---|---|---|---|
15432 | 0 | 0 | |
1929 | 0 | 1 | |
241 | 1 | 2 | |
30 | 1 | 3 | |
3 | 6 | 4 | |
0 | 3 | 5 | |
The octal Representation of (123456)10 is (361110)8 |
Decimal to Octal Conversion Table
The following table shows the common decimal numbers equivalent octal numbers:
Decimal | Octal |
---|---|
0 | 0 |
1 | 1 |
2 | 2 |
3 | 3 |
4 | 4 |
5 | 5 |
6 | 6 |
7 | 7 |
8 | 10 |
9 | 11 |
10 | 12 |
11 | 13 |
12 | 14 |
13 | 15 |
14 | 16 |
15 | 17 |
16 | 20 |
17 | 21 |
18 | 22 |
19 | 23 |
20 | 24 |
21 | 25 |
22 | 26 |
23 | 27 |
24 | 30 |
25 | 31 |
26 | 32 |
27 | 33 |
28 | 34 |
- Decimal to Octal Converter
- Hexadecimal to Octal Converter
- Octal to Binary Converter
- Binary to Hexadecimal Converter
- Octal to Hexadecimal Converter
- Decimal to Binary Converter
- Binary to Octal Converter
- Octal to Decimal Converter
- Hexadecimal to Binary Converter
- Binary to Decimal Converter
- Decimal to Hexadecimal Converter
- Random Number Generator
- Hexadecimal to Decimal Converter
Login or Signup to add a comment