programming-examples/asp/More_Code_Snippets/Get the character for a specified character code using the Chr function.asp

7 lines
219 B
Plaintext
Raw Normal View History

2019-11-18 14:25:58 +01:00
<%
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)
%>