Converts a string into an array of unsigned bytes.

Each byte in the array has the ASCII or UTF-8 value of the corresponding character in the string.


icon

Inputs/Outputs

  • cstr.png string

    string is the input string the function converts.

  • i1du8.png unsigned byte array

    unsigned byte array is the output array.

    The first byte in the array has the ASCII or UTF-8 value of the first character in string, the second byte has the second value, and so on.