The Base64EncodeW method encodes a Unicode string to Base64. The method returns a string.

See also The Base64Decode method.

Method call syntax:

function Base64EncodeW (data_in: String): String

Method arguments:

  1. data_in – required argument. Sets a string to be encoded.

Example. Encode a Unicode string to Base64 then decode and put to the debug log.

var test = Base64EncodeW("test comment");
var res = Base64Decode(test, true); // decode from Base64 to Unicode; if false, then 0 returned
DebugLogString("--->"+res); // the debug log shall say: "test comment"