Cicode Programming Reference > Cicode Function Categories > String Functions Introduction > CharToStr

CharToStr

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

StrSetChar

Example

str = CharToStr(65);
! Sets str to "A".

See Also

String Functions