How do you convert decimal values to their hex equivalent in JavaScript?
|
feedback
|
|
Convert a number to a hexadecimal string with:
and reverse the process with:
| |||||||||||||||||
feedback
|
|
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.
| |||
|
feedback
|
|
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.
| ||||
feedback
|
|
Without the loop :
Also isn't it better not to use loop tests that have to be evaluated eg instead of:
have
| ||||
|
feedback
|
| |||||||||
feedback
|
|
AFAIK comment 57807 is wrong and should be something like: var hex = Number(d).toString(16); instead of var hex = parseInt(d, 16);
| ||||
|
feedback
|
The 16 is the radix and there are 16 values in a hexidecimal number :-) | |||
|
feedback
|
|
With padding:
| |||
|
feedback
|
|
Constrained/Padded to a set number of characters:
| |||
|
feedback
|