Developer Documentation Library > Scripting > UNICOM Intelligence Function Library > Miscellaneous functions > Base64Decode
 
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
Base64Encode
Encrypt
Decrypt
Miscellaneous functions