Encode and decode strings with base64 in JavaScript

Today we will show you how to encode and decode strings with base64 in JavaScript.

In this article, we will use the btoa() and atob() JavaScript methods to encode or decode string. Both functions are compatible with the modern web browser.

Encode and decode strings with base64 in JavaScript

  1. Encode string using btoa() method
  2. Decode string using atob() method

1. Encode string using btoa() method

Here, we will use the btoa() javascript method to encode a string. Look at the following code snippets.

2. Decode string using atob() method

Now, we will use the atob() javascript method to decode the encoded string. Check the following code to decode the above encoded string.

Note: It’s not a secure encryption method. Encoding a string to Base64 usually results in 33% longer output.

That’s it for today.
Thank you for reading. Happy Coding..!! 🙂

If you found value in this article,
you can support us by buying me a coffee! ☕

You may also like...

1 Response

  1. Steve says:

    Great work Clue Mediator! Keep posting such good articles.

Leave a Reply

Your email address will not be published. Required fields are marked *