This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

fromCharCode

Summary

Returns a string from a number of Unicode character values.

Syntax

String.fromCharCode([ code1 [, code2 [, ...[, codeN ]]]])
String
Required. The String object.
code1 , . . . , codeN
Optional. A series of Unicode character values to convert to a string. If no arguments are supplied, the result is the empty string.

Examples

You call this function on the String object rather than on a string instance.

The following example shows how to use this method:

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

// Output: plain

See also

Other articles

Attributions

  • Microsoft Developer Network: Article