.. highlightlang:: us .. _strcode: strcode ======= .. index:: strcode .. us.tag strcode ENGLISH STR Changed420 Changed500 :ref:`strcode` returns the code values (numbers) of the given string. .. function:: rvCode = strcode(ssString) .. us.return **Return Value** *rvCode* is a vector with code values (numbers). .. us.params **Parameters** .. uparam:: ssString *ssString* is a scalar string. .. us.example **Example** :: strcode("Hello") 72.0000 97.0000 108.0000 108.0000 111.0000 .. us.history **History** .. list-table:: :header-rows: 1 * - Version - Description * - 5.0.0 - The function can be used for Unicode strings. * - 4.2.0 - The function can be used for 8-bit clean strings (may contain 0-characters). .. seealso:: :ref:`overview-strings`, :ref:`strchar` :sub:`id-851535`