Language:
Русский
English
Char type
Variables of the ordinal type Char are used to store ASCII characters.
Character constants are written between single quotes, like this:
'A', '3', or '*'
The single quote character is written as two quotes within quotes, like this:
''''
The Chr function converts an Integer value into a character with the corresponding ASCII value.
The Ord function returns a character's ASCII value.