Microsoft® JScript™
fromCharCode Method
 Language Reference 
Version 3 

See Also                  Applies To


Description
Creates a string from a number of Unicode character values.
Syntax
String.fromCharCode(code1, code2, ..., coden)

The code argument is the series of Unicode character values to convert into a string.

Remarks
A String object need not be created before calling fromCharCode.

The following example returns the string "plain":

test = String.fromCharCode(112, 108, 97, 105, 110);

© 1997 by Microsoft Corporation. All rights reserved.