Unicode en JavaScript
let unicode = \uXXXX //replace the XXXX with the unicode identifier
console.log(unicode)
Enchanting Eland
let unicode = \uXXXX //replace the XXXX with the unicode identifier
console.log(unicode)
"This string contains omega, that looks like this: \u03A9"
Unicode in Javascript source code :
var f\u006F\u006F = 'abc';
console.log(foo)
Unicode in Javascript strings :
var str = '\uD83D\uDC04';
console.log(str)