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