digiwleeaTools
LearnGlossaryAboutCheat sheetHow a CPU worksToolsOpen the lab →

65535 in binary

The decimal number 65535 written in binary is 1111111111111111. In hexadecimal it is FFFF, and in octal 177777.

65535 in binary1111111111111111
BaseValue
Decimal (base 10)65535
Binary (base 2)1111111111111111
Hexadecimal (base 16)FFFF
Octal (base 8)177777

How 65535 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:

32768 + 16384 + 8192 + 4096 + 2048 + 1024 + 512 + 256 + 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1 = 65535

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

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 65535 in binary?

65535 in binary is 1111111111111111. That is the sum of the powers of two 32768 + 16384 + 8192 + 4096 + 2048 + 1024 + 512 + 256 + 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1, which add up to 65535.

What is 65535 in hexadecimal?

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

How many bits is 65535?

65535 needs 16 bits in binary (1111111111111111). It fits in 16 bits (two bytes).