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