Skip to content

Instantly share code, notes, and snippets.

@0rbianta
Last active January 14, 2021 07:03
Show Gist options
  • Save 0rbianta/30938aa1bb89a11ad7887ce58d66733f to your computer and use it in GitHub Desktop.
Save 0rbianta/30938aa1bb89a11ad7887ce58d66733f to your computer and use it in GitHub Desktop.
String2Hex NodeJS
const data = "Hello World";
var hexs = [];
for(var i=0;i<data.length;i++){
hexs.push(data.charCodeAt(i).toString(16));
}
console.log(hexs);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment