Function Name |
Base64 Decode | ||
Category |
String | ||
Icon |
![]() |
||
Description |
Decodes a Base64 encoded string into its binary form | ||
Inputs |
|
||
Outputs |
|
Used to decode a base64 encoded string into its binary form.
Base64 is a binary-to-text encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation.
A valid Base64 string contains the characters a-z, A-Z, 0-9, +, / and the end padding character =
If the string contains invalid characters or incorrectly terminated an error will be raised.
Typically used in conjunction with Text Decode or Hex Encode
This is a scalar function so the standard rules apply if multiple values are presented to one or more inputs.