This Base64 decoder is a free tool for decoding Base64 to text or binary. Base64 decoding is used when binary data is shipped across a network, because some protocols may interpret data as control character or data can be corrupted when the protocol interpret data as special character combination. So, when data is transferred thru a protocol it's better if you encode data before transmitting and decode it after receiving.
public static byte[] FromBase64String(string s)
dojox.encoding.base64.decode (data);
func (enc *Encoding) DecodeString (s string) ([]byte, error)
public static byte[] decode(java.lang.String data)
atob(data)
base64 -d FILE
FROM_BASE64 (data)
decode_base64($string);
string base64_decode (string $data [, bool $strict = false ]);
decode(string text, type text)
base64.b64decode(s[, altchars])
Base64.decode64 (data)
Public Shared Function FromBase64String (s As String) As Byte()