Skip to content
Convertitive

Octal to Binary Converter

755 (oct) = 111101101 (bin)

Convert octal numbers to binary numbers exactly, for any size. Convertitive parses your input as a BigInt — so 64-bit values, 256-bit hex strings, and even larger numbers round-trip without rounding. For quick reference: 755 oct = 111101101 bin, and 100 oct = 1000000 bin.

111101101
Quick

How to convert octal numbers to binary numbers

  1. Enter a value

    Type a octal integer in the From field. Allowed characters: 0 through 7.

  2. Read the binary result

    The To field updates as you type. For example, the octal value 755 equals 111101101 in binary.

  3. Copy or share

    Use the copy button to grab the result. You can change either base from its dropdown without leaving the page.

Reference table

Fifty representative values. Every row is computed exactly by the same BigInt-based converter that powers the widget above.

Octal (oct)Binary (bin)
00
11
210
311
4100
5101
6110
7111
101000
111001
121010
131011
141100
151101
161110
171111
2010000
2110001
2210010
2310011
2410100
3011000
3711111
40100000
44100100
52101010
60110000
62110010
77111111
1001000000
1441100100
1771111111
20010000000
31011001000
37711111111
400100000000
764111110100
777111111111
10001000000000
17501111101000
17771111111111
200010000000000
4000100000000000
100001000000000000
2000010000000000000
40000100000000000000
1000001000000000000000
1777771111111111111111
20000010000000000000000
4000000100000000000000000000

Frequently asked questions

How do I convert octal numbers to binary numbers?
Enter your octal value above. Convertitive parses it as an arbitrary-precision integer and reformats it in binary. The conversion is exact for any size — there's no float rounding.
What is 755 in binary?
755 (octal) equals 111101101 in binary.
Are negative numbers supported?
No, only non-negative integers are supported for octal ↔ binary. Two's-complement encodings depend on a chosen bit-width, which this tool does not assume.
What's the largest number I can convert?
Any size. Convertitive uses JavaScript BigInt, which has no fixed upper bound — 256-bit hex strings, 512-bit and bigger all round-trip exactly.
How many bits does the result take?
An n-digit number in base 8 needs roughly 3.00 × n bits to store. The exact bit length equals ⌈log₂(value + 1)⌉.
Is hex case-sensitive?
Hexadecimal accepts letters in either case; this conversion doesn't involve hex.
Are conversion factors exact?
Yes. Base conversion is integer-to-integer; there are no factors, no rounding, no precision loss.
Why would I convert octal numbers to binary numbers?
Binary is what computers actually use internally. Converting from octal to binary is useful for low-level debugging, bit-mask design, and understanding how values are encoded at the hardware level.

About octal and binary

Octal (base 8)

Octal (base 8) uses the digits 0 through 7. Each octal digit represents exactly three bits, which is why octal was widely used on early minicomputers and is still the conventional notation for Unix file-permission masks (e.g. 755).

Binary (base 2)

Binary (base 2) represents numbers with two digits: 0 and 1. It is the native language of every digital computer because each digit maps directly to a transistor's on/off state. A group of 8 binary digits forms one byte, the smallest addressable unit in most modern hardware.

Other base converters