Returns the character with ascii number N.
$chr(N)
echo -a $chr(65)
This example would return the character with the ASCII-code 65. That is an 'A'.
$asc returns the ascii number of a character.