Icon Chr

Unit: Internal

Available In: Client and Server Applications

function Chr(Value: Integer): Char

The Chr function returns the character representation of the Unicode code point input parameter. The return value is a Char.

Examples

X := Chr(220);  // X is 'Ü'
Image