LoginSignup
5
5

More than 5 years have passed since last update.

絵文字(emoji ZWJ Sequences)をJavascriptで操作する

Last updated at Posted at 2016-08-27

emoji ZWJ Sequences

複数の絵文字を一つの絵文字として表示する Emoji ZWJ Sequences というものがあります。Emoji ZWJ Sequences は構成している絵文字を操作出来ます。

Chromeのコンソールからのコピペです

/* 通常の絵文字 */
[...'‍💏']
// -> ["‍", "💏"]

/* emoji ZWJ Sequences */ 
[...'‍👩‍❤️‍💋‍👨']
// -> ["‍", "👩", "‍", "❤", "️", "‍", "💋", "‍", "👨"]
'‍👩‍❤️‍💋‍👨'.replace('👩', '👨')
// -> "‍👨‍❤️‍💋‍👨"
'‍👨' + '🏿'
// -> "‍👨🏿"
'‍👨🏿' - '🏿'
// -> NaN 引くことは出来なかった...

参考

5
5
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5