Skip to content

Instantly share code, notes, and snippets.

@Neoglyph
Created September 19, 2017 22:43
Show Gist options
  • Save Neoglyph/d70d9c26c0d0aadc94641975c963146a to your computer and use it in GitHub Desktop.
Save Neoglyph/d70d9c26c0d0aadc94641975c963146a to your computer and use it in GitHub Desktop.
UTF8 Base64 encode
function b64EncodeUnicode(str) {
return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, function(match, p1) {
return String.fromCharCode('0x' + p1);
}));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment