References

String.fromCodePoint()

Leírás

Veszi egy kódpontsorozat számát, majd visszatér egy szimbólum jellel. Unicode - kódpont.

Szintaxis

String.fromCodePoint()
String.fromCodePoint(num1)
String.fromCodePoint(num1, num2)
String.fromCodePoint(num1, num2, /* …, */ numN)

Példa

console.log(String.fromCodePoint(9731, 9733, 9842, 0x2f804))
// Expected output: "☃★♲你"
 
console.log(String.fromCodePoint(42))
// Expected output: "*"
 
console.log(String.fromCodePoint(65, 90))
// Expected output: "AZ"
in this article
back to top