Understanding Unicode Strings
Caution
Unicode code point escape codes are an ES6 feature. Some browsers still in use, such as Internet Explorer 11 and below, or Safari 7 and below, do not support this feature. Check out http://kangax.github.io/es5-compat-table/es6/ for the current compatibility charts.
Problem
You want to have a better understanding of Unicode strings.
Solution
JavaScript uses the Unicode standard of encoding characters. In JavaScript Unicode, character points can be manually expressed using the \uXXXX (Unicode code unit format) ...