Icon Base64Encode

Unit: Internal

Available In: Client and Server Applications

function Base64Encode(const Value: String): String

The Base64Encode function base64-encodes the string input parameter. The return value is a String value.

Examples

Y := Base64Encode('Hello World');
X := Base64Decode(Y);  // X is 'Hello World'
Image