1
2
3
4
5
6
// 浏览器端
let arr = [128, 28, 29, 102, 392]
btoa(String.fromCharCode.apply(null, arr))

// Node.js
Buffer.from("Hello World").toString('base64')