NCHAR

Description

Returns the UNICODE character of an integer sent as a parameter (NCHAR in Transact-SQL).

Sample Source Pattern

Syntax

NCHAR( expression )

Arguments

expression: Integer expression.

Return Type

String value, it depends on the input received.

Examples

SELECT NCHAR(170);

The equivalence for this function in JavaScript is documented in CHAR.

Last updated