From http://www.w3schools.com (Copyright Refsnes Data)
Complete VBScript Reference
The Chr function converts the specified ANSI character code to a character.
Note: The numbers from 0 to 31 represents nonprintable ASCII codes, i.e. Chr(10) will return a linefeed character.
| Chr(charcode) |
| Parameter | Description |
|---|---|
| charcode | Required. A number that identifies a character |
|
document.write(Chr(65) & "<br />") document.write(Chr(97)) Output: A a |
|
document.write(Chr(37) & "<br />") document.write(Chr(45)) Output: % - |
|
document.write(Chr(50) & "<br />") document.write(Chr(35)) Output: 2 # |
Complete VBScript Reference
From http://www.w3schools.com (Copyright Refsnes Data)