option explicit
sub main() ' {
dim charNo as integer
for charNo = asc("a") to asc("z")
debug.print "chr(" & charNo & ") = " & chr(charNo)
next charNo
end sub ' }
chrW(u) is similar to chr. However, it accepts the range 0 - 65535 as input parameter and produces a Unicode character.