The encode table to use, either defaultEncodeTable (the default) or urlSafeEncodeTable, or one's own encode table.
what is to be encoded
Whether or not to pad the output - default to true
mstring myEncodedString = encode(cast(ubyte[])"Hello, how are you today?"); Stdout(myEncodedString).newline; // SGVsbG8sIGhvdyBhcmUgeW91IHRvZGF5Pw==
Encodes data and returns as an ASCII base64 string