Byte Array To String Function
- 已更新2025-07-30
- 閱讀時間為 1 分鐘
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 values you want to convert.
string
—
string is the result of interpreting each array element as an ASCII 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
—