Chr(CharCode: Integer): Char;
CharCode. Character code.
The Chr property returns the character, ASCII code of which is passed as the input parameter.
To get the character, which ASCII code is greater than 127, pass the character code in Unicode encoding to the CharCode parameter.
Sub UserProc;
Var
s: String;
Begin
s := Char.Chr(100);
End Sub UserProc;
After executing the example the "s" variable contains the character, which ASCII code is 100.
See also: