up vote 123 down vote favorite
26
share [g+] share [fb]

How do you convert decimal values to their hex equivalent in JavaScript?

link|improve this question

67% accept rate
feedback

9 Answers

up vote 209 down vote accepted

Convert a number to a hexadecimal string with:

hexString = yourNumber.toString(16);

and reverse the process with:

yourNumber = parseInt(hexString, 16);
link|improve this answer
6  
:O Are two lines of code 94 upvotes worth? – Martijn Courteaux Jun 8 '11 at 14:16
39  
@Martijn - would you prefer a longer solution? – Nathan Long Jun 21 '11 at 13:22
isn't it yourNum = parseInt(yourNum, 10); -- and not 16? – American Yak Jul 4 '11 at 13:04
2  
yourNum is a hex string in this case. E.g. (255).toString(16) == 'ff' && parseInt('ff', 16) == 255 – Prestaul Jul 8 '11 at 19:14
Which one is which? – Derek Aug 2 '11 at 21:40
show 2 more comments
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.

function decimalToHexString(number)
{
    if (number < 0)
    {
    	number = 0xFFFFFFFF + number + 1;
    }

    return number.toString(16).toUpperCase();
}
link|improve this answer
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.

function decimalToHex(d, padding) {
    var hex = Number(d).toString(16);
    padding = typeof (padding) === "undefined" || padding === null ? padding = 2 : padding;

    while (hex.length < padding) {
        hex = "0" + hex;
    }

    return hex;
}
link|improve this answer
This won't properly handle negative values. decimalToHex(-6, 4) would return 00-6. – JonMR Jun 17 '10 at 18:09
feedback

Without the loop :

function decimalToHex(d) {
  var hex = Number(d).toString(16);
  hex = "000000".substr(0, 6 - hex.length) + hex; 
  return hex;
}

//or "#000000".substr(0, 7 - hex.length) + hex;
//or whatever
//*Thanks to MSDN

Also isn't it better not to use loop tests that have to be evaluated eg instead of:

for (var i = 0; i < hex.length; i++){}

have

for (var i = 0, var j = hex.length; i < j; i++){}
link|improve this answer
feedback
function dec2hex(i)
{
  var result = "0000";
  if      (i >= 0    && i <= 15)    { result = "000" + i.toString(16); }
  else if (i >= 16   && i <= 255)   { result = "00"  + i.toString(16); }
  else if (i >= 256  && i <= 4095)  { result = "0"   + i.toString(16); }
  else if (i >= 4096 && i <= 65535) { result =         i.toString(16); }
  return result
}
link|improve this answer
+1 thanks! When working with CSS, the toString(16) is important so you get results like FF0000 – Tyler Egeto Feb 21 '11 at 6:54
3  
when working with css (or svg, which accepts css-style color specifications) you can sidestep the entire issue by writing color: rgb(r,g,b) where r g and b are decimal numbers. – telent Feb 27 '11 at 11:09
Should be: function decimalToHexString(i) { var result = "00"; if (i >= 0 && i <= 15) { result += "000" + i.toString(16); } else if (i >= 16 && i <= 255) { result += "00" + i.toString(16); } else if (i >= 256 && i <= 4095) { result += "0" + i.toString(16); } else if (i >= 4096 && i <= 65535) { result += i.toString(16); } return result } – cevik May 20 '11 at 9:04
feedback

AFAIK comment 57807 is wrong and should be something like: var hex = Number(d).toString(16); instead of var hex = parseInt(d, 16);

function decimalToHex(d, padding) {
    var hex = Number(d).toString(16);
    padding = typeof (padding) === "undefined" || padding === null ? padding = 2 : padding;

    while (hex.length < padding) {
        hex = "0" + hex;
    }

    return hex;
}
link|improve this answer
I've updated my reply with this fix :) – Luke Smith Oct 15 '09 at 13:58
feedback
var number = 3200;
var hexString = number.toString(16);

The 16 is the radix and there are 16 values in a hexidecimal number :-)

link|improve this answer
feedback

With padding:

function dec2hex(i) {
   return (i+0x10000).toString(16).substr(-4).toUpperCase();
}
link|improve this answer
feedback

Constrained/Padded to a set number of characters:

function decimalToHex(decimal, chars) {
    return (decimal + Math.pow(16, chars)).toString(16).slice(-chars).toUpperCase();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.