This page explains how to use the unicode_codepoints_to_string function in APL.
unicode_codepoints_to_string
function to convert an array of Unicode code points into a UTF-8 encoded string. This function is helpful when your data represents characters as numeric values—such as integer arrays from encodings, logs, or telemetry fields—and you want to decode them into readable text.
You can use unicode_codepoints_to_string
to reconstruct log messages, parse encoded payloads, or normalize fragmented character sequences for visualization, comparison, or filtering.
Splunk SPL users
ANSI SQL users
Name | Type | Description |
---|---|---|
array | dynamic | An array of integers representing Unicode code points. |
unicode_codepoints_to_string
to decode those sequences.Query_time | decoded_method |
---|---|
2025-07-29T14:12:00Z | HTTP |
[72, 84, 84, 80]
into the string 'HTTP'
.unicode_codepoints_from_string
when decoding or inspecting URL paths.