Octal to Binary Converter
To use this octal to binary conversion tool, you must type an octal value like 5432 into the left field below and hit the Convert button. The converter will give you the binary equivalent of the given octal.
Octal to binary conversion result in base numbersThe Octal System
The octal number system (or shortly oct) uses the number 8 as its base (radix). As a base-8 numeral system, it uses eight symbols: The numbers from 0 to 7, namely 0, 1, 2, 3, 4, 5, 6 and 7. Although it was used by some native American tribes until the 20th century, the octal system has become popular in the early ages of computing as a language of computer programming. This is because the octal system shortens binary by simplifying long and complex chains of binary displays used by computers.
The octal system is mainly used for counting binary in groups of three: Each octal digit represents three binary digits. Since 8 is 2 to the third power (23), the octal system became a perfect abbreviation of binary for machines that employ word sizes divisible by three - which were 6-bit, 12-bit, 24-bit or 36-bit. Nowadays, most modern systems use hexadecimal rather than octal. However, octal numbers are an important part of basic knowledge in electronics.
Binary System
The binary numeral system uses the number 2 as its base (radix). As a base-2 numeral system, it consists of only two numbers: 0 and 1.
While it has been applied in ancient Egypt, China and India for different purposes, the binary system has become the language of electronics and computers in the modern world. This is the most efficient system to detect an electric signal’s off (0) and on (1) state. It is also the basis for binary code that is used to compose data in computer-based machines. Even the digital text that you are reading right now consists of binary numbers.
Reading a binary number is easier than it looks: This is a positional system; therefore, every digit in a binary number is raised to the powers of 2, starting from the rightmost with 20. In the binary system, each binary digit refers to 1 bit.
How to Convert Octal to Binary
Converting from octal to binary has a very straightforward method because octal numbers are shortened versions of binary strings. Remember that each octal digit represents three binary digits. Therefore, one octal digit should give three binary digits (bits). While octal can be converted to binary indirectly (first the to the decimal, then to binary), a direct method to convert octal to binary with steps is as follows:
- Step 1: Write down the octal number separating the digits. Each octal digit represents three binary digits and therefore is equal to a power of 2. The rightmost digit equals to 20 (1), the next one equals to 21 (2) and the leftmost one equals to 22 (4). Write these numbers (4, 2 and 1) below the octal digits.
- Step 2: Determine which powers of two (4, 2 or 1) sum up to your octal digits. For example, if one of your octal numbers is 6, this means 4 and 2 sum up to 6 (and 1 is not used). If your octal number is 2, only 2 is used; 4 and 1 are not.
- Step 3: Write down 1 below those 4, 2 and 1’s that are used. Write down 0 below those that are not used.
- Step 4: Read 1’s and 0’s you just wrote from from left to right. You will get your binary number.
Let's apply these steps to the octal number (456)8
Step 1: 4 5 6 421 421 421 Step 2: 4 5 6 421 421 421 (Notice the bold digits sum up to the octal value above. So the bold digits are 1 and the others are 0.) Step 3: 4 5 6 421 421 421 100 101 110 Step 4: (456)8 = (1010011100)2
Octal to Binary Conversion Examples
Example 1: (1234)8 = (001010011100)2 1 2 3 4 421 421 421 421 421 421 421 421 001 010 011 100
Example 2: (75426)8 = (111101100010110)2 7 5 4 2 6 421 421 421 421 421 111 101 100 010 110
Example 3: (6574.73)8 = (110101111100.111011)2 6 5 7 4. 7 3 421 421 421 421. 421 421 110 101 111 100. 111 011Binary to Octal Converter
Octal to Binary Conversion Chart Table
Octal | Binary |
---|---|
1 | 00000001 |
2 | 00000010 |
3 | 00000011 |
4 | 00000100 |
5 | 00000101 |
6 | 00000110 |
7 | 00000111 |
10 | 00001000 |
11 | 00001001 |
12 | 00001010 |
13 | 00001011 |
14 | 00001100 |
15 | 00001101 |
16 | 00001110 |
17 | 00001111 |
20 | 00010000 |
21 | 00010001 |
22 | 00010010 |
23 | 00010011 |
24 | 00010100 |
25 | 00010101 |
26 | 00010110 |
27 | 00010111 |
30 | 00011000 |
31 | 00011001 |
32 | 00011010 |
33 | 00011011 |
34 | 00011100 |
35 | 00011101 |
36 | 00011110 |
37 | 00011111 |
40 | 00100000 |
41 | 00100001 |
42 | 00100010 |
43 | 00100011 |
44 | 00100100 |
45 | 00100101 |
46 | 00100110 |
47 | 00100111 |
50 | 00101000 |
51 | 00101001 |
52 | 00101010 |
53 | 00101011 |
54 | 00101100 |
55 | 00101101 |
56 | 00101110 |
57 | 00101111 |
60 | 00110000 |
61 | 00110001 |
62 | 00110010 |
63 | 00110011 |
64 | 00110100 |
65 | 00110101 |
66 | 00110110 |
67 | 00110111 |
70 | 00111000 |
71 | 00111001 |
72 | 00111010 |
73 | 00111011 |
74 | 00111100 |
75 | 00111101 |
76 | 00111110 |
77 | 00111111 |
100 | 01000000 |
Octal | Binary |
---|---|
101 | 01000001 |
102 | 01000010 |
103 | 01000011 |
104 | 01000100 |
105 | 01000101 |
106 | 01000110 |
107 | 01000111 |
110 | 01001000 |
111 | 01001001 |
112 | 01001010 |
113 | 01001011 |
114 | 01001100 |
115 | 01001101 |
116 | 01001110 |
117 | 01001111 |
120 | 01010000 |
121 | 01010001 |
122 | 01010010 |
123 | 01010011 |
124 | 01010100 |
125 | 01010101 |
126 | 01010110 |
127 | 01010111 |
130 | 01011000 |
131 | 01011001 |
132 | 01011010 |
133 | 01011011 |
134 | 01011100 |
135 | 01011101 |
136 | 01011110 |
137 | 01011111 |
140 | 01100000 |
141 | 01100001 |
142 | 01100010 |
143 | 01100011 |
144 | 01100100 |
145 | 01100101 |
146 | 01100110 |
147 | 01100111 |
150 | 01101000 |
151 | 01101001 |
152 | 01101010 |
153 | 01101011 |
154 | 01101100 |
155 | 01101101 |
156 | 01101110 |
157 | 01101111 |
160 | 01110000 |
161 | 01110001 |
162 | 01110010 |
163 | 01110011 |
164 | 01110100 |
165 | 01110101 |
166 | 01110110 |
167 | 01110111 |
170 | 01111000 |
171 | 01111001 |
172 | 01111010 |
173 | 01111011 |
174 | 01111100 |
175 | 01111101 |
176 | 01111110 |
177 | 01111111 |
200 | 10000000 |
Octal | Binary |
---|---|
201 | 10000001 |
202 | 10000010 |
203 | 10000011 |
204 | 10000100 |
205 | 10000101 |
206 | 10000110 |
207 | 10000111 |
210 | 10001000 |
211 | 10001001 |
212 | 10001010 |
213 | 10001011 |
214 | 10001100 |
215 | 10001101 |
216 | 10001110 |
217 | 10001111 |
220 | 10010000 |
221 | 10010001 |
222 | 10010010 |
223 | 10010011 |
224 | 10010100 |
225 | 10010101 |
226 | 10010110 |
227 | 10010111 |
230 | 10011000 |
231 | 10011001 |
232 | 10011010 |
233 | 10011011 |
234 | 10011100 |
235 | 10011101 |
236 | 10011110 |
237 | 10011111 |
240 | 10100000 |
241 | 10100001 |
242 | 10100010 |
243 | 10100011 |
244 | 10100100 |
245 | 10100101 |
246 | 10100110 |
247 | 10100111 |
250 | 10101000 |
251 | 10101001 |
252 | 10101010 |
253 | 10101011 |
254 | 10101100 |
255 | 10101101 |
256 | 10101110 |
257 | 10101111 |
260 | 10110000 |
261 | 10110001 |
262 | 10110010 |
263 | 10110011 |
264 | 10110100 |
265 | 10110101 |
266 | 10110110 |
267 | 10110111 |
270 | 10111000 |
271 | 10111001 |
272 | 10111010 |
273 | 10111011 |
274 | 10111100 |
275 | 10111101 |
276 | 10111110 |
277 | 10111111 |
300 | 11000000 |
Octal | Binary |
---|---|
301 | 11000001 |
302 | 11000010 |
303 | 11000011 |
304 | 11000100 |
305 | 11000101 |
306 | 11000110 |
307 | 11000111 |
310 | 11001000 |
311 | 11001001 |
312 | 11001010 |
313 | 11001011 |
314 | 11001100 |
315 | 11001101 |
316 | 11001110 |
317 | 11001111 |
320 | 11010000 |
321 | 11010001 |
322 | 11010010 |
323 | 11010011 |
324 | 11010100 |
325 | 11010101 |
326 | 11010110 |
327 | 11010111 |
330 | 11011000 |
331 | 11011001 |
332 | 11011010 |
333 | 11011011 |
334 | 11011100 |
335 | 11011101 |
336 | 11011110 |
337 | 11011111 |
340 | 11100000 |
341 | 11100001 |
342 | 11100010 |
343 | 11100011 |
344 | 11100100 |
345 | 11100101 |
346 | 11100110 |
347 | 11100111 |
350 | 11101000 |
351 | 11101001 |
352 | 11101010 |
353 | 11101011 |
354 | 11101100 |
355 | 11101101 |
356 | 11101110 |
357 | 11101111 |
360 | 11110000 |
361 | 11110001 |
362 | 11110010 |
363 | 11110011 |
364 | 11110100 |
365 | 11110101 |
366 | 11110110 |
367 | 11110111 |
370 | 11111000 |
371 | 11111001 |
372 | 11111010 |
373 | 11111011 |
374 | 11111100 |
375 | 11111101 |
376 | 11111110 |
377 | 11111111 |
Recent Comments
Daniel is right.... still it helps much
@Lessete there are no eights or nine in octal because its base(radix) is eight (if this is what you are wondering about) ;]
Agree with Daniel. 456 octal gives 100101110 binary conversion
It is very helpful for computer studies ♥️♥️
Thank you a lot for explaining the straightforward conversion method!
Thank you for your insight. I found this very helpful. I do have a question with hopes you may be you will able to help with. I noticed throughout that any digit pertaining to 8's or 9's are not found or explained. Am I correct that these are carry overs? How does this work within octal?
Daniel is right...Nonetheless the method is correct
ACCURATE RESULT
This is a good and interesting site. Well done
For octal number 456 I keep getting a binary value of 100101110. I checked the calculator a few times. Seems to be saying the same. In your example I'm curious how you got to (1010011100)2 - looks like 1 extra bit for the binary result