Choose where you’d like to start

Base 64 Decode

Description

The zoho.encryption.base64Decode task is used to decode text that is encoded in base 64 format

Syntax

<response> = zoho.encryption.base64Decode(<encoded_text>);

where,

ParamsData typeDescription

<response>

TEXT

Specifies the response that represents the decoded text

<encoded_text>

TEXT

Specifies the base 64 encoded text that needs to be decoded

Example

The following script decodes the base 64 encoded text - am9obkB6eWxrZXIuY29t and returns the original text - john@zylker.com.

response = zoho.encryption.base64Decode("am9obkB6eWxrZXIuY29t");

where:

response
The TEXT response that represents the base 64 encoded text.
"am9obkB6eWxrZXIuY29t"
The TEXT that represents the base 64 encoded text that needs to be decoded

Related Links

Get Started Now

Execute