You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/String/Convert ASCII to Hexadecima...

13 lines
333 B
JavaScript

function ascii_to_hexa(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('');
}
console.log(ascii_to_hexa('12'));
console.log(ascii_to_hexa('100'));