// In Javascript, the identifiers and string literals can be expressed in Unicode via a Unicode escape sequence. The general syntax is uXXXX , where X denotes four hexadecimal digits. // For example, the letter o is denoted as
// 'u006F' in Unicode.
"This string contains omega, that looks like this: u03A9"
Unicode in Javascript source code :
var fu006Fu006F = 'abc';
console.log(foo)
Unicode in Javascript strings :
var str = 'uD83DuDC04';
console.log(str)
let unicode = uXXXX //replace the XXXX with the unicode identifier
console.log(unicode)