Skip to content

Instantly share code, notes, and snippets.

@mbwhite
Created September 14, 2017 08:03
Show Gist options
  • Save mbwhite/dc92a42a49f09a8f1681c38758a7fe49 to your computer and use it in GitHub Desktop.
Save mbwhite/dc92a42a49f09a8f1681c38758a7fe49 to your computer and use it in GitHub Desktop.
toHex(str) {
let hex = '';
for(let i=0;i<str.length;i++) {
let s = str.charCodeAt(i).toString(16);
hex += (s.length===1 ? '0' : '')+ str.charCodeAt(i).toString(16)+ ' ';
}
return hex;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment