digiwleeaTools
LearnGlossaryAboutCheat sheetHow a CPU worksToolsOpen the lab →

40 in binary

The decimal number 40 written in binary is 101000. In hexadecimal it is 28, and in octal 50.

40 in binary101000
BaseValue
Decimal (base 10)40
Binary (base 2)101000
Hexadecimal (base 16)28
Octal (base 8)50

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

32 + 8 = 40

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

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

40 in binary is 101000. That is the sum of the powers of two 32 + 8, which add up to 40.

What is 40 in hexadecimal?

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

How many bits is 40?

40 needs 6 bits in binary (101000). It fits in a single 8-bit byte.