Converts a numeric value to a UCS-2 character.
chr(number)
returns string
Name | Type | Required | Default | Description |
---|---|---|---|---|
number | numeric | Yes | The UCS-2 code value (a number in the range 0 - 65535) |
x = chr( 8361 );
writeOutput( 'character: #x#' );
x = asc( x );
writeOutput( '<br>Unicode value: #x#');