How to convert string to hex in Node.js

1 Answer

0 votes
function string_to_hex(str) {
    let arr = [];
      
    for (let i = 0, len = str.length; i < len; i ++) {
        const hex = Number(str.charCodeAt(i)).toString(16);
        arr.push(hex + ' ');
    }
      
    return arr.join('');
}
  
  
console.log(string_to_hex("node.js")); 
  
    
      
      
/*
run:
      
6e 6f 64 65 2e 6a 73 
      
*/

 



answered Nov 18, 2024 by avibootz

Related questions

1 answer 94 views
1 answer 56 views
1 answer 73 views
2 answers 251 views
251 views asked Dec 30, 2021 by avibootz
4 answers 377 views
377 views asked Dec 30, 2021 by avibootz
...