From http://www.w3schools.com (Copyright Refsnes Data)
JavaScript String Object
The fromCharCode() method converts Unicode values to characters.
| String.fromCharCode(numX,numX,...,numX) |
| Parameter | Description |
|---|---|
| numX | Required. One or more Unicode values |
Note: This method is a static method of String - it is not used as a method of a String object that you have created. The syntax is always String.fromCharCode() and not myStringObject.fromCharCode().
ExampleConvert Unicode values to characters:
The output of the code above will be:
Try it yourself » |
JavaScript String Object
From http://www.w3schools.com (Copyright Refsnes Data)