Skip to content Skip to sidebar Skip to footer

Can You Use String.fromcodepoint Just Like String.fromcharcode

I'm still learning JavaScript and practicing with getting input from a keyboard. I just learned about String.fromCodePoint and it seems (to me) to pick up everything that String.f

Solution 1:

fromCharCode is not obsolete yet, but it would be if it would be supported by all Browsers. However fromCharCode is about twice as fast as fromCodePoint

  • String.fromCodePoint() Not supported by Internet Explorer and Safari

  • String.fromCharCode() Supported since for ever, double as fast

  • The difference:

    Although most common Unicode values can be represented with one 16-bit number (as expected early on during JavaScript standardization) and fromCharCode() can be used to return a single character for the most common values (i.e., UCS-2 values which are the subset of UTF-16 with the most common characters), in order to deal with ALL legal Unicode values (up to 21 bits), fromCharCode() alone is inadequate. Since the higher code point characters use two (lower value) "surrogate" numbers to form a single character, String.fromCodePoint() (part of the ES6 draft) can be used to return such a pair and thus adequately represent these higher valued characters.

Solution 2:

String.fromCharCode is supported on all browsers: enter image description here

String.fromCodePoint has limited browser support: enter image description here

Solution 3:

String.fromCodePoint is not widely supported, in fact it's not supported at all in Internet Explorer and Safari, and only in Chrome 41 and up, and Firefox 29 and up.

This doesn't mean it's obsolete, it means it's a new method, only first defined in ES2015. It also means that browser support will get better in time, as browsers implement all the new features in the 6th edition of ECMAScript.

For now, it's not very suitable for production use if you need to support all current browsers, but there is a polyfill available on MDN if you really need to have this method available in all browsers.

Post a Comment for "Can You Use String.fromcodepoint Just Like String.fromcharcode"