programming-examples/js/String/Convert ASCII to Hexadecimal format.js
2019-11-15 12:59:38 +01:00

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'));