digiwleeaTools
LearnGlossaryAboutCheat sheetHow a CPU worksToolsOpen the lab →

150 in binary

The decimal number 150 written in binary is 10010110. In hexadecimal it is 96, and in octal 226.

150 in binary10010110
BaseValue
Decimal (base 10)150
Binary (base 2)10010110
Hexadecimal (base 16)96
Octal (base 8)226

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

128 + 16 + 4 + 2 = 150

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

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

150 in binary is 10010110. That is the sum of the powers of two 128 + 16 + 4 + 2, which add up to 150.

What is 150 in hexadecimal?

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

How many bits is 150?

150 needs 8 bits in binary (10010110). It fits in a single 8-bit byte.