Javascript – How to convert decimal to hexadecimal in JavaScript

basehexjavascriptnumber-formatting

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

Best Answer

Convert a number to a hexadecimal string with:

hexString = yourNumber.toString(16);

And reverse the process with:

yourNumber = parseInt(hexString, 16);