convert decimal to hexadecimal in javascript Get link Facebook X Pinterest Email Other Apps - February 09, 2023 function convertToHex(n) { let hex = n.toString(16).toUpperCase(); if (hex.length < 2) { hex = `0${hex}`; } return hex; } console.log(convertToHex(12)); Read more
Convert string to hex code in javascript Get link Facebook X Pinterest Email Other Apps - February 09, 2023 function convertToHex(str) { var hex = ''; for(var i=0;i<str.length;i++) { hex += ''+str.charCodeAt(i).toString(16); } return hex; } Read more