digiwleeaTools
LearnGlossaryAboutCheat sheetHow a CPU worksToolsOpen the lab →

14 in binary

The decimal number 14 written in binary is 1110. In hexadecimal it is E, and in octal 16.

14 in binary1110
BaseValue
Decimal (base 10)14
Binary (base 2)1110
Hexadecimal (base 16)E
Octal (base 8)16

How 14 converts to binary

Binary is base 2, so each place is worth twice the one to its right: 1, 2, 4, 8, 16, and so on. Adding up the place values that have a 1 gives back the decimal number:

8 + 4 + 2 = 14

That is why 14 in decimal is 1110 in binary: it is exactly the set of powers of two that add up to 14. To get the hexadecimal form, group the bits into fours from the right and write each group as one hex digit, which gives E.

Convert any number

Type any value and watch all three bases update live in the binary converter, or read the theory behind it in the lessons on binary numbers and hexadecimal.

Want to build the circuit that does this? Open the lab and wire up an adder, or follow the free course from a single transistor up to an 8-bit CPU.

Open the binary converter →

Frequently asked

What is 14 in binary?

14 in binary is 1110. That is the sum of the powers of two 8 + 4 + 2, which add up to 14.

What is 14 in hexadecimal?

14 in hexadecimal is E. You get it by grouping the binary digits 1110 into fours from the right and writing each group as one hex digit.

How many bits is 14?

14 needs 4 bits in binary (1110). It fits in a single 8-bit byte.