fromCharCode

The fromCharCode method converts Unicode values into characters.

 

Syntax

System.String fromCharCode(System.Int32 n1, System.Int32 nX);

 

Parameters

n1

Unicode value to be converted.

nX

[Optional] Unicode value to be converted.

 

Return Value

Returns the representing the character(s) representing the specified Unicode number(s).

 

Remarks

Member of string.

 

Example