Skip to content

Instantly share code, notes, and snippets.

@h2non
Created October 28, 2014 14:42
Show Gist options
  • Save h2non/19c8a0d77b6c24dba47e to your computer and use it in GitHub Desktop.
Save h2non/19c8a0d77b6c24dba47e to your computer and use it in GitHub Desktop.
Base64 UTF8 native decoding in browsers
function base64UTF8Decode(str) {
return unescape(decodeURIComponent(window.atob(str)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment