string.toBase64()

Calculates the Base64 representation of a string or binary object. The Base64 format uses printable characters, allowing binary data to be sent in forms and e-mail, and stored in a database or file.

string.toBase64( encoding=string )

Returns: String

Argument Description
encoding
string, optional

For a string, defines how characters are represented in a byte array.

Examples

res = "I love Lucee";
	writeDump(res.toBase64()); // SSBsb3ZlIEx1Y2Vl
<span class="nf">writeDump</span><span class="p">(</span><span class="s2">&quot;ToBase64&quot;</span><span class="p">.</span><span class="nf">toBase64</span><span class="p">());</span> <span class="c">// VG9CYXNlNjQ=</span>

See also