99 in binary
The decimal number 99 written in binary is 1100011. In hexadecimal it is 63, and in octal 143.
| Base | Value |
|---|---|
| Decimal (base 10) | 99 |
| Binary (base 2) | 1100011 |
| Hexadecimal (base 16) | 63 |
| Octal (base 8) | 143 |
How 99 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:
64 + 32 + 2 + 1 = 99
That is why 99 in decimal is 1100011 in binary: it is exactly the set of powers of two that add up to 99. To get the hexadecimal form, group the bits into fours from the right and write each group as one hex digit, which gives 63.
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 99 in binary?
99 in binary is 1100011. That is the sum of the powers of two 64 + 32 + 2 + 1, which add up to 99.
What is 99 in hexadecimal?
99 in hexadecimal is 63. You get it by grouping the binary digits 1100011 into fours from the right and writing each group as one hex digit.
How many bits is 99?
99 needs 7 bits in binary (1100011). It fits in a single 8-bit byte.