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