let world = '\uD83C\uDF0E'
console.log(`hello ${world}`)
// > 'hello 🌎'
let world = '\u{1F30E}'
console.log(`hello ${world}`)
// > 'hello 🌎'
let a = 'mañana'
let b = 'mañ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 = 'mañana'
a === b
// > false
// wat
a.normalize() === b.normalize()
// > true