Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Encodes a string as base64 string.
Deprecated aliases: base64_encodestring()
base64_encode_tostring(
string)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
string | string |
✔️ | The value to encode as a base64 string. |
Returns string encoded as a base64 string.
print Quine=base64_encode_tostring("Kusto")
Output
Quine |
---|
S3VzdG8= |
- To decode base64 strings to UTF-8 strings, see base64_decode_tostring().
- To decode base64 strings to an array of long values, see base64_decode_toarray().