Retrieve the character corresponding to the ASCII code 65.
SELECT Chr(65) AS CodeToCharacter; |
The Chr() function retrieves the character associated with a specified ASCII numeric code.
Chr(code) |
Parameter |
Description |
code |
Mandatory. Specifies the ASCII numeric code for which the corresponding character is returned. |
Works in: |
From Access 2000 |