14 in Binary
14 in binary is 1110. It takes 4 bits to write, and as a full byte it is 00001110.
How to convert 14 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 1110.
| Division | Quotient | Remainder |
|---|---|---|
| 14 ÷ 2 | 7 | 0 |
| 7 ÷ 2 | 3 | 1 |
| 3 ÷ 2 | 1 | 1 |
| 1 ÷ 2 | 0 | 1 |
Check it the other way
To verify, read 1110 left to right, giving each digit its place value and adding up the places that hold a 1.
| Bit | Place value | Contributes |
|---|---|---|
| 1 | 23 = 8 | 8 |
| 1 | 22 = 4 | 4 |
| 1 | 21 = 2 | 2 |
| 0 | 20 = 1 | 0 |
Adding the contributions: 8 + 4 + 2 + 0 = 14. The conversion checks out.
14 in every base
| Format | Value |
|---|---|
| Binary | 1110 |
| Decimal | 14 |
| Hexadecimal | E |
| Octal | 16 |
| As a byte (8-bit) | 00001110 |
Worth knowing about 14
Fourteen is written E in hexadecimal, one of the six values between 10 and 15 that hex spells with a letter because it ran out of ordinary digits.
Convert another number
- Binary
- Hex
- Octal
Nearby numbers
Or browse the full table at numbers in binary.
FAQ
What is 14 in binary?
14 converts to 1110 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 14. Padded to a byte, it reads 00001110.
How many bits does 14 need?
1110 is 4 bits long, so 14 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 14 appears as 00001110 in most computer contexts.
What is 14 in hex?
14 written in base 16 is E. Programmers lean on hex because each digit maps to exactly four bits, turning long binary strings into short codes. For completeness, 14 in octal is 16 and in binary it is 1110. They all name the same quantity.