Search

Encode/Decode Base64 JavaScript


Description
Decode or encode to Base64


btoa('hello');     //aGVsbG8=

atob('aGVsbG8=');  //hello
SEE ALSO