|
Chr(33) = ! Chr(34) = " Chr(35) = # Chr(36) = $ Chr(37) = % Chr(38) = & Chr(39) = ' Chr(40) = ( Chr(41) = ) Chr(42) = * Chr(43) = + Chr(44) = , Chr(47) = / Chr(58) = : Chr(59) = ; Chr(60) = < Chr(61) = = Chr(62) = > Chr(63) = ? Chr(91) = [ Chr(92) = \ Chr(93) = ] Chr(94) = ^ Chr(96) = ` Chr(123) = { |
Special Character CodesHere is the code I used to generate the numbers, in case you're interested (and also because this page looked really awful with just the column of character codes! LOL)
<%
For i = 33 to 44
response.write "Chr(" & i & ") = " & Chr(i) & "<br>"
Next
response.write "Chr(47) = " & Chr(47) & "
|