Encoding and decoding binary data as a base64 string using JavaScript in the browser

The base implementation of JavaScript does not include base64 encoding or decoding. However, all modern browsers include the atob and btoa methods to decode and encode base64 data respectively. These are methods of the window object, defined by the JavaScript runtime.

How to do it…

It's as easy as a method call:

var encodedData = window.btoa("Hello world"); 
var decodedData = window.atob(encodedData);

How it works…

The btoa function takes a string and returns the base64 encoding of that string. It's a method of the window object and calls to native browser code. The atob function does the reverse, taking a string containing base64 and returning a string with the binary ...

Get JavaScript JSON Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.