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