Decode Base64 to text
{ } EncodeDecode a Base64 string
$ echo "SGVsbG8gV29ybGQh" | base64-decode (input) => {
try {
return decodeURIComponent(escape(atob(input.trim())));
} catch (e) {
return `Error: ${e.message}`;
}
}