JavaScript String fromCodePoint() Method (original) (raw)

Last Updated : 16 Jul, 2024

JavaScript **String fromCodePoint() is an inbuilt method in JavaScript that is used to return a string or an element for the given sequence of code point values (ASCII value).

**Syntax:

String.fromCodePoint(a1, a2, a3, ....)

**Parameters:

**Return value:

It returns the corresponding string or elements for the given sequence of code point values.

**Example 1: This example shows the basic use of the String.fromCodePoint() Method in Javascript.

javascript `

let a = String.fromCodePoint(71, 70, 71); console.log(a);

`

**Example 2: This example shows the basic use of the String.fromCodePoint() Method in Javascript.

javascript `

// Taking some code point values let a = String.fromCodePoint(42); let b = String.fromCodePoint(65, 90); let c = String.fromCodePoint(66, 65, 102);

// Printing the corresponding elements of // the code point value. console.log(a); console.log(b); console.log(c);

`

**Example 3: This example shows the basic use of the String.fromCodePoint() Method in Javascript.

javascript `

// Taking some code point values let a = String.fromCodePoint(71, 101, 101, 107, 115);

// Printing the corresponding elements of // the code point value. console.log(a);

`

**Supported Browsers: