How do you convert decimal values to their hex equivalent in JavaScript?
|
1
|
|
|
|
|
|
and reverse the process with:
|
||
|
|
|
|
The code below will convert the decimal value d to hex. It also allows you to add padding to the hex result. so 0 will become 00 by default.
|
|||
|
|
|
|
The 16 is the radix and there are 16 values in a hexidecimal number :-) |
||
|
|
|
|
If you need to handle things like bit fields or 32-bit colors, then you need to deal with signed numbers. The javascript function toString(16) will return a negative hex number which is usually not what you want. This function does some crazy addition to make it a positive number.
|
||
|
|
|
|
|
||
|
|
|
|
AFAIK comment 57807 is wrong and should be something like: var hex = Number(d).toString(16); instead of var hex = parseInt(d, 16);
|
|||
|
