digiwleeaTools
LearnGlossaryAboutCheat sheetHow a CPU worksToolsOpen the lab →

30 in binary

The decimal number 30 written in binary is 11110. In hexadecimal it is 1E, and in octal 36.

30 in binary11110
BaseValue
Decimal (base 10)30
Binary (base 2)11110
Hexadecimal (base 16)1E
Octal (base 8)36

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

16 + 8 + 4 + 2 = 30

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

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

30 in binary is 11110. That is the sum of the powers of two 16 + 8 + 4 + 2, which add up to 30.

What is 30 in hexadecimal?

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

How many bits is 30?

30 needs 5 bits in binary (11110). It fits in a single 8-bit byte.