Skip to content

Instantly share code, notes, and snippets.

@getkey
Created August 29, 2021 18:08
Show Gist options
  • Save getkey/7ed215b45407a17fde443f38163e8a70 to your computer and use it in GitHub Desktop.
Save getkey/7ed215b45407a17fde443f38163e8a70 to your computer and use it in GitHub Desktop.
Unicodify
function unicodify(str) {
return str.split('')
.map(char => char.charCodeAt(0)
.toString(16)
.toUpperCase()
.padStart(4, '0'))
.map(hex => `\\u${hex}`)
.join('');
}
const lel = unicodify('test@test.com');
console.log(lel, eval(`"${lel}"`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment