JSFiddle - React, Tailwind, and code Playground

by Pradeep Shankar

JavaScript

function utf8_to_b64( str ) {
    return window.btoa(encodeURIComponent( str ));
}

function b64_to_utf8( str ) {
    return decodeURIComponent(window.atob( str ));
}


console.log(utf8_to_b64('✓ à la mode'));
console.log(b64_to_utf8("JUUyJTlDJTkzJTIwJUMzJUEwJTIwbGElMjBtb2Rl"));