EN
Node.js - convert base64 to string
0 points
In this article, we would like to show you how to convert Base64 to string under Node.js.
xxxxxxxxxx
1
const encoded = 'c29tZSB0ZXh0Li4u';
2
const decoded = Buffer.from(encoded, 'base64').toString('utf8');
3
4
console.log('Decoded text: ' + decoded); // some text...
Output:
xxxxxxxxxx
1
some text...