VBScript Chr Function

The Chr function converts the specified ANSI character code to a character."

Examples

Example 1

<%

response.write(Chr(65) & "<br />")
response.write(Chr(66) & "<br />")
response.write(Chr(67) & "<br />")
response.write(Chr(97) & "<br />")
response.write(Chr(98) & "<br />")
response.write(Chr(99) & "<br />")

%>

The output of the code above will be:

A
B
C
a
b
c

Example 2

<%

response.write(Chr(34) & "<br />")
response.write(Chr(35) & "<br />")
response.write(Chr(36) & "<br />")
response.write(Chr(37) & "<br />")

%>

The output of the code above will be:

"
#
$
%

❮ Complete VBScript Reference