Base64 Encode / Decode

Free online Base64 decoder and encoder directly in browser. View instant results, no data sending or form submissions are required.

How does it work?

In Node.js the string conversions happen using the Buffer.from(string, encoding) method and specifying the encoding to be base64 if converting from base64 to utf8. In browser, however, we use btoa and atob to convert to base64 and vice-versa.

Resources

Buffer.from documentation
btoa on MDN

About Code with Node.js

This is a personal blog and reference point of a Node.js developer.

I write and explain how different Node and JavaScript aspects work, as well as research popular and cool packages, and of course fail time to time.