Whatever message this page gives is out now! Go check it out!
Chr(number)Parameter | Description |
number | A value (a number in the range 0 - 65535, inclusive) |
<cfscript>
x = chr(0500);
writeOutput('character: #x#');
x = asc(x);
writeOutput('<br>Unicode value: #x#');
</cfscript>