programming-examples/asp/More_Code_Snippets/This simple piece of code will display all of the character.asp

5 lines
89 B
Plaintext
Raw Permalink Normal View History

2019-11-18 14:25:58 +01:00
<%
For i = 33 to 255
response.write "Chr(" & i & ") = " & Chr(i) & "<br>"
Next
%>