This page explains how to use the unicode_codepoints_from_string function in APL.
unicode_codepoints_from_string
function in APL to convert a UTF-8 string into an array of Unicode code points. This function is useful when you want to analyze or transform strings at the character encoding level, especially in multilingual datasets, log inspection, or byte-level debugging.
You can use this function to detect non-printable or non-ASCII characters, analyze internationalized content, or perform detailed comparisons between strings that look visually similar but differ in underlying code points.
Splunk SPL users
eval
expressions with ord
or custom logic, which can be verbose. APL offers a built-in function for this, making it concise and efficient.ANSI SQL users
Name | Type | Description |
---|---|---|
source | string | The input UTF-8 string to convert. |
_time | uri | codepoints |
---|---|---|
2025-07-27T12:00:00Z | /api/v1/textdata/background/change£ | 163 |
unicode_codepoints_from_string
when decoding or inspecting URL paths.