Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » SQL Functions » Alphabetical list of functions

MONTHS function [Date and time] Next Page

NCHAR function [String]


Returns an NCHAR string containing one character whose Unicode code point is given in the parameter, or NULL if the value is not a valid code point value.

Syntax

NCHAR( integer )

Parameters

integer    The number to be converted to the corresponding Unicode code point.

See also
Standards and compatibility
Example

The following example returns the ALEF Arabic letter, which is Unicode code point U+627:

SELECT NCHAR( 1575 );