JavaScript String fromCharCode() Method

Clash Royale CLAN TAG#URR8PPP
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
JavaScript String fromCharCode() Method
❮
Reference
❯
<!--
❮ JavaScript String Reference
-->Example
Convert a Unicode number into a character:
var res = String.fromCharCode(65);
<!--
The result of res will be:
A
-->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 |
<!--
mid_content, all: [300,250][336,280][728,90][970,250][970,90][320,50][468,60]-->
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);
<!--
The result of res will be:
HELLO
-->Try it Yourself »
❮
Reference
❯
<!--
❮ JavaScript String Reference
-->