| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Convert byte value to character value
Source position: systemh.inc line 1121
| function chr( | 
| b: Byte | 
| ):Char; | 
Chr returns the character which has ASCII value X.
Historical note:
Originally, Pascal did not have typecasts and chr was a necessary function in order to do certain operations on ASCII values of characters. With the arrival of typecasting a generic approach became possible, making chr mostly obselete. However, chr is not considered deprecated and remains in wide use today.
None.
| 
 | Return ordinal value of an ordinal type. | |
| 
 | Convert a numerical or enumeration value to a string. | 
Program Example8; { Program to demonstrate the Chr function. } begin Write (chr(10),chr(13)); { The same effect as Writeln; } end.