11 in Binary

11 in binary is 1011. It takes 4 bits to write, and as a full byte it is 00001011.

How to convert 11 to binary

Divide by 2, write down the remainder, and repeat with the quotient until it reaches 0. The remainders, read from the last row up to the first, spell out 1011.

DivisionQuotientRemainder
11 ÷ 251
5 ÷ 221
2 ÷ 210
1 ÷ 201

Check it the other way

To verify, read 1011 left to right, giving each digit its place value and adding up the places that hold a 1.

BitPlace valueContributes
123 = 88
022 = 40
121 = 22
120 = 11

Adding the contributions: 8 + 0 + 2 + 1 = 11. The conversion checks out.

11 in every base

FormatValue
Binary1011
Decimal11
HexadecimalB
Octal13
As a byte (8-bit)00001011

Worth knowing about 11

Eleven's binary form 1011 looks like a decimal number over a thousand, the classic base mix-up, and saying one-zero-one-one aloud is how programmers dodge it.

Convert another number

Binary
 
Hex
 
Octal
 

Nearby numbers

Or browse the full table at numbers in binary.

FAQ

What is 11 in binary?

11 converts to 1011 in binary. Every 1 in the pattern marks a power of two that is part of the total, and every 0 marks one that is skipped. Add the marked powers and the sum is exactly 11. Padded to a byte, it reads 00001011.

How many bits does 11 need?

1011 is 4 bits long, so 11 needs 4 bits at minimum. The count grows by one whenever a number reaches the next power of two. Inside a byte, the leftover positions are filled with zeros, which is why 11 appears as 00001011 in most computer contexts.

What is 11 in hex?

11 written in base 16 is B. Programmers lean on hex because each digit maps to exactly four bits, turning long binary strings into short codes. For completeness, 11 in octal is 13 and in binary it is 1011. They all name the same quantity.