Executing the following statements in the Command window demonstrates the relation between ASC( ) and CHR( ):

? asc( "A" ) // 65

? chr( asc( "A" ) + 32 ) // "a"

? asc( chr( asc( "A" ) + 32 ) ) // 97