How to convert decimal to hexadecimal in JavaScript

后端 未结 27 2591
臣服心动
臣服心动 2020-11-21 23:05

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

27条回答
  •  一向
    一向 (楼主)
    2020-11-21 23:52

    Constrained/padded to a set number of characters:

    function decimalToHex(decimal, chars) {
        return (decimal + Math.pow(16, chars)).toString(16).slice(-chars).toUpperCase();
    }
    

提交回复
热议问题