JavaScript String.fromCharCode()
Example
Convert a Unicode number into a character:
String.fromCharCode(65) // Returns "A"
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The String.fromCharCode() method converts Unicode values to 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
String.fromCharCode() is fully supported in all browsers:
| Chrome | IE | Edge | Firefox | Safari | Opera |
| Yes | 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:
String.fromCharCode(72, 69, 76, 76, 79);
Try it Yourself »

