Takes a normal string as a parameter and converts it to a Base64-encoded string.
Commonly used when a target system, API, or connector requires Base64-encoded input — for example, encoding credentials for a Basic Auth header, embedding binary-safe text inside an XML/JSON payload, or preparing a value for a system that rejects raw special characters.
Example:
- Input:
Cleo123 - Output:
Q2xlbzEyMw==
See also: DecodeString to reverse the process.
Comments
0 comments
Please sign in to leave a comment.