Documentation
1
2
3
4
const base64 = btoa("hello")
console.log(base64)
const s = atob(base64)
console.log(s)