Base64Decode
Base64‑decodes a string.
Syntax
Base64Decode(<value>) As String
Parameters
<value>
Type: String
A Base64‑encoded string that needs to be decoded.
(return)
Type: String
Returns the Base64‑decoded Value string.
For more information, see
Encrypt.
Example
Dim Base64
Base64 = Base64Encode("Hello World")
Debug.Log(Base64)
Debug.Log(Base64Decode(base64))
See also