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