You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
219 B
Plaintext

<%
Dim intCharacter1 , intCharacter2
intCharacter1 = "86"
intCharacter2 = "64"
Response.Write "The character for 86 is " & Chr(intCharacter1)
Response.Write "The character for 64 is " & Chr(intCharacter2)
%>