Decimal to hex table
| Decimal | Hex |
|---|---|
| 0 | 0 |
| 1 | 1 |
| 2 | 2 |
| 3 | 3 |
| 4 | 4 |
| 5 | 5 |
| 6 | 6 |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
| 10 | A |
| 11 | B |
| 12 | C |
| 13 | D |
| 14 | E |
| 15 | F |
| 16 | 10 |
| 32 | 20 |
| 64 | 40 |
| 100 | 64 |
| 128 | 80 |
| 255 | FF |
| 256 | 100 |
| 1000 | 3E8 |
| 1024 | 400 |
Questions and answers
How do I convert decimal to hex?
Divide by 16 repeatedly and read the remainders from last to first. 255 is FF in hex.
How big a number can I convert?
Any size. ConvertEasy uses arbitrary-precision integers (BigInt), so 256-bit hashes and addresses convert exactly.