August 2003
Intermediate to advanced
1140 pages
68h 45m
English
Chr
Chr(number)Returns the character equivalent of the ASCII character code. The following example generates a chart of all the printable ASCII characters:
<table border="1">
<tr><th>Character</th><th>ASCII Code</th>/tr>
<cfloop index="Character" from="33" to="255">
<cfoutput>
<tr><td>#Chr(Character)#</td><td>#Asc(Chr(Character))#</td></tr>
</cfoutput>
</cfloop>
</table>