Skip to content

Instantly share code, notes, and snippets.

@tristanperalta
Created October 31, 2018 03:15
Show Gist options
  • Save tristanperalta/ff545571f43681c57dacd1da528d329c to your computer and use it in GitHub Desktop.
Save tristanperalta/ff545571f43681c57dacd1da528d329c to your computer and use it in GitHub Desktop.
convert utf-8 string to hex string
function toHex(str) {
return Buffer.from(str, 'utf-8').toString('hex');
}
console.log(toHex('tristan'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment