JavaScript String fromCharCode() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript String fromCharCode() Method

Example

Convert a Unicode number into a character:

var res = String.fromCharCode(65);
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The fromCharCode() method converts Unicode values into characters.

Note: This is a static method of the String object, and the syntax is always String.fromCharCode().

Tip: For a list of all Unicode values, please study our Complete Unicode Reference.


Browser Support

Method
fromCharCode() Yes Yes Yes Yes Yes

Syntax

String.fromCharCode(n1, n2, ..., nX)

Parameter Values

Parameter Description
n1, n2, ..., nX Required. One or more Unicode values to be converted


Technical Details

Return Value: A String, representing the character(s) representing the specified unicode number(s)
JavaScript Version: ECMAScript 1

More Examples

Example

Convert a set of Unicode values into characters:

var res = String.fromCharCode(72, 69, 76, 76, 79);
Try it Yourself »