let world = '\uD83C\uDF0E'
console.log(`hello ${world}`)
// > 'hello 馃寧'
let world = '\u{1F30E}'
console.log(`hello ${world}`)
// > 'hello 馃寧'
let a = 'ma帽ana'
let b = 'man虄ana'
a === b
// > false
// wat
a.normalize() === b.normalize()
// > true
let world = '\uD83C\uDF0E'
console.log(`hello ${world}`)
// > 'hello 馃寧'
let world = '\u{1F30E}'
console.log(`hello ${world}`)
// > 'hello 馃寧'
let a = 'ma帽ana'
let b = 'man虄ana'
a === b
// > false
// wat
a.normalize() === b.normalize()
// > true