Byte Array To String Function
- Updated2026-06-02
- 1 minute(s) read
Converts an array of unsigned bytes representing ASCII characters into a string.

Inputs/Outputs
unsigned byte array
—
unsigned byte array is the array of ASCII or UTF-8 values you want to convert. Right-click the function and select either System Encoding or UTF-8 Encoding under the Representation menu to select which type of values are output.
string
—
string is the result of interpreting each array element as an ASCII or UTF-8 value and forming a string out of the corresponding characters. Refer to ASCII Codes for the numbers that correspond to each character. |
unsigned byte array
—
string
—