Binary to Octal Converter
To use this binary to octal conversion tool, you must type a binary value like 11011011 into the left field below and hit the Convert button. The converter will give you the octal equivalent of the given binary.
Binary to octal conversion result in base numbersBinary 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.
The 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.
How to Convert Binary to Octal
Converting from binary to octal is very easy since octal numbers are only simplified versions of binary strings. You just need to remember that each octal digit represents three binary digits so that three binary digits will give only one octal digit. While the method is quite easier than it sounds, it’s always useful to use a binary to octal conversion chart to save time.
- Step 1: Write down the binary number and group the 0’s and 1’s in sets of three. Start doing this from the right. If the leftmost group doesn’t have enough digits to make up a set of three, add extra 0’s to make another group.
- Step 2: Write 4, 2 and 1 below each group. These are the weights that the positions carry (22,21,20).
- Step 3: Every group of three in binary will give you one digit in octal. Multiply the 4, 2 and 1’s by the digit above.
- Step 4: Add the products within each set of three. Write the sums below the groups they belong to.
- Step 5: The digits you get from the sums in each group will give you the octal number, from left to right.
Now, let’s apply these steps to, for example, the binary number (111010)2
Step 1: 111010 has six digits and therefore can be grouped in sets of three without adding 0’s. Think of the number as (111)(010). Step 2: Write 4, 2 and 1 below each group. 111 010 421 421 Step 3: Multiply the 4, 2 and 1’s with the digit above. 111 010 421 421 421 020 Step 4: Add the products within each set of three. In the first group, 4 + 2 + 1 = 7 In the second group, 0 + 2 + 0 = 2 Write these digits below the groups they belong to. 111 010 421 421 421 020 7 2 Step 5: (111010)2 = (72)8
Binary to Octal Conversion Examples
Example 1: (1010001)2 = (121)8
(1)(010)(001) (Notice that the digits in this binary number cannot be grouped all in three. Add two 0’s and repeat the above explained steps.) 001 010 001 421 421 421 001 020 001 1 2 1
Example 2: (10100101.01)2 = (245.2)8
(Notice that this binary number has a decimal point. It also cannot be automatically grouped in sets of three. You need to add 0’s both the leftmost and the rightmost parts.) 010 100 101. 010 421 421 421. 421 020 400 401. 020 2 4 5. 2
Related converters:
Octal To Binary Converter
Binary Octal Conversion Chart Table
Binary | Octal |
---|---|
00000001 | 1 |
00000010 | 2 |
00000011 | 3 |
00000100 | 4 |
00000101 | 5 |
00000110 | 6 |
00000111 | 7 |
00001000 | 10 |
00001001 | 11 |
00001010 | 12 |
00001011 | 13 |
00001100 | 14 |
00001101 | 15 |
00001110 | 16 |
00001111 | 17 |
00010000 | 20 |
00010001 | 21 |
00010010 | 22 |
00010011 | 23 |
00010100 | 24 |
00010101 | 25 |
00010110 | 26 |
00010111 | 27 |
00011000 | 30 |
00011001 | 31 |
00011010 | 32 |
00011011 | 33 |
00011100 | 34 |
00011101 | 35 |
00011110 | 36 |
00011111 | 37 |
00100000 | 40 |
00100001 | 41 |
00100010 | 42 |
00100011 | 43 |
00100100 | 44 |
00100101 | 45 |
00100110 | 46 |
00100111 | 47 |
00101000 | 50 |
00101001 | 51 |
00101010 | 52 |
00101011 | 53 |
00101100 | 54 |
00101101 | 55 |
00101110 | 56 |
00101111 | 57 |
00110000 | 60 |
00110001 | 61 |
00110010 | 62 |
00110011 | 63 |
00110100 | 64 |
00110101 | 65 |
00110110 | 66 |
00110111 | 67 |
00111000 | 70 |
00111001 | 71 |
00111010 | 72 |
00111011 | 73 |
00111100 | 74 |
00111101 | 75 |
00111110 | 76 |
00111111 | 77 |
01000000 | 100 |
Binary | Octal |
---|---|
01000001 | 101 |
01000010 | 102 |
01000011 | 103 |
01000100 | 104 |
01000101 | 105 |
01000110 | 106 |
01000111 | 107 |
01001000 | 110 |
01001001 | 111 |
01001010 | 112 |
01001011 | 113 |
01001100 | 114 |
01001101 | 115 |
01001110 | 116 |
01001111 | 117 |
01010000 | 120 |
01010001 | 121 |
01010010 | 122 |
01010011 | 123 |
01010100 | 124 |
01010101 | 125 |
01010110 | 126 |
01010111 | 127 |
01011000 | 130 |
01011001 | 131 |
01011010 | 132 |
01011011 | 133 |
01011100 | 134 |
01011101 | 135 |
01011110 | 136 |
01011111 | 137 |
01100000 | 140 |
01100001 | 141 |
01100010 | 142 |
01100011 | 143 |
01100100 | 144 |
01100101 | 145 |
01100110 | 146 |
01100111 | 147 |
01101000 | 150 |
01101001 | 151 |
01101010 | 152 |
01101011 | 153 |
01101100 | 154 |
01101101 | 155 |
01101110 | 156 |
01101111 | 157 |
01110000 | 160 |
01110001 | 161 |
01110010 | 162 |
01110011 | 163 |
01110100 | 164 |
01110101 | 165 |
01110110 | 166 |
01110111 | 167 |
01111000 | 170 |
01111001 | 171 |
01111010 | 172 |
01111011 | 173 |
01111100 | 174 |
01111101 | 175 |
01111110 | 176 |
01111111 | 177 |
10000000 | 200 |
Binary | Octal |
---|---|
10000001 | 201 |
10000010 | 202 |
10000011 | 203 |
10000100 | 204 |
10000101 | 205 |
10000110 | 206 |
10000111 | 207 |
10001000 | 210 |
10001001 | 211 |
10001010 | 212 |
10001011 | 213 |
10001100 | 214 |
10001101 | 215 |
10001110 | 216 |
10001111 | 217 |
10010000 | 220 |
10010001 | 221 |
10010010 | 222 |
10010011 | 223 |
10010100 | 224 |
10010101 | 225 |
10010110 | 226 |
10010111 | 227 |
10011000 | 230 |
10011001 | 231 |
10011010 | 232 |
10011011 | 233 |
10011100 | 234 |
10011101 | 235 |
10011110 | 236 |
10011111 | 237 |
10100000 | 240 |
10100001 | 241 |
10100010 | 242 |
10100011 | 243 |
10100100 | 244 |
10100101 | 245 |
10100110 | 246 |
10100111 | 247 |
10101000 | 250 |
10101001 | 251 |
10101010 | 252 |
10101011 | 253 |
10101100 | 254 |
10101101 | 255 |
10101110 | 256 |
10101111 | 257 |
10110000 | 260 |
10110001 | 261 |
10110010 | 262 |
10110011 | 263 |
10110100 | 264 |
10110101 | 265 |
10110110 | 266 |
10110111 | 267 |
10111000 | 270 |
10111001 | 271 |
10111010 | 272 |
10111011 | 273 |
10111100 | 274 |
10111101 | 275 |
10111110 | 276 |
10111111 | 277 |
11000000 | 300 |
Binary | Octal |
---|---|
11000001 | 301 |
11000010 | 302 |
11000011 | 303 |
11000100 | 304 |
11000101 | 305 |
11000110 | 306 |
11000111 | 307 |
11001000 | 310 |
11001001 | 311 |
11001010 | 312 |
11001011 | 313 |
11001100 | 314 |
11001101 | 315 |
11001110 | 316 |
11001111 | 317 |
11010000 | 320 |
11010001 | 321 |
11010010 | 322 |
11010011 | 323 |
11010100 | 324 |
11010101 | 325 |
11010110 | 326 |
11010111 | 327 |
11011000 | 330 |
11011001 | 331 |
11011010 | 332 |
11011011 | 333 |
11011100 | 334 |
11011101 | 335 |
11011110 | 336 |
11011111 | 337 |
11100000 | 340 |
11100001 | 341 |
11100010 | 342 |
11100011 | 343 |
11100100 | 344 |
11100101 | 345 |
11100110 | 346 |
11100111 | 347 |
11101000 | 350 |
11101001 | 351 |
11101010 | 352 |
11101011 | 353 |
11101100 | 354 |
11101101 | 355 |
11101110 | 356 |
11101111 | 357 |
11110000 | 360 |
11110001 | 361 |
11110010 | 362 |
11110011 | 363 |
11110100 | 364 |
11110101 | 365 |
11110110 | 366 |
11110111 | 367 |
11111000 | 370 |
11111001 | 371 |
11111010 | 372 |
11111011 | 373 |
11111100 | 374 |
11111101 | 375 |
11111110 | 376 |
11111111 | 377 |
Recent Comments
It really assist thanks.
I understand, thanks
why use 4-2-1? I dont get it
you taught in a very simple and efficient way. thank you...
Wow ! amazing
How to change from octal to binary what if the octal is like 3digit
seen better !!!
Thank you it helps me a lot.
great app love it this helped me a lot
It really assist thanks.
I have a question, why use 4-2-1? I dont get it