Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stargt/f94ca64d5f82c2b44bdd85d16df958c4 to your computer and use it in GitHub Desktop.
Save stargt/f94ca64d5f82c2b44bdd85d16df958c4 to your computer and use it in GitHub Desktop.
Base64 encode/decode UTF-8
function b64EncodeUnicode(str) {
return btoa( unescape( encodeURIComponent( str ) ) );
}
function b64DecodeUnicode(str) {
return decodeURIComponent( escape( atob( str ) ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment