CharToStr
- Last UpdatedJul 18, 2023
- 1 minute read
Converts an ASCII code into a string.
Syntax
CharToStr(ASCIICode)
ASCIICode:
The ASCII code to convert.
Return Value
A string containing the converted ASCII code.
Related Functions
Example
str = CharToStr(65);
! Sets str to "A".