Languages
[Edit]
EN

JavaScript - convert string to Base64

0 points
Created by:
Aleena
694

In this article, we would like to show you how to convert string to Base64 in JavaScript.

Quick solution:

// ONLINE-RUNNER:browser;

const text = 'some text...';

const encoded = btoa(text);
console.log('Encoded text: ' + encoded);  // c29tZSB0ZXh0Li4u

Note:

Use btoa() method to convert the string to Base64.

Related posts

References

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join