JSFiddle - React, Tailwind, and code Playground
by Imri Paloja
JavaScript
const encoded = btoa("Hello world");
console.log(encoded); // SGVsbG8gd29ybGQ=
const decoded = atob(encoded);
console.log(decoded); // Hello world
by Imri Paloja
const encoded = btoa("Hello world");
console.log(encoded); // SGVsbG8gd29ybGQ=
const decoded = atob(encoded);
console.log(decoded); // Hello world