Base64 decoding is to convert back the encoded data to original scheme.Base-64 encoding is a way of taking binary data and turning it into text so that it's more easily transmitted in things like e-mail and HTML form data. In technical terms Base64 encoding transforms any input into an encoding that only uses alphanumeric characters, +, / and the = as a padding character.
$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=='; echo base64_decode($str);
var str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=='; console.log(atob(str));
var str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=='; byte[] data = System.Convert.FromBase64String(str); var result = System.Text.ASCIIEncoding.ASCII.GetString(data);
You can easily decode Base64 encoded string using this online tool. To decode just enter encoded string into the textbox provided and press decode button.
You can also check similar Base64 Encode tool.