A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://webplatform.github.io/docs/javascript/String/fromCharCode below:

fromCharCode ยท WebPlatform Docs

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);


See also Other articles Attributions

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4