[[Unicode]]の[[コードポイント]]を[[Unicode絵文字]]に変換する方法。[[String.fromCodePoint]]を使う。 ```js const unicode = "1F605"; const emoji = String.fromCodePoint(parseInt(unicode, 16)); console.log(emoji); // 😆 ```