function Chr (AsciiCode: Integer): Char;
Chr
returns a character whose ASCII code corresponds to the value
given by AsciiCode
.
Chr
is defined in ISO 7185 Pascal and supported
by all known Pascal variants.
program ChrDemo; var x: Integer; begin for x := 32 to 122 do Write (Chr (x)) end.