跳到主要内容

base64

通过 atob 和 btoa 的 Base64 编码

:::details 点击查看代码

function utf8_to_base64(str) {
return window.btoa(unescape(encodeURIComponent(str)));
}
function base64_to_utf8(str) {
return decodeURIComponent(escape(window.atob(str)));
}

console.log(utf8_to_base64('问问问'));
console.log(base64_to_utf8('6Zeu6Zeu6Zeu'));

:::