Answers for "convert letter to hexadecimal js"

4

javascript string to hex

var rgbToHex = function (rgb) { 
  var hex = Number(rgb).toString(16);
  if (hex.length < 2) {
       hex = "0" + hex;
  }
  return hex;
};
Posted by: Guest on June-18-2020
0

javascript ascii to hex

function ascii_to_hex(str)
  {
	var arr1 = [];
	for (var n = 0, l = str.length; n < l; n ++) 
     {
		var hex = Number(str.charCodeAt(n)).toString(16);
		arr1.push(hex);
	 }
	return arr1.join('');
   }
Posted by: Guest on May-13-2020

Code answers related to "convert letter to hexadecimal js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language