Liquid Studio Documentation
Data Mapping / Data Mapper Functions / By Category / String / Base64 Decode
In This Topic
    Base64 Decode
    In This Topic

    Function Name
    Base64 Decode
    Category
    String
    Icon
    Left
    Description
    Decodes a Base64 encoded string into its binary form
    Inputs
    String The base64 string to be decoded
    Outputs
    Data The binary data that represents the base64 encoded string.

    Usage

    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.

    See Also