Last updated: August 26, 2026.
The Chr function returns the character associated with a numeric character code.
Syntax
Chr(charcode)| Argument | Description |
|---|---|
charcode | Numeric character code |
Examples
Chr(65) ' A
Chr(13) & Chr(10) ' Windows line break
TabText: "A" & Chr(9) & "B"Chr uses the current code page for values from 0 through 255. Use ChrW when a Unicode code unit is required.
See Microsoft’s Access function reference for related expression functions.