Created
August 29, 2021 18:08
-
-
Save getkey/7ed215b45407a17fde443f38163e8a70 to your computer and use it in GitHub Desktop.
Unicodify
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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('[email protected]'); | |
console.log(lel, eval(`"${lel}"`)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment