Decode64 Function
SyntaxGroupDecode64[$](Data) -or- Decode64B(Data)
MiscellaneousDescription
Return a string using the base 64 decoding algorithm.
Decode64B returns a Byte array.
See Also
Parameters Description Data Return this string's base 64 decoding.
Encode64
Sub Main Debug.Print Decode64("SGVsbG8gV29ybGQhIQ==") '"Hello World!!" End Sub