From 9151332203a7bf6b397c61220b1151df1ee502dd Mon Sep 17 00:00:00 2001 From: Helmi Akermi <70575401+hakermi@users.noreply.github.com> Date: Mon, 2 Jun 2025 16:08:33 +0100 Subject: [PATCH] feat: Implement a custom common emojiPicker - MEED-9135 - Meeds-io/MPIs#164 (#4871) Implement a custom common emojiPicker to be used a cross the platform --- crowdin.yml | 9 + .../locale/portlet/EmojiPicker_en.properties | 12 + .../locale/portlet/EmojiPicker_fr.properties | 12 + .../main/webapp/WEB-INF/gatein-resources.xml | 24 + .../emoji-picker/components/EmojiPicker.vue | 104 + .../components/EmojiPickerButton.vue | 64 + .../components/view/EmojiPickerList.vue | 251 + .../view/EmojiPickerListCategory.vue | 69 + .../view/EmojiPickerQuickEmojis.vue | 64 + .../vue-apps/emoji-picker/initComponents.js | 37 + .../vue-apps/emoji-picker/js/emojiBank.js | 32796 ++++++++++++++++ .../main/webapp/vue-apps/emoji-picker/main.js | 43 + .../drawers/DropdownListOptionItemValue.vue | 12 +- webapp/webpack.common.js | 1 + 14 files changed, 33492 insertions(+), 6 deletions(-) create mode 100644 webapp/src/main/resources/locale/portlet/EmojiPicker_en.properties create mode 100644 webapp/src/main/resources/locale/portlet/EmojiPicker_fr.properties create mode 100644 webapp/src/main/webapp/vue-apps/emoji-picker/components/EmojiPicker.vue create mode 100644 webapp/src/main/webapp/vue-apps/emoji-picker/components/EmojiPickerButton.vue create mode 100644 webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerList.vue create mode 100644 webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerListCategory.vue create mode 100644 webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerQuickEmojis.vue create mode 100644 webapp/src/main/webapp/vue-apps/emoji-picker/initComponents.js create mode 100644 webapp/src/main/webapp/vue-apps/emoji-picker/js/emojiBank.js create mode 100644 webapp/src/main/webapp/vue-apps/emoji-picker/main.js diff --git a/crowdin.yml b/crowdin.yml index 844e2a4c01c..c83207af39a 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -352,4 +352,13 @@ files: [ "escape_special_characters": 0, "escape_quotes": 0, }, + { + "source": "/webapp/src/main/resources/locale/portlet/EmojiPicker_en.properties", + "translation": "%original_path%/%file_name%!_%locale_with_underscore%.%file_extension%", + "translation_replace": { YML_CROWDIN_LANGUAGES_ARG }, + "dest": "hub/social/webapp/EmojiPicker.properties", + "update_option": "update_as_unapproved", + "escape_special_characters": 0, + "escape_quotes": 0, + } ] diff --git a/webapp/src/main/resources/locale/portlet/EmojiPicker_en.properties b/webapp/src/main/resources/locale/portlet/EmojiPicker_en.properties new file mode 100644 index 00000000000..009b423c7b2 --- /dev/null +++ b/webapp/src/main/resources/locale/portlet/EmojiPicker_en.properties @@ -0,0 +1,12 @@ +emojiPicker.search.label=Search emojis... +emojiPicker.category.recent.label=Frequently Used +emojiPicker.category.smileys-emotion.label=Smileys & Emotion +emojiPicker.category.people-body.label=People & Body +emojiPicker.category.animals-nature.label=Animals & Nature +emojiPicker.category.food-drink.label=Food & Drink +emojiPicker.category.activities.label=Activities +emojiPicker.category.travel-places.label=Travel & Places +emojiPicker.category.objects.label=Objects +emojiPicker.category.symbols.label=Symbols +emojiPicker.category.flags.label=Flags +emojiPicker.category.extras-unicode.label=Unicode Extras diff --git a/webapp/src/main/resources/locale/portlet/EmojiPicker_fr.properties b/webapp/src/main/resources/locale/portlet/EmojiPicker_fr.properties new file mode 100644 index 00000000000..497ff400028 --- /dev/null +++ b/webapp/src/main/resources/locale/portlet/EmojiPicker_fr.properties @@ -0,0 +1,12 @@ +emojiPicker.search.label=Rechercher des \u00e9mojis... +emojiPicker.category.recent.label=Utilis\u00e9s fr\u00e9quemment +emojiPicker.category.smileys-emotion.label=Smileys et \u00e9motions +emojiPicker.category.people-body.label=Personnes et corps +emojiPicker.category.animals-nature.label=Animaux et nature +emojiPicker.category.food-drink.label=Nourriture et boissons +emojiPicker.category.activities.label=Activit\u00e9s +emojiPicker.category.travel-places.label=Voyages et lieux +emojiPicker.category.objects.label=Objets +emojiPicker.category.symbols.label=Symboles +emojiPicker.category.flags.label=Drapeaux +emojiPicker.category.extras-unicode.label=Extras Unicode diff --git a/webapp/src/main/webapp/WEB-INF/gatein-resources.xml b/webapp/src/main/webapp/WEB-INF/gatein-resources.xml index cebb44e6226..7a1730440b5 100644 --- a/webapp/src/main/webapp/WEB-INF/gatein-resources.xml +++ b/webapp/src/main/webapp/WEB-INF/gatein-resources.xml @@ -3180,4 +3180,28 @@ + + emojiPicker + emojisGRP + + + vue + + + vuetify + + + eXoVueI18n + + + commonVueComponents + + + extensionRegistry + + + diff --git a/webapp/src/main/webapp/vue-apps/emoji-picker/components/EmojiPicker.vue b/webapp/src/main/webapp/vue-apps/emoji-picker/components/EmojiPicker.vue new file mode 100644 index 00000000000..b9f33fb04cc --- /dev/null +++ b/webapp/src/main/webapp/vue-apps/emoji-picker/components/EmojiPicker.vue @@ -0,0 +1,104 @@ + + + + + diff --git a/webapp/src/main/webapp/vue-apps/emoji-picker/components/EmojiPickerButton.vue b/webapp/src/main/webapp/vue-apps/emoji-picker/components/EmojiPickerButton.vue new file mode 100644 index 00000000000..ff11f1e340c --- /dev/null +++ b/webapp/src/main/webapp/vue-apps/emoji-picker/components/EmojiPickerButton.vue @@ -0,0 +1,64 @@ + + + + + diff --git a/webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerList.vue b/webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerList.vue new file mode 100644 index 00000000000..7fcbfa4fb4e --- /dev/null +++ b/webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerList.vue @@ -0,0 +1,251 @@ + + + + + diff --git a/webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerListCategory.vue b/webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerListCategory.vue new file mode 100644 index 00000000000..32d72dc9879 --- /dev/null +++ b/webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerListCategory.vue @@ -0,0 +1,69 @@ + + + + + diff --git a/webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerQuickEmojis.vue b/webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerQuickEmojis.vue new file mode 100644 index 00000000000..a75d229d238 --- /dev/null +++ b/webapp/src/main/webapp/vue-apps/emoji-picker/components/view/EmojiPickerQuickEmojis.vue @@ -0,0 +1,64 @@ + + + + + diff --git a/webapp/src/main/webapp/vue-apps/emoji-picker/initComponents.js b/webapp/src/main/webapp/vue-apps/emoji-picker/initComponents.js new file mode 100644 index 00000000000..6dfab7da611 --- /dev/null +++ b/webapp/src/main/webapp/vue-apps/emoji-picker/initComponents.js @@ -0,0 +1,37 @@ +/* + * This file is part of the Meeds project (https://meeds.io/). + * + * Copyright (C) 2025 Meeds Association contact@meeds.io + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +import EmojiPicker from './components/EmojiPicker.vue'; +import EmojiPickerButton from './components/EmojiPickerButton.vue'; +import EmojiPickerQuickEmojis from './components/view/EmojiPickerQuickEmojis.vue'; +import EmojiPickerList from './components/view/EmojiPickerList.vue'; +import EmojiPickerListCategory from './components/view/EmojiPickerListCategory.vue'; + +const components = { + 'emoji-picker': EmojiPicker, + 'emoji-picker-button': EmojiPickerButton, + 'emoji-picker-quick-emojis': EmojiPickerQuickEmojis, + 'emoji-picker-list': EmojiPickerList, + 'emoji-picker-list-category': EmojiPickerListCategory +}; + +for (const key in components) { + Vue.component(key, components[key]); +} diff --git a/webapp/src/main/webapp/vue-apps/emoji-picker/js/emojiBank.js b/webapp/src/main/webapp/vue-apps/emoji-picker/js/emojiBank.js new file mode 100644 index 00000000000..471a7651ce9 --- /dev/null +++ b/webapp/src/main/webapp/vue-apps/emoji-picker/js/emojiBank.js @@ -0,0 +1,32796 @@ +/* + This file is part of the Meeds project (https://meeds.io/). + + Copyright (C) 2025 Meeds Association contact@meeds.io + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 3 of the License, or (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +export const emojiBank = { + 'quickEmojis': [ + { + 'name': 'thumbs up', + 'unicode': '1F44D', + 'emoji': '๐Ÿ‘', + 'data': '👍', + 'tags': [ + '+1', + 'good', + 'hand', + 'like', + 'thumb', + 'up', + 'yes' + ], + 'shortcodes': [ + ':thumbs_up:' + ] + }, + { + 'name': 'red heart', + 'unicode': '2764-FE0F', + 'emoji': 'โค๏ธ', + 'data': '❤️', + 'tags': [ + 'emotion', + 'heart', + 'love', + 'red' + ], + 'shortcodes': [ + ':red_heart:' + ] + }, + { + 'name': 'grinning face with sweat', + 'unicode': '1F605', + 'emoji': '๐Ÿ˜…', + 'data': '😅', + 'tags': [ + 'cold', + 'dejected', + 'excited', + 'face', + 'grinning', + 'mouth', + 'nervous', + 'open', + 'smile', + 'smiling', + 'stress', + 'stressed', + 'sweat' + ], + 'shortcodes': [ + ':grinning_face_with_sweat:' + ] + }, + { + 'name': 'face exhaling', + 'unicode': '1F62E-200D-1F4A8', + 'emoji': '๐Ÿ˜ฎโ€๐Ÿ’จ', + 'data': '😮-200D-1F4A8;', + 'tags': [ + 'blow', + 'blowing', + 'exhale', + 'exhaling', + 'exhausted', + 'face', + 'gasp', + 'groan', + 'relief', + 'sigh', + 'smiley', + 'smoke', + 'whisper', + 'whistle' + ], + 'shortcodes': [ + ':face_exhaling:' + ] + }, + { + 'name': 'crying face', + 'unicode': '1F622', + 'emoji': '๐Ÿ˜ข', + 'data': '😢', + 'tags': [ + 'awful', + 'cry', + 'crying', + 'face', + 'feels', + 'miss', + 'sad', + 'tear', + 'triste', + 'unhappy' + ], + 'shortcodes': [ + ':crying_face:' + ] + } + ], + 'categories': [ + { + 'name': 'smileys-emotion', + 'iconClass': 'far fa-laugh', + 'emojis': [ + { + 'name': 'grinning face', + 'unicode': '1F600', + 'emoji': '๐Ÿ˜€', + 'data': '😀', + 'tags': [ + 'cheerful', + 'cheery', + 'face', + 'grin', + 'grinning', + 'happy', + 'laugh', + 'nice', + 'smile', + 'smiling', + 'teeth' + ], + 'shortcodes': [ + ':grinning_face:' + ] + }, + { + 'name': 'grinning face with big eyes', + 'unicode': '1F603', + 'emoji': '๐Ÿ˜ƒ', + 'data': '😃', + 'tags': [ + 'awesome', + 'big', + 'eyes', + 'face', + 'grin', + 'grinning', + 'happy', + 'mouth', + 'open', + 'smile', + 'smiling', + 'teeth', + 'yay' + ], + 'shortcodes': [ + ':grinning_face_with_big_eyes:' + ] + }, + { + 'name': 'grinning face with smiling eyes', + 'unicode': '1F604', + 'emoji': '๐Ÿ˜„', + 'data': '😄', + 'tags': [ + 'eye', + 'eyes', + 'face', + 'grin', + 'grinning', + 'happy', + 'laugh', + 'lol', + 'mouth', + 'open', + 'smile', + 'smiling' + ], + 'shortcodes': [ + ':grinning_face_with_smiling_eyes:' + ] + }, + { + 'name': 'beaming face with smiling eyes', + 'unicode': '1F601', + 'emoji': '๐Ÿ˜', + 'data': '😁', + 'tags': [ + 'beaming', + 'eye', + 'eyes', + 'face', + 'grin', + 'grinning', + 'happy', + 'nice', + 'smile', + 'smiling', + 'teeth' + ], + 'shortcodes': [ + ':beaming_face_with_smiling_eyes:' + ] + }, + { + 'name': 'grinning squinting face', + 'unicode': '1F606', + 'emoji': '๐Ÿ˜†', + 'data': '😆', + 'tags': [ + 'closed', + 'eyes', + 'face', + 'grinning', + 'haha', + 'hahaha', + 'happy', + 'laugh', + 'lol', + 'mouth', + 'open', + 'rofl', + 'smile', + 'smiling', + 'squinting' + ], + 'shortcodes': [ + ':grinning_squinting_face:' + ] + }, + { + 'name': 'grinning face with sweat', + 'unicode': '1F605', + 'emoji': '๐Ÿ˜…', + 'data': '😅', + 'tags': [ + 'cold', + 'dejected', + 'excited', + 'face', + 'grinning', + 'mouth', + 'nervous', + 'open', + 'smile', + 'smiling', + 'stress', + 'stressed', + 'sweat' + ], + 'shortcodes': [ + ':grinning_face_with_sweat:' + ] + }, + { + 'name': 'rolling on the floor laughing', + 'unicode': '1F923', + 'emoji': '๐Ÿคฃ', + 'data': '🤣', + 'tags': [ + 'crying', + 'face', + 'floor', + 'funny', + 'haha', + 'happy', + 'hehe', + 'hilarious', + 'joy', + 'laugh', + 'lmao', + 'lol', + 'rofl', + 'roflmao', + 'rolling', + 'tear' + ], + 'shortcodes': [ + ':rolling_on_the_floor_laughing:' + ] + }, + { + 'name': 'face with tears of joy', + 'unicode': '1F602', + 'emoji': '๐Ÿ˜‚', + 'data': '😂', + 'tags': [ + 'crying', + 'face', + 'feels', + 'funny', + 'haha', + 'happy', + 'hehe', + 'hilarious', + 'joy', + 'laugh', + 'lmao', + 'lol', + 'rofl', + 'roflmao', + 'tear' + ], + 'shortcodes': [ + ':face_with_tears_of_joy:' + ] + }, + { + 'name': 'slightly smiling face', + 'unicode': '1F642', + 'emoji': '๐Ÿ™‚', + 'data': '🙂', + 'tags': [ + 'face', + 'happy', + 'slightly', + 'smile', + 'smiling' + ], + 'shortcodes': [ + ':slightly_smiling_face:' + ] + }, + { + 'name': 'upside-down face', + 'unicode': '1F643', + 'emoji': '๐Ÿ™ƒ', + 'data': '🙃', + 'tags': [ + 'face', + 'hehe', + 'smile', + 'upside-down' + ], + 'shortcodes': [ + ':upside-down_face:' + ] + }, + { + 'name': 'melting face', + 'unicode': '1FAE0', + 'emoji': '๐Ÿซ ', + 'data': '🫠', + 'tags': [ + 'disappear', + 'dissolve', + 'embarrassed', + 'face', + 'haha', + 'heat', + 'hot', + 'liquid', + 'lol', + 'melt', + 'melting', + 'sarcasm', + 'sarcastic' + ], + 'shortcodes': [ + ':melting_face:' + ] + }, + { + 'name': 'winking face', + 'unicode': '1F609', + 'emoji': '๐Ÿ˜‰', + 'data': '😉', + 'tags': [ + 'face', + 'flirt', + 'heartbreaker', + 'sexy', + 'slide', + 'tease', + 'wink', + 'winking', + 'winks' + ], + 'shortcodes': [ + ':winking_face:' + ] + }, + { + 'name': 'smiling face with smiling eyes', + 'unicode': '1F60A', + 'emoji': '๐Ÿ˜Š', + 'data': '😊', + 'tags': [ + 'blush', + 'eye', + 'eyes', + 'face', + 'glad', + 'satisfied', + 'smile', + 'smiling' + ], + 'shortcodes': [ + ':smiling_face_with_smiling_eyes:' + ] + }, + { + 'name': 'smiling face with halo', + 'unicode': '1F607', + 'emoji': '๐Ÿ˜‡', + 'data': '😇', + 'tags': [ + 'angel', + 'angelic', + 'angels', + 'blessed', + 'face', + 'fairy', + 'fairytale', + 'fantasy', + 'halo', + 'happy', + 'innocent', + 'peaceful', + 'smile', + 'smiling', + 'spirit', + 'tale' + ], + 'shortcodes': [ + ':smiling_face_with_halo:' + ] + }, + { + 'name': 'smiling face with hearts', + 'unicode': '1F970', + 'emoji': '๐Ÿฅฐ', + 'data': '🥰', + 'tags': [ + '3', + 'adore', + 'crush', + 'face', + 'heart', + 'hearts', + 'ily', + 'love', + 'romance', + 'smile', + 'smiling', + 'you' + ], + 'shortcodes': [ + ':smiling_face_with_hearts:' + ] + }, + { + 'name': 'smiling face with heart-eyes', + 'unicode': '1F60D', + 'emoji': '๐Ÿ˜', + 'data': '😍', + 'tags': [ + '143', + 'bae', + 'eye', + 'face', + 'feels', + 'heart-eyes', + 'hearts', + 'ily', + 'kisses', + 'love', + 'romance', + 'romantic', + 'smile', + 'xoxo' + ], + 'shortcodes': [ + ':smiling_face_with_heart-eyes:' + ] + }, + { + 'name': 'star-struck', + 'unicode': '1F929', + 'emoji': '๐Ÿคฉ', + 'data': '🤩', + 'tags': [ + 'excited', + 'eyes', + 'face', + 'grinning', + 'smile', + 'star', + 'starry-eyed', + 'wow' + ], + 'shortcodes': [ + ':star-struck:' + ] + }, + { + 'name': 'face blowing a kiss', + 'unicode': '1F618', + 'emoji': '๐Ÿ˜˜', + 'data': '😘', + 'tags': [ + 'adorbs', + 'bae', + 'blowing', + 'face', + 'flirt', + 'heart', + 'ily', + 'kiss', + 'love', + 'lover', + 'miss', + 'muah', + 'romantic', + 'smooch', + 'xoxo', + 'you' + ], + 'shortcodes': [ + ':face_blowing_a_kiss:' + ] + }, + { + 'name': 'kissing face', + 'unicode': '1F617', + 'emoji': '๐Ÿ˜—', + 'data': '😗', + 'tags': [ + '143', + 'date', + 'dating', + 'face', + 'flirt', + 'ily', + 'kiss', + 'love', + 'smooch', + 'smooches', + 'xoxo', + 'you' + ], + 'shortcodes': [ + ':kissing_face:' + ] + }, + { + 'name': 'smiling face', + 'unicode': '263A', + 'emoji': 'โ˜บ', + 'data': '☺', + 'tags': [ + 'face', + 'happy', + 'outlined', + 'relaxed', + 'smile', + 'smiling' + ], + 'shortcodes': [ + ':smiling_face:' + ] + }, + { + 'name': 'kissing face with closed eyes', + 'unicode': '1F61A', + 'emoji': '๐Ÿ˜š', + 'data': '😚', + 'tags': [ + '143', + 'bae', + 'blush', + 'closed', + 'date', + 'dating', + 'eye', + 'eyes', + 'face', + 'flirt', + 'ily', + 'kisses', + 'kissing', + 'smooches', + 'xoxo' + ], + 'shortcodes': [ + ':kissing_face_with_closed_eyes:' + ] + }, + { + 'name': 'kissing face with smiling eyes', + 'unicode': '1F619', + 'emoji': '๐Ÿ˜™', + 'data': '😙', + 'tags': [ + '143', + 'closed', + 'date', + 'dating', + 'eye', + 'eyes', + 'face', + 'flirt', + 'ily', + 'kiss', + 'kisses', + 'kissing', + 'love', + 'night', + 'smile', + 'smiling' + ], + 'shortcodes': [ + ':kissing_face_with_smiling_eyes:' + ] + }, + { + 'name': 'smiling face with tear', + 'unicode': '1F972', + 'emoji': '๐Ÿฅฒ', + 'data': '🥲', + 'tags': [ + 'face', + 'glad', + 'grateful', + 'happy', + 'joy', + 'pain', + 'proud', + 'relieved', + 'smile', + 'smiley', + 'smiling', + 'tear', + 'touched' + ], + 'shortcodes': [ + ':smiling_face_with_tear:' + ] + }, + { + 'name': 'face savoring food', + 'unicode': '1F60B', + 'emoji': '๐Ÿ˜‹', + 'data': '😋', + 'tags': [ + 'delicious', + 'eat', + 'face', + 'food', + 'full', + 'hungry', + 'savor', + 'smile', + 'smiling', + 'tasty', + 'um', + 'yum', + 'yummy' + ], + 'shortcodes': [ + ':face_savoring_food:' + ] + }, + { + 'name': 'face with tongue', + 'unicode': '1F61B', + 'emoji': '๐Ÿ˜›', + 'data': '😛', + 'tags': [ + 'awesome', + 'cool', + 'face', + 'nice', + 'party', + 'stuck-out', + 'sweet', + 'tongue' + ], + 'shortcodes': [ + ':face_with_tongue:' + ] + }, + { + 'name': 'winking face with tongue', + 'unicode': '1F61C', + 'emoji': '๐Ÿ˜œ', + 'data': '😜', + 'tags': [ + 'crazy', + 'epic', + 'eye', + 'face', + 'funny', + 'joke', + 'loopy', + 'nutty', + 'party', + 'stuck-out', + 'tongue', + 'wacky', + 'weirdo', + 'wink', + 'winking', + 'yolo' + ], + 'shortcodes': [ + ':winking_face_with_tongue:' + ] + }, + { + 'name': 'zany face', + 'unicode': '1F92A', + 'emoji': '๐Ÿคช', + 'data': '🤪', + 'tags': [ + 'crazy', + 'eye', + 'eyes', + 'face', + 'goofy', + 'large', + 'small', + 'zany' + ], + 'shortcodes': [ + ':zany_face:' + ] + }, + { + 'name': 'squinting face with tongue', + 'unicode': '1F61D', + 'emoji': '๐Ÿ˜', + 'data': '😝', + 'tags': [ + 'closed', + 'eye', + 'eyes', + 'face', + 'gross', + 'horrible', + 'omg', + 'squinting', + 'stuck-out', + 'taste', + 'tongue', + 'whatever', + 'yolo' + ], + 'shortcodes': [ + ':squinting_face_with_tongue:' + ] + }, + { + 'name': 'money-mouth face', + 'unicode': '1F911', + 'emoji': '๐Ÿค‘', + 'data': '🤑', + 'tags': [ + 'face', + 'money', + 'money-mouth', + 'mouth', + 'paid' + ], + 'shortcodes': [ + ':money-mouth_face:' + ] + }, + { + 'name': 'smiling face with open hands', + 'unicode': '1F917', + 'emoji': '๐Ÿค—', + 'data': '🤗', + 'tags': [ + 'face', + 'hands', + 'hug', + 'hugging', + 'open', + 'smiling' + ], + 'shortcodes': [ + ':smiling_face_with_open_hands:' + ] + }, + { + 'name': 'face with hand over mouth', + 'unicode': '1F92D', + 'emoji': '๐Ÿคญ', + 'data': '🤭', + 'tags': [ + 'face', + 'giggle', + 'giggling', + 'hand', + 'mouth', + 'oops', + 'realization', + 'secret', + 'shock', + 'sudden', + 'surprise', + 'whoops' + ], + 'shortcodes': [ + ':face_with_hand_over_mouth:' + ] + }, + { + 'name': 'face with open eyes and hand over mouth', + 'unicode': '1FAE2', + 'emoji': '๐Ÿซข', + 'data': '🫢', + 'tags': [ + 'amazement', + 'awe', + 'disbelief', + 'embarrass', + 'eyes', + 'face', + 'gasp', + 'hand', + 'mouth', + 'omg', + 'open', + 'over', + 'quiet', + 'scared', + 'shock', + 'surprise' + ], + 'shortcodes': [ + ':face_with_open_eyes_and_hand_over_mouth:' + ] + }, + { + 'name': 'face with peeking eye', + 'unicode': '1FAE3', + 'emoji': '๐Ÿซฃ', + 'data': '🫣', + 'tags': [ + 'captivated', + 'embarrass', + 'eye', + 'face', + 'hide', + 'hiding', + 'peek', + 'peeking', + 'peep', + 'scared', + 'shy', + 'stare' + ], + 'shortcodes': [ + ':face_with_peeking_eye:' + ] + }, + { + 'name': 'shushing face', + 'unicode': '1F92B', + 'emoji': '๐Ÿคซ', + 'data': '🤫', + 'tags': [ + 'face', + 'quiet', + 'shh', + 'shush', + 'shushing' + ], + 'shortcodes': [ + ':shushing_face:' + ] + }, + { + 'name': 'thinking face', + 'unicode': '1F914', + 'emoji': '๐Ÿค”', + 'data': '🤔', + 'tags': [ + 'chin', + 'consider', + 'face', + 'hmm', + 'ponder', + 'pondering', + 'thinking', + 'wondering' + ], + 'shortcodes': [ + ':thinking_face:' + ] + }, + { + 'name': 'saluting face', + 'unicode': '1FAE1', + 'emoji': '๐Ÿซก', + 'data': '🫡', + 'tags': [ + 'face', + 'good', + 'luck', + 'maโ€™am', + 'ok', + 'respect', + 'salute', + 'saluting', + 'sir', + 'troops', + 'yes' + ], + 'shortcodes': [ + ':saluting_face:' + ] + }, + { + 'name': 'zipper-mouth face', + 'unicode': '1F910', + 'emoji': '๐Ÿค', + 'data': '🤐', + 'tags': [ + 'face', + 'keep', + 'mouth', + 'quiet', + 'secret', + 'shut', + 'zip', + 'zipper', + 'zipper-mouth' + ], + 'shortcodes': [ + ':zipper-mouth_face:' + ] + }, + { + 'name': 'face with raised eyebrow', + 'unicode': '1F928', + 'emoji': '๐Ÿคจ', + 'data': '🤨', + 'tags': [ + 'disapproval', + 'disbelief', + 'distrust', + 'emoji', + 'eyebrow', + 'face', + 'hmm', + 'mild', + 'raised', + 'skeptic', + 'skeptical', + 'skepticism', + 'surprise', + 'what' + ], + 'shortcodes': [ + ':face_with_raised_eyebrow:' + ] + }, + { + 'name': 'neutral face', + 'unicode': '1F610', + 'emoji': '๐Ÿ˜', + 'data': '😐', + 'tags': [ + 'awkward', + 'blank', + 'deadpan', + 'expressionless', + 'face', + 'fine', + 'jealous', + 'meh', + 'neutral', + 'oh', + 'shade', + 'straight', + 'unamused', + 'unhappy', + 'unimpressed', + 'whatever' + ], + 'shortcodes': [ + ':neutral_face:' + ] + }, + { + 'name': 'expressionless face', + 'unicode': '1F611', + 'emoji': '๐Ÿ˜‘', + 'data': '😑', + 'tags': [ + 'awkward', + 'dead', + 'expressionless', + 'face', + 'fine', + 'inexpressive', + 'jealous', + 'meh', + 'not', + 'oh', + 'omg', + 'straight', + 'uh', + 'unhappy', + 'unimpressed', + 'whatever' + ], + 'shortcodes': [ + ':expressionless_face:' + ] + }, + { + 'name': 'face without mouth', + 'unicode': '1F636', + 'emoji': '๐Ÿ˜ถ', + 'data': '😶', + 'tags': [ + 'awkward', + 'blank', + 'expressionless', + 'face', + 'mouth', + 'mouthless', + 'mute', + 'quiet', + 'secret', + 'silence', + 'silent', + 'speechless' + ], + 'shortcodes': [ + ':face_without_mouth:' + ] + }, + { + 'name': 'dotted line face', + 'unicode': '1FAE5', + 'emoji': '๐Ÿซฅ', + 'data': '🫥', + 'tags': [ + 'depressed', + 'disappear', + 'dotted', + 'face', + 'hidden', + 'hide', + 'introvert', + 'invisible', + 'line', + 'meh', + 'whatever', + 'wtv' + ], + 'shortcodes': [ + ':dotted_line_face:' + ] + }, + { + 'name': 'face in clouds', + 'unicode': '1F636-200D-1F32B-FE0F', + 'emoji': '๐Ÿ˜ถโ€๐ŸŒซ๏ธ', + 'data': '😶-200D-1F32B-FE0F;', + 'tags': [ + 'absentminded', + 'clouds', + 'face', + 'fog', + 'head' + ], + 'shortcodes': [ + ':face_in_clouds:' + ] + }, + { + 'name': 'smirking face', + 'unicode': '1F60F', + 'emoji': '๐Ÿ˜', + 'data': '😏', + 'tags': [ + 'boss', + 'dapper', + 'face', + 'flirt', + 'homie', + 'kidding', + 'leer', + 'shade', + 'slick', + 'sly', + 'smirk', + 'smug', + 'snicker', + 'suave', + 'suspicious', + 'swag' + ], + 'shortcodes': [ + ':smirking_face:' + ] + }, + { + 'name': 'unamused face', + 'unicode': '1F612', + 'emoji': '๐Ÿ˜’', + 'data': '😒', + 'tags': [ + '...', + 'bored', + 'face', + 'fine', + 'jealous', + 'jel', + 'jelly', + 'pissed', + 'smh', + 'ugh', + 'uhh', + 'unamused', + 'unhappy', + 'weird', + 'whatever' + ], + 'shortcodes': [ + ':unamused_face:' + ] + }, + { + 'name': 'face with rolling eyes', + 'unicode': '1F644', + 'emoji': '๐Ÿ™„', + 'data': '🙄', + 'tags': [ + 'eyeroll', + 'eyes', + 'face', + 'rolling', + 'shade', + 'ugh', + 'whatever' + ], + 'shortcodes': [ + ':face_with_rolling_eyes:' + ] + }, + { + 'name': 'grimacing face', + 'unicode': '1F62C', + 'emoji': '๐Ÿ˜ฌ', + 'data': '😬', + 'tags': [ + 'awk', + 'awkward', + 'dentist', + 'face', + 'grimace', + 'grimacing', + 'grinning', + 'smile', + 'smiling' + ], + 'shortcodes': [ + ':grimacing_face:' + ] + }, + { + 'name': 'face exhaling', + 'unicode': '1F62E-200D-1F4A8', + 'emoji': '๐Ÿ˜ฎโ€๐Ÿ’จ', + 'data': '😮-200D-1F4A8;', + 'tags': [ + 'blow', + 'blowing', + 'exhale', + 'exhaling', + 'exhausted', + 'face', + 'gasp', + 'groan', + 'relief', + 'sigh', + 'smiley', + 'smoke', + 'whisper', + 'whistle' + ], + 'shortcodes': [ + ':face_exhaling:' + ] + }, + { + 'name': 'lying face', + 'unicode': '1F925', + 'emoji': '๐Ÿคฅ', + 'data': '🤥', + 'tags': [ + 'face', + 'liar', + 'lie', + 'lying', + 'pinocchio' + ], + 'shortcodes': [ + ':lying_face:' + ] + }, + { + 'name': 'shaking face', + 'unicode': '1FAE8', + 'emoji': '๐Ÿซจ', + 'data': '🫨', + 'tags': [ + 'crazy', + 'daze', + 'earthquake', + 'face', + 'omg', + 'panic', + 'shaking', + 'shock', + 'surprise', + 'vibrate', + 'whoa', + 'wow' + ], + 'shortcodes': [ + ':shaking_face:' + ] + }, + { + 'name': 'head shaking horizontally', + 'unicode': '1F642-200D-2194-FE0F', + 'emoji': '๐Ÿ™‚โ€โ†”๏ธ', + 'data': '🙂-200D-2194-FE0F;', + 'tags': [ + 'head', + 'horizontally', + 'no', + 'shake', + 'shaking' + ], + 'shortcodes': [ + ':head_shaking_horizontally:' + ] + }, + { + 'name': 'head shaking vertically', + 'unicode': '1F642-200D-2195-FE0F', + 'emoji': '๐Ÿ™‚โ€โ†•๏ธ', + 'data': '🙂-200D-2195-FE0F;', + 'tags': [ + 'head', + 'nod', + 'shaking', + 'vertically', + 'yes' + ], + 'shortcodes': [ + ':head_shaking_vertically:' + ] + }, + { + 'name': 'relieved face', + 'unicode': '1F60C', + 'emoji': '๐Ÿ˜Œ', + 'data': '😌', + 'tags': [ + 'calm', + 'face', + 'peace', + 'relief', + 'relieved', + 'zen' + ], + 'shortcodes': [ + ':relieved_face:' + ] + }, + { + 'name': 'pensive face', + 'unicode': '1F614', + 'emoji': '๐Ÿ˜”', + 'data': '😔', + 'tags': [ + 'awful', + 'bored', + 'dejected', + 'died', + 'disappointed', + 'face', + 'losing', + 'lost', + 'pensive', + 'sad', + 'sucks' + ], + 'shortcodes': [ + ':pensive_face:' + ] + }, + { + 'name': 'sleepy face', + 'unicode': '1F62A', + 'emoji': '๐Ÿ˜ช', + 'data': '😪', + 'tags': [ + 'crying', + 'face', + 'good', + 'night', + 'sad', + 'sleep', + 'sleeping', + 'sleepy', + 'tired' + ], + 'shortcodes': [ + ':sleepy_face:' + ] + }, + { + 'name': 'drooling face', + 'unicode': '1F924', + 'emoji': '๐Ÿคค', + 'data': '🤤', + 'tags': [ + 'drooling', + 'face' + ], + 'shortcodes': [ + ':drooling_face:' + ] + }, + { + 'name': 'sleeping face', + 'unicode': '1F634', + 'emoji': '๐Ÿ˜ด', + 'data': '😴', + 'tags': [ + 'bed', + 'bedtime', + 'face', + 'good', + 'goodnight', + 'nap', + 'night', + 'sleep', + 'sleeping', + 'tired', + 'whatever', + 'yawn', + 'zzz' + ], + 'shortcodes': [ + ':sleeping_face:' + ] + }, + { + 'name': 'face with bags under eyes', + 'unicode': '1FAE9', + 'emoji': '๐Ÿซฉ', + 'data': '🫩', + 'tags': [ + 'bags', + 'bored', + 'exhausted', + 'eyes', + 'face', + 'fatigued', + 'late', + 'sleepy', + 'tired', + 'weary' + ], + 'shortcodes': [ + ':face_with_bags_under_eyes:' + ] + }, + { + 'name': 'face with medical mask', + 'unicode': '1F637', + 'emoji': '๐Ÿ˜ท', + 'data': '😷', + 'tags': [ + 'cold', + 'dentist', + 'dermatologist', + 'doctor', + 'dr', + 'face', + 'germs', + 'mask', + 'medical', + 'medicine', + 'sick' + ], + 'shortcodes': [ + ':face_with_medical_mask:' + ] + }, + { + 'name': 'face with thermometer', + 'unicode': '1F912', + 'emoji': '๐Ÿค’', + 'data': '🤒', + 'tags': [ + 'face', + 'ill', + 'sick', + 'thermometer' + ], + 'shortcodes': [ + ':face_with_thermometer:' + ] + }, + { + 'name': 'face with head-bandage', + 'unicode': '1F915', + 'emoji': '๐Ÿค•', + 'data': '🤕', + 'tags': [ + 'bandage', + 'face', + 'head-bandage', + 'hurt', + 'injury', + 'ouch' + ], + 'shortcodes': [ + ':face_with_head-bandage:' + ] + }, + { + 'name': 'nauseated face', + 'unicode': '1F922', + 'emoji': '๐Ÿคข', + 'data': '🤢', + 'tags': [ + 'face', + 'gross', + 'nasty', + 'nauseated', + 'sick', + 'vomit' + ], + 'shortcodes': [ + ':nauseated_face:' + ] + }, + { + 'name': 'face vomiting', + 'unicode': '1F92E', + 'emoji': '๐Ÿคฎ', + 'data': '🤮', + 'tags': [ + 'barf', + 'ew', + 'face', + 'gross', + 'puke', + 'sick', + 'spew', + 'throw', + 'up', + 'vomit', + 'vomiting' + ], + 'shortcodes': [ + ':face_vomiting:' + ] + }, + { + 'name': 'sneezing face', + 'unicode': '1F927', + 'emoji': '๐Ÿคง', + 'data': '🤧', + 'tags': [ + 'face', + 'fever', + 'flu', + 'gesundheit', + 'sick', + 'sneeze', + 'sneezing' + ], + 'shortcodes': [ + ':sneezing_face:' + ] + }, + { + 'name': 'hot face', + 'unicode': '1F975', + 'emoji': '๐Ÿฅต', + 'data': '🥵', + 'tags': [ + 'dying', + 'face', + 'feverish', + 'heat', + 'hot', + 'panting', + 'red-faced', + 'stroke', + 'sweating', + 'tongue' + ], + 'shortcodes': [ + ':hot_face:' + ] + }, + { + 'name': 'cold face', + 'unicode': '1F976', + 'emoji': '๐Ÿฅถ', + 'data': '🥶', + 'tags': [ + 'blue', + 'blue-faced', + 'cold', + 'face', + 'freezing', + 'frostbite', + 'icicles', + 'subzero', + 'teeth' + ], + 'shortcodes': [ + ':cold_face:' + ] + }, + { + 'name': 'woozy face', + 'unicode': '1F974', + 'emoji': '๐Ÿฅด', + 'data': '🥴', + 'tags': [ + 'dizzy', + 'drunk', + 'eyes', + 'face', + 'intoxicated', + 'mouth', + 'tipsy', + 'uneven', + 'wavy', + 'woozy' + ], + 'shortcodes': [ + ':woozy_face:' + ] + }, + { + 'name': 'face with crossed-out eyes', + 'unicode': '1F635', + 'emoji': '๐Ÿ˜ต', + 'data': '😵', + 'tags': [ + 'crossed-out', + 'dead', + 'dizzy', + 'eyes', + 'face', + 'feels', + 'knocked', + 'out', + 'sick', + 'tired' + ], + 'shortcodes': [ + ':face_with_crossed-out_eyes:' + ] + }, + { + 'name': 'face with spiral eyes', + 'unicode': '1F635-200D-1F4AB', + 'emoji': '๐Ÿ˜ตโ€๐Ÿ’ซ', + 'data': '😵-200D-1F4AB;', + 'tags': [ + 'confused', + 'dizzy', + 'eyes', + 'face', + 'hypnotized', + 'omg', + 'smiley', + 'spiral', + 'trouble', + 'whoa', + 'woah', + 'woozy' + ], + 'shortcodes': [ + ':face_with_spiral_eyes:' + ] + }, + { + 'name': 'exploding head', + 'unicode': '1F92F', + 'emoji': '๐Ÿคฏ', + 'data': '🤯', + 'tags': [ + 'blown', + 'explode', + 'exploding', + 'head', + 'mind', + 'mindblown', + 'no', + 'shocked', + 'way' + ], + 'shortcodes': [ + ':exploding_head:' + ] + }, + { + 'name': 'cowboy hat face', + 'unicode': '1F920', + 'emoji': '๐Ÿค ', + 'data': '🤠', + 'tags': [ + 'cowboy', + 'cowgirl', + 'face', + 'hat' + ], + 'shortcodes': [ + ':cowboy_hat_face:' + ] + }, + { + 'name': 'partying face', + 'unicode': '1F973', + 'emoji': '๐Ÿฅณ', + 'data': '🥳', + 'tags': [ + 'bday', + 'birthday', + 'celebrate', + 'celebration', + 'excited', + 'face', + 'happy', + 'hat', + 'hooray', + 'horn', + 'party', + 'partying' + ], + 'shortcodes': [ + ':partying_face:' + ] + }, + { + 'name': 'disguised face', + 'unicode': '1F978', + 'emoji': '๐Ÿฅธ', + 'data': '🥸', + 'tags': [ + 'disguise', + 'eyebrow', + 'face', + 'glasses', + 'incognito', + 'moustache', + 'mustache', + 'nose', + 'person', + 'spy', + 'tache', + 'tash' + ], + 'shortcodes': [ + ':disguised_face:' + ] + }, + { + 'name': 'smiling face with sunglasses', + 'unicode': '1F60E', + 'emoji': '๐Ÿ˜Ž', + 'data': '😎', + 'tags': [ + 'awesome', + 'beach', + 'bright', + 'bro', + 'chilling', + 'cool', + 'face', + 'rad', + 'relaxed', + 'shades', + 'slay', + 'smile', + 'style', + 'sunglasses', + 'swag', + 'win' + ], + 'shortcodes': [ + ':smiling_face_with_sunglasses:' + ] + }, + { + 'name': 'nerd face', + 'unicode': '1F913', + 'emoji': '๐Ÿค“', + 'data': '🤓', + 'tags': [ + 'brainy', + 'clever', + 'expert', + 'face', + 'geek', + 'gifted', + 'glasses', + 'intelligent', + 'nerd', + 'smart' + ], + 'shortcodes': [ + ':nerd_face:' + ] + }, + { + 'name': 'face with monocle', + 'unicode': '1F9D0', + 'emoji': '๐Ÿง', + 'data': '🧐', + 'tags': [ + 'classy', + 'face', + 'fancy', + 'monocle', + 'rich', + 'stuffy', + 'wealthy' + ], + 'shortcodes': [ + ':face_with_monocle:' + ] + }, + { + 'name': 'confused face', + 'unicode': '1F615', + 'emoji': '๐Ÿ˜•', + 'data': '😕', + 'tags': [ + 'befuddled', + 'confused', + 'confusing', + 'dunno', + 'face', + 'frown', + 'hm', + 'meh', + 'not', + 'sad', + 'sorry', + 'sure' + ], + 'shortcodes': [ + ':confused_face:' + ] + }, + { + 'name': 'face with diagonal mouth', + 'unicode': '1FAE4', + 'emoji': '๐Ÿซค', + 'data': '🫤', + 'tags': [ + 'confused', + 'confusion', + 'diagonal', + 'disappointed', + 'doubt', + 'doubtful', + 'face', + 'frustrated', + 'frustration', + 'meh', + 'mouth', + 'skeptical', + 'unsure', + 'whatever', + 'wtv' + ], + 'shortcodes': [ + ':face_with_diagonal_mouth:' + ] + }, + { + 'name': 'worried face', + 'unicode': '1F61F', + 'emoji': '๐Ÿ˜Ÿ', + 'data': '😟', + 'tags': [ + 'anxious', + 'butterflies', + 'face', + 'nerves', + 'nervous', + 'sad', + 'stress', + 'stressed', + 'surprised', + 'worried', + 'worry' + ], + 'shortcodes': [ + ':worried_face:' + ] + }, + { + 'name': 'slightly frowning face', + 'unicode': '1F641', + 'emoji': '๐Ÿ™', + 'data': '🙁', + 'tags': [ + 'face', + 'frown', + 'frowning', + 'sad', + 'slightly' + ], + 'shortcodes': [ + ':slightly_frowning_face:' + ] + }, + { + 'name': 'frowning face', + 'unicode': '2639', + 'emoji': 'โ˜น', + 'data': '☹', + 'tags': [ + 'face', + 'frown', + 'frowning', + 'sad' + ], + 'shortcodes': [ + ':frowning_face:' + ] + }, + { + 'name': 'face with open mouth', + 'unicode': '1F62E', + 'emoji': '๐Ÿ˜ฎ', + 'data': '😮', + 'tags': [ + 'believe', + 'face', + 'forgot', + 'mouth', + 'omg', + 'open', + 'shocked', + 'surprised', + 'sympathy', + 'unbelievable', + 'unreal', + 'whoa', + 'wow', + 'you' + ], + 'shortcodes': [ + ':face_with_open_mouth:' + ] + }, + { + 'name': 'hushed face', + 'unicode': '1F62F', + 'emoji': '๐Ÿ˜ฏ', + 'data': '😯', + 'tags': [ + 'epic', + 'face', + 'hushed', + 'omg', + 'stunned', + 'surprised', + 'whoa', + 'woah' + ], + 'shortcodes': [ + ':hushed_face:' + ] + }, + { + 'name': 'astonished face', + 'unicode': '1F632', + 'emoji': '๐Ÿ˜ฒ', + 'data': '😲', + 'tags': [ + 'astonished', + 'cost', + 'face', + 'no', + 'omg', + 'shocked', + 'totally', + 'way' + ], + 'shortcodes': [ + ':astonished_face:' + ] + }, + { + 'name': 'flushed face', + 'unicode': '1F633', + 'emoji': '๐Ÿ˜ณ', + 'data': '😳', + 'tags': [ + 'amazed', + 'awkward', + 'crazy', + 'dazed', + 'dead', + 'disbelief', + 'embarrassed', + 'face', + 'flushed', + 'geez', + 'heat', + 'hot', + 'impressed', + 'jeez', + 'what', + 'wow' + ], + 'shortcodes': [ + ':flushed_face:' + ] + }, + { + 'name': 'pleading face', + 'unicode': '1F97A', + 'emoji': '๐Ÿฅบ', + 'data': '🥺', + 'tags': [ + 'begging', + 'big', + 'eyes', + 'face', + 'mercy', + 'not', + 'pleading', + 'please', + 'pretty', + 'puppy', + 'sad', + 'why' + ], + 'shortcodes': [ + ':pleading_face:' + ] + }, + { + 'name': 'face holding back tears', + 'unicode': '1F979', + 'emoji': '๐Ÿฅน', + 'data': '🥹', + 'tags': [ + 'admiration', + 'aww', + 'back', + 'cry', + 'embarrassed', + 'face', + 'feelings', + 'grateful', + 'gratitude', + 'holding', + 'joy', + 'please', + 'proud', + 'resist', + 'sad', + 'tears' + ], + 'shortcodes': [ + ':face_holding_back_tears:' + ] + }, + { + 'name': 'frowning face with open mouth', + 'unicode': '1F626', + 'emoji': '๐Ÿ˜ฆ', + 'data': '😦', + 'tags': [ + 'caught', + 'face', + 'frown', + 'frowning', + 'guard', + 'mouth', + 'open', + 'scared', + 'scary', + 'surprise', + 'what', + 'wow' + ], + 'shortcodes': [ + ':frowning_face_with_open_mouth:' + ] + }, + { + 'name': 'anguished face', + 'unicode': '1F627', + 'emoji': '๐Ÿ˜ง', + 'data': '😧', + 'tags': [ + 'anguished', + 'face', + 'forgot', + 'scared', + 'scary', + 'stressed', + 'surprise', + 'unhappy', + 'what', + 'wow' + ], + 'shortcodes': [ + ':anguished_face:' + ] + }, + { + 'name': 'fearful face', + 'unicode': '1F628', + 'emoji': '๐Ÿ˜จ', + 'data': '😨', + 'tags': [ + 'afraid', + 'anxious', + 'blame', + 'face', + 'fear', + 'fearful', + 'scared', + 'worried' + ], + 'shortcodes': [ + ':fearful_face:' + ] + }, + { + 'name': 'anxious face with sweat', + 'unicode': '1F630', + 'emoji': '๐Ÿ˜ฐ', + 'data': '😰', + 'tags': [ + 'anxious', + 'blue', + 'cold', + 'eek', + 'face', + 'mouth', + 'nervous', + 'open', + 'rushed', + 'scared', + 'sweat', + 'yikes' + ], + 'shortcodes': [ + ':anxious_face_with_sweat:' + ] + }, + { + 'name': 'sad but relieved face', + 'unicode': '1F625', + 'emoji': '๐Ÿ˜ฅ', + 'data': '😥', + 'tags': [ + 'anxious', + 'call', + 'close', + 'complicated', + 'disappointed', + 'face', + 'not', + 'relieved', + 'sad', + 'sweat', + 'time', + 'whew' + ], + 'shortcodes': [ + ':sad_but_relieved_face:' + ] + }, + { + 'name': 'crying face', + 'unicode': '1F622', + 'emoji': '๐Ÿ˜ข', + 'data': '😢', + 'tags': [ + 'awful', + 'cry', + 'crying', + 'face', + 'feels', + 'miss', + 'sad', + 'tear', + 'triste', + 'unhappy' + ], + 'shortcodes': [ + ':crying_face:' + ] + }, + { + 'name': 'loudly crying face', + 'unicode': '1F62D', + 'emoji': '๐Ÿ˜ญ', + 'data': '😭', + 'tags': [ + 'bawling', + 'cry', + 'crying', + 'face', + 'loudly', + 'sad', + 'sob', + 'tear', + 'tears', + 'unhappy' + ], + 'shortcodes': [ + ':loudly_crying_face:' + ] + }, + { + 'name': 'face screaming in fear', + 'unicode': '1F631', + 'emoji': '๐Ÿ˜ฑ', + 'data': '😱', + 'tags': [ + 'epic', + 'face', + 'fear', + 'fearful', + 'munch', + 'scared', + 'scream', + 'screamer', + 'screaming', + 'shocked', + 'surprised', + 'woah' + ], + 'shortcodes': [ + ':face_screaming_in_fear:' + ] + }, + { + 'name': 'confounded face', + 'unicode': '1F616', + 'emoji': '๐Ÿ˜–', + 'data': '😖', + 'tags': [ + 'annoyed', + 'confounded', + 'confused', + 'cringe', + 'distraught', + 'face', + 'feels', + 'frustrated', + 'mad', + 'sad' + ], + 'shortcodes': [ + ':confounded_face:' + ] + }, + { + 'name': 'persevering face', + 'unicode': '1F623', + 'emoji': '๐Ÿ˜ฃ', + 'data': '😣', + 'tags': [ + 'concentrate', + 'concentration', + 'face', + 'focus', + 'headache', + 'persevere', + 'persevering' + ], + 'shortcodes': [ + ':persevering_face:' + ] + }, + { + 'name': 'disappointed face', + 'unicode': '1F61E', + 'emoji': '๐Ÿ˜ž', + 'data': '😞', + 'tags': [ + 'awful', + 'blame', + 'dejected', + 'disappointed', + 'face', + 'fail', + 'losing', + 'sad', + 'unhappy' + ], + 'shortcodes': [ + ':disappointed_face:' + ] + }, + { + 'name': 'downcast face with sweat', + 'unicode': '1F613', + 'emoji': '๐Ÿ˜“', + 'data': '😓', + 'tags': [ + 'close', + 'cold', + 'downcast', + 'face', + 'feels', + 'headache', + 'nervous', + 'sad', + 'scared', + 'sweat', + 'yikes' + ], + 'shortcodes': [ + ':downcast_face_with_sweat:' + ] + }, + { + 'name': 'weary face', + 'unicode': '1F629', + 'emoji': '๐Ÿ˜ฉ', + 'data': '😩', + 'tags': [ + 'crying', + 'face', + 'fail', + 'feels', + 'hungry', + 'mad', + 'nooo', + 'sad', + 'sleepy', + 'tired', + 'unhappy', + 'weary' + ], + 'shortcodes': [ + ':weary_face:' + ] + }, + { + 'name': 'tired face', + 'unicode': '1F62B', + 'emoji': '๐Ÿ˜ซ', + 'data': '😫', + 'tags': [ + 'cost', + 'face', + 'feels', + 'nap', + 'sad', + 'sneeze', + 'tired' + ], + 'shortcodes': [ + ':tired_face:' + ] + }, + { + 'name': 'yawning face', + 'unicode': '1F971', + 'emoji': '๐Ÿฅฑ', + 'data': '🥱', + 'tags': [ + 'bedtime', + 'bored', + 'face', + 'goodnight', + 'nap', + 'night', + 'sleep', + 'sleepy', + 'tired', + 'whatever', + 'yawn', + 'yawning', + 'zzz' + ], + 'shortcodes': [ + ':yawning_face:' + ] + }, + { + 'name': 'face with steam from nose', + 'unicode': '1F624', + 'emoji': '๐Ÿ˜ค', + 'data': '😤', + 'tags': [ + 'anger', + 'angry', + 'face', + 'feels', + 'fume', + 'fuming', + 'furious', + 'fury', + 'mad', + 'nose', + 'steam', + 'triumph', + 'unhappy', + 'won' + ], + 'shortcodes': [ + ':face_with_steam_from_nose:' + ] + }, + { + 'name': 'enraged face', + 'unicode': '1F621', + 'emoji': '๐Ÿ˜ก', + 'data': '😡', + 'tags': [ + 'anger', + 'angry', + 'enraged', + 'face', + 'feels', + 'mad', + 'maddening', + 'pouting', + 'rage', + 'red', + 'shade', + 'unhappy', + 'upset' + ], + 'shortcodes': [ + ':enraged_face:' + ] + }, + { + 'name': 'angry face', + 'unicode': '1F620', + 'emoji': '๐Ÿ˜ ', + 'data': '😠', + 'tags': [ + 'anger', + 'angry', + 'blame', + 'face', + 'feels', + 'frustrated', + 'mad', + 'maddening', + 'rage', + 'shade', + 'unhappy', + 'upset' + ], + 'shortcodes': [ + ':angry_face:' + ] + }, + { + 'name': 'face with symbols on mouth', + 'unicode': '1F92C', + 'emoji': '๐Ÿคฌ', + 'data': '🤬', + 'tags': [ + 'censor', + 'cursing', + 'cussing', + 'face', + 'mad', + 'mouth', + 'pissed', + 'swearing', + 'symbols' + ], + 'shortcodes': [ + ':face_with_symbols_on_mouth:' + ] + }, + { + 'name': 'smiling face with horns', + 'unicode': '1F608', + 'emoji': '๐Ÿ˜ˆ', + 'data': '😈', + 'tags': [ + 'demon', + 'devil', + 'evil', + 'face', + 'fairy', + 'fairytale', + 'fantasy', + 'horns', + 'purple', + 'shade', + 'smile', + 'smiling', + 'tale' + ], + 'shortcodes': [ + ':smiling_face_with_horns:' + ] + }, + { + 'name': 'angry face with horns', + 'unicode': '1F47F', + 'emoji': '๐Ÿ‘ฟ', + 'data': '👿', + 'tags': [ + 'angry', + 'demon', + 'devil', + 'evil', + 'face', + 'fairy', + 'fairytale', + 'fantasy', + 'horns', + 'imp', + 'mischievous', + 'purple', + 'shade', + 'tale' + ], + 'shortcodes': [ + ':angry_face_with_horns:' + ] + }, + { + 'name': 'skull', + 'unicode': '1F480', + 'emoji': '๐Ÿ’€', + 'data': '💀', + 'tags': [ + 'body', + 'dead', + 'death', + 'face', + 'fairy', + 'fairytale', + 'iโ€™m', + 'lmao', + 'monster', + 'tale', + 'yolo' + ], + 'shortcodes': [ + ':skull:' + ] + }, + { + 'name': 'skull and crossbones', + 'unicode': '2620', + 'emoji': 'โ˜ ', + 'data': '☠', + 'tags': [ + 'bone', + 'crossbones', + 'dead', + 'death', + 'face', + 'monster', + 'skull' + ], + 'shortcodes': [ + ':skull_and_crossbones:' + ] + }, + { + 'name': 'pile of poo', + 'unicode': '1F4A9', + 'emoji': '๐Ÿ’ฉ', + 'data': '💩', + 'tags': [ + 'bs', + 'comic', + 'doo', + 'dung', + 'face', + 'fml', + 'monster', + 'pile', + 'poo', + 'poop', + 'smelly', + 'smh', + 'stink', + 'stinks', + 'stinky', + 'turd' + ], + 'shortcodes': [ + ':pile_of_poo:' + ] + }, + { + 'name': 'clown face', + 'unicode': '1F921', + 'emoji': '๐Ÿคก', + 'data': '🤡', + 'tags': [ + 'clown', + 'face' + ], + 'shortcodes': [ + ':clown_face:' + ] + }, + { + 'name': 'ogre', + 'unicode': '1F479', + 'emoji': '๐Ÿ‘น', + 'data': '👹', + 'tags': [ + 'creature', + 'devil', + 'face', + 'fairy', + 'fairytale', + 'fantasy', + 'mask', + 'monster', + 'scary', + 'tale' + ], + 'shortcodes': [ + ':ogre:' + ] + }, + { + 'name': 'goblin', + 'unicode': '1F47A', + 'emoji': '๐Ÿ‘บ', + 'data': '👺', + 'tags': [ + 'angry', + 'creature', + 'face', + 'fairy', + 'fairytale', + 'fantasy', + 'mask', + 'mean', + 'monster', + 'tale' + ], + 'shortcodes': [ + ':goblin:' + ] + }, + { + 'name': 'ghost', + 'unicode': '1F47B', + 'emoji': '๐Ÿ‘ป', + 'data': '👻', + 'tags': [ + 'boo', + 'creature', + 'excited', + 'face', + 'fairy', + 'fairytale', + 'fantasy', + 'halloween', + 'haunting', + 'monster', + 'scary', + 'silly', + 'tale' + ], + 'shortcodes': [ + ':ghost:' + ] + }, + { + 'name': 'alien', + 'unicode': '1F47D', + 'emoji': '๐Ÿ‘ฝ', + 'data': '👽', + 'tags': [ + 'creature', + 'extraterrestrial', + 'face', + 'fairy', + 'fairytale', + 'fantasy', + 'monster', + 'space', + 'tale', + 'ufo' + ], + 'shortcodes': [ + ':alien:' + ] + }, + { + 'name': 'alien monster', + 'unicode': '1F47E', + 'emoji': '๐Ÿ‘พ', + 'data': '👾', + 'tags': [ + 'alien', + 'creature', + 'extraterrestrial', + 'face', + 'fairy', + 'fairytale', + 'fantasy', + 'game', + 'gamer', + 'games', + 'monster', + 'pixelated', + 'space', + 'tale', + 'ufo' + ], + 'shortcodes': [ + ':alien_monster:' + ] + }, + { + 'name': 'robot', + 'unicode': '1F916', + 'emoji': '๐Ÿค–', + 'data': '🤖', + 'tags': [ + 'face', + 'monster' + ], + 'shortcodes': [ + ':robot:' + ] + }, + { + 'name': 'grinning cat', + 'unicode': '1F63A', + 'emoji': '๐Ÿ˜บ', + 'data': '😺', + 'tags': [ + 'animal', + 'cat', + 'face', + 'grinning', + 'mouth', + 'open', + 'smile', + 'smiling' + ], + 'shortcodes': [ + ':grinning_cat:' + ] + }, + { + 'name': 'grinning cat with smiling eyes', + 'unicode': '1F638', + 'emoji': '๐Ÿ˜ธ', + 'data': '😸', + 'tags': [ + 'animal', + 'cat', + 'eye', + 'eyes', + 'face', + 'grin', + 'grinning', + 'smile', + 'smiling' + ], + 'shortcodes': [ + ':grinning_cat_with_smiling_eyes:' + ] + }, + { + 'name': 'cat with tears of joy', + 'unicode': '1F639', + 'emoji': '๐Ÿ˜น', + 'data': '😹', + 'tags': [ + 'animal', + 'cat', + 'face', + 'joy', + 'laugh', + 'laughing', + 'lol', + 'tear', + 'tears' + ], + 'shortcodes': [ + ':cat_with_tears_of_joy:' + ] + }, + { + 'name': 'smiling cat with heart-eyes', + 'unicode': '1F63B', + 'emoji': '๐Ÿ˜ป', + 'data': '😻', + 'tags': [ + 'animal', + 'cat', + 'eye', + 'face', + 'heart', + 'heart-eyes', + 'love', + 'smile', + 'smiling' + ], + 'shortcodes': [ + ':smiling_cat_with_heart-eyes:' + ] + }, + { + 'name': 'cat with wry smile', + 'unicode': '1F63C', + 'emoji': '๐Ÿ˜ผ', + 'data': '😼', + 'tags': [ + 'animal', + 'cat', + 'face', + 'ironic', + 'smile', + 'wry' + ], + 'shortcodes': [ + ':cat_with_wry_smile:' + ] + }, + { + 'name': 'kissing cat', + 'unicode': '1F63D', + 'emoji': '๐Ÿ˜ฝ', + 'data': '😽', + 'tags': [ + 'animal', + 'cat', + 'closed', + 'eye', + 'eyes', + 'face', + 'kiss', + 'kissing' + ], + 'shortcodes': [ + ':kissing_cat:' + ] + }, + { + 'name': 'weary cat', + 'unicode': '1F640', + 'emoji': '๐Ÿ™€', + 'data': '🙀', + 'tags': [ + 'animal', + 'cat', + 'face', + 'oh', + 'surprised', + 'weary' + ], + 'shortcodes': [ + ':weary_cat:' + ] + }, + { + 'name': 'crying cat', + 'unicode': '1F63F', + 'emoji': '๐Ÿ˜ฟ', + 'data': '😿', + 'tags': [ + 'animal', + 'cat', + 'cry', + 'crying', + 'face', + 'sad', + 'tear' + ], + 'shortcodes': [ + ':crying_cat:' + ] + }, + { + 'name': 'pouting cat', + 'unicode': '1F63E', + 'emoji': '๐Ÿ˜พ', + 'data': '😾', + 'tags': [ + 'animal', + 'cat', + 'face', + 'pouting' + ], + 'shortcodes': [ + ':pouting_cat:' + ] + }, + { + 'name': 'see-no-evil monkey', + 'unicode': '1F648', + 'emoji': '๐Ÿ™ˆ', + 'data': '🙈', + 'tags': [ + 'embarrassed', + 'evil', + 'face', + 'forbidden', + 'forgot', + 'gesture', + 'hide', + 'monkey', + 'no', + 'omg', + 'prohibited', + 'scared', + 'secret', + 'smh', + 'watch' + ], + 'shortcodes': [ + ':see-no-evil_monkey:' + ] + }, + { + 'name': 'hear-no-evil monkey', + 'unicode': '1F649', + 'emoji': '๐Ÿ™‰', + 'data': '🙉', + 'tags': [ + 'animal', + 'ears', + 'evil', + 'face', + 'forbidden', + 'gesture', + 'hear', + 'listen', + 'monkey', + 'no', + 'not', + 'prohibited', + 'secret', + 'shh', + 'tmi' + ], + 'shortcodes': [ + ':hear-no-evil_monkey:' + ] + }, + { + 'name': 'speak-no-evil monkey', + 'unicode': '1F64A', + 'emoji': '๐Ÿ™Š', + 'data': '🙊', + 'tags': [ + 'animal', + 'evil', + 'face', + 'forbidden', + 'gesture', + 'monkey', + 'no', + 'not', + 'oops', + 'prohibited', + 'quiet', + 'secret', + 'speak', + 'stealth' + ], + 'shortcodes': [ + ':speak-no-evil_monkey:' + ] + }, + { + 'name': 'love letter', + 'unicode': '1F48C', + 'emoji': '๐Ÿ’Œ', + 'data': '💌', + 'tags': [ + 'heart', + 'letter', + 'love', + 'mail', + 'romance', + 'valentine' + ], + 'shortcodes': [ + ':love_letter:' + ] + }, + { + 'name': 'heart with arrow', + 'unicode': '1F498', + 'emoji': '๐Ÿ’˜', + 'data': '💘', + 'tags': [ + '143', + 'adorbs', + 'arrow', + 'cupid', + 'date', + 'emotion', + 'heart', + 'ily', + 'love', + 'romance', + 'valentine' + ], + 'shortcodes': [ + ':heart_with_arrow:' + ] + }, + { + 'name': 'heart with ribbon', + 'unicode': '1F49D', + 'emoji': '๐Ÿ’', + 'data': '💝', + 'tags': [ + '143', + 'anniversary', + 'emotion', + 'heart', + 'ily', + 'kisses', + 'ribbon', + 'valentine', + 'xoxo' + ], + 'shortcodes': [ + ':heart_with_ribbon:' + ] + }, + { + 'name': 'sparkling heart', + 'unicode': '1F496', + 'emoji': '๐Ÿ’–', + 'data': '💖', + 'tags': [ + '143', + 'emotion', + 'excited', + 'good', + 'heart', + 'ily', + 'kisses', + 'morning', + 'night', + 'sparkle', + 'sparkling', + 'xoxo' + ], + 'shortcodes': [ + ':sparkling_heart:' + ] + }, + { + 'name': 'growing heart', + 'unicode': '1F497', + 'emoji': '๐Ÿ’—', + 'data': '💗', + 'tags': [ + '143', + 'emotion', + 'excited', + 'growing', + 'heart', + 'heartpulse', + 'ily', + 'kisses', + 'muah', + 'nervous', + 'pulse', + 'xoxo' + ], + 'shortcodes': [ + ':growing_heart:' + ] + }, + { + 'name': 'beating heart', + 'unicode': '1F493', + 'emoji': '๐Ÿ’“', + 'data': '💓', + 'tags': [ + '143', + 'beating', + 'cardio', + 'emotion', + 'heart', + 'heartbeat', + 'ily', + 'love', + 'pulsating', + 'pulse' + ], + 'shortcodes': [ + ':beating_heart:' + ] + }, + { + 'name': 'revolving hearts', + 'unicode': '1F49E', + 'emoji': '๐Ÿ’ž', + 'data': '💞', + 'tags': [ + '143', + 'adorbs', + 'anniversary', + 'emotion', + 'heart', + 'hearts', + 'revolving' + ], + 'shortcodes': [ + ':revolving_hearts:' + ] + }, + { + 'name': 'two hearts', + 'unicode': '1F495', + 'emoji': '๐Ÿ’•', + 'data': '💕', + 'tags': [ + '143', + 'anniversary', + 'date', + 'dating', + 'emotion', + 'heart', + 'hearts', + 'ily', + 'kisses', + 'love', + 'loving', + 'two', + 'xoxo' + ], + 'shortcodes': [ + ':two_hearts:' + ] + }, + { + 'name': 'heart decoration', + 'unicode': '1F49F', + 'emoji': '๐Ÿ’Ÿ', + 'data': '💟', + 'tags': [ + '143', + 'decoration', + 'emotion', + 'heart', + 'hearth', + 'purple', + 'white' + ], + 'shortcodes': [ + ':heart_decoration:' + ] + }, + { + 'name': 'heart exclamation', + 'unicode': '2763', + 'emoji': 'โฃ', + 'data': '❣', + 'tags': [ + 'exclamation', + 'heart', + 'heavy', + 'mark', + 'punctuation' + ], + 'shortcodes': [ + ':heart_exclamation:' + ] + }, + { + 'name': 'broken heart', + 'unicode': '1F494', + 'emoji': '๐Ÿ’”', + 'data': '💔', + 'tags': [ + 'break', + 'broken', + 'crushed', + 'emotion', + 'heart', + 'heartbroken', + 'lonely', + 'sad' + ], + 'shortcodes': [ + ':broken_heart:' + ] + }, + { + 'name': 'heart on fire', + 'unicode': '2764-FE0F-200D-1F525', + 'emoji': 'โค๏ธโ€๐Ÿ”ฅ', + 'data': '❤-FE0F-200D-1F525;', + 'tags': [ + 'burn', + 'fire', + 'heart', + 'love', + 'lust', + 'sacred' + ], + 'shortcodes': [ + ':heart_on_fire:' + ] + }, + { + 'name': 'mending heart', + 'unicode': '2764-FE0F-200D-1FA79', + 'emoji': 'โค๏ธโ€๐Ÿฉน', + 'data': '❤-FE0F-200D-1FA79;', + 'tags': [ + 'healthier', + 'heart', + 'improving', + 'mending', + 'recovering', + 'recuperating', + 'well' + ], + 'shortcodes': [ + ':mending_heart:' + ] + }, + { + 'name': 'red heart', + 'unicode': '2764-FE0F', + 'emoji': 'โค๏ธ', + 'data': '❤️', + 'tags': [ + 'emotion', + 'heart', + 'love', + 'red' + ], + 'shortcodes': [ + ':red_heart:' + ] + }, + { + 'name': 'pink heart', + 'unicode': '1FA77', + 'emoji': '๐Ÿฉท', + 'data': '🩷', + 'tags': [ + '143', + 'adorable', + 'cute', + 'emotion', + 'heart', + 'ily', + 'like', + 'love', + 'pink', + 'special', + 'sweet' + ], + 'shortcodes': [ + ':pink_heart:' + ] + }, + { + 'name': 'orange heart', + 'unicode': '1F9E1', + 'emoji': '๐Ÿงก', + 'data': '🧡', + 'tags': [ + '143', + 'heart', + 'orange' + ], + 'shortcodes': [ + ':orange_heart:' + ] + }, + { + 'name': 'yellow heart', + 'unicode': '1F49B', + 'emoji': '๐Ÿ’›', + 'data': '💛', + 'tags': [ + '143', + 'cardiac', + 'emotion', + 'heart', + 'ily', + 'love', + 'yellow' + ], + 'shortcodes': [ + ':yellow_heart:' + ] + }, + { + 'name': 'green heart', + 'unicode': '1F49A', + 'emoji': '๐Ÿ’š', + 'data': '💚', + 'tags': [ + '143', + 'emotion', + 'green', + 'heart', + 'ily', + 'love', + 'romantic' + ], + 'shortcodes': [ + ':green_heart:' + ] + }, + { + 'name': 'blue heart', + 'unicode': '1F499', + 'emoji': '๐Ÿ’™', + 'data': '💙', + 'tags': [ + '143', + 'blue', + 'emotion', + 'heart', + 'ily', + 'love', + 'romance' + ], + 'shortcodes': [ + ':blue_heart:' + ] + }, + { + 'name': 'light blue heart', + 'unicode': '1FA75', + 'emoji': '๐Ÿฉต', + 'data': '🩵', + 'tags': [ + '143', + 'blue', + 'cute', + 'cyan', + 'emotion', + 'heart', + 'ily', + 'light', + 'like', + 'love', + 'sky', + 'special', + 'teal' + ], + 'shortcodes': [ + ':light_blue_heart:' + ] + }, + { + 'name': 'purple heart', + 'unicode': '1F49C', + 'emoji': '๐Ÿ’œ', + 'data': '💜', + 'tags': [ + '143', + 'bestest', + 'emotion', + 'heart', + 'ily', + 'love', + 'purple' + ], + 'shortcodes': [ + ':purple_heart:' + ] + }, + { + 'name': 'brown heart', + 'unicode': '1F90E', + 'emoji': '๐ŸคŽ', + 'data': '🤎', + 'tags': [ + '143', + 'brown', + 'heart' + ], + 'shortcodes': [ + ':brown_heart:' + ] + }, + { + 'name': 'black heart', + 'unicode': '1F5A4', + 'emoji': '๐Ÿ–ค', + 'data': '🖤', + 'tags': [ + 'black', + 'evil', + 'heart', + 'wicked' + ], + 'shortcodes': [ + ':black_heart:' + ] + }, + { + 'name': 'grey heart', + 'unicode': '1FA76', + 'emoji': '๐Ÿฉถ', + 'data': '🩶', + 'tags': [ + '143', + 'emotion', + 'gray', + 'grey', + 'heart', + 'ily', + 'love', + 'silver', + 'slate', + 'special' + ], + 'shortcodes': [ + ':grey_heart:' + ] + }, + { + 'name': 'white heart', + 'unicode': '1F90D', + 'emoji': '๐Ÿค', + 'data': '🤍', + 'tags': [ + '143', + 'heart', + 'white' + ], + 'shortcodes': [ + ':white_heart:' + ] + }, + { + 'name': 'kiss mark', + 'unicode': '1F48B', + 'emoji': '๐Ÿ’‹', + 'data': '💋', + 'tags': [ + 'dating', + 'emotion', + 'heart', + 'kiss', + 'kissing', + 'lips', + 'mark', + 'romance', + 'sexy' + ], + 'shortcodes': [ + ':kiss_mark:' + ] + }, + { + 'name': 'hundred points', + 'unicode': '1F4AF', + 'emoji': '๐Ÿ’ฏ', + 'data': '💯', + 'tags': [ + '100', + 'a+', + 'agree', + 'clearly', + 'definitely', + 'faithful', + 'fleek', + 'full', + 'hundred', + 'keep', + 'perfect', + 'point', + 'score', + 'true', + 'truth', + 'yup' + ], + 'shortcodes': [ + ':hundred_points:' + ] + }, + { + 'name': 'anger symbol', + 'unicode': '1F4A2', + 'emoji': '๐Ÿ’ข', + 'data': '💢', + 'tags': [ + 'anger', + 'angry', + 'comic', + 'mad', + 'symbol', + 'upset' + ], + 'shortcodes': [ + ':anger_symbol:' + ] + }, + { + 'name': 'collision', + 'unicode': '1F4A5', + 'emoji': '๐Ÿ’ฅ', + 'data': '💥', + 'tags': [ + 'bomb', + 'boom', + 'collide', + 'comic', + 'explode' + ], + 'shortcodes': [ + ':collision:' + ] + }, + { + 'name': 'dizzy', + 'unicode': '1F4AB', + 'emoji': '๐Ÿ’ซ', + 'data': '💫', + 'tags': [ + 'comic', + 'shining', + 'shooting', + 'star', + 'stars' + ], + 'shortcodes': [ + ':dizzy:' + ] + }, + { + 'name': 'sweat droplets', + 'unicode': '1F4A6', + 'emoji': '๐Ÿ’ฆ', + 'data': '💦', + 'tags': [ + 'comic', + 'drip', + 'droplet', + 'droplets', + 'drops', + 'splashing', + 'squirt', + 'sweat', + 'water', + 'wet', + 'work', + 'workout' + ], + 'shortcodes': [ + ':sweat_droplets:' + ] + }, + { + 'name': 'dashing away', + 'unicode': '1F4A8', + 'emoji': '๐Ÿ’จ', + 'data': '💨', + 'tags': [ + 'away', + 'cloud', + 'comic', + 'dash', + 'dashing', + 'fart', + 'fast', + 'go', + 'gone', + 'gotta', + 'running', + 'smoke' + ], + 'shortcodes': [ + ':dashing_away:' + ] + }, + { + 'name': 'hole', + 'unicode': '1F573', + 'emoji': '๐Ÿ•ณ', + 'data': '🕳', + 'tags': [ + 'hole' + ], + 'shortcodes': [ + ':hole:' + ] + }, + { + 'name': 'speech balloon', + 'unicode': '1F4AC', + 'emoji': '๐Ÿ’ฌ', + 'data': '💬', + 'tags': [ + 'balloon', + 'bubble', + 'comic', + 'dialog', + 'message', + 'sms', + 'speech', + 'talk', + 'text', + 'typing' + ], + 'shortcodes': [ + ':speech_balloon:' + ] + }, + { + 'name': 'eye in speech bubble', + 'unicode': '1F441-FE0F-200D-1F5E8-FE0F', + 'emoji': '๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ', + 'data': '👁-FE0F-200D-1F5E8-FE0F;', + 'tags': [ + 'balloon', + 'bubble', + 'eye', + 'speech', + 'witness' + ], + 'shortcodes': [ + ':eye_in_speech_bubble:' + ] + }, + { + 'name': 'left speech bubble', + 'unicode': '1F5E8', + 'emoji': '๐Ÿ—จ', + 'data': '🗨', + 'tags': [ + 'balloon', + 'bubble', + 'dialog', + 'left', + 'speech' + ], + 'shortcodes': [ + ':left_speech_bubble:' + ] + }, + { + 'name': 'right anger bubble', + 'unicode': '1F5EF', + 'emoji': '๐Ÿ—ฏ', + 'data': '🗯', + 'tags': [ + 'anger', + 'angry', + 'balloon', + 'bubble', + 'mad', + 'right' + ], + 'shortcodes': [ + ':right_anger_bubble:' + ] + }, + { + 'name': 'thought balloon', + 'unicode': '1F4AD', + 'emoji': '๐Ÿ’ญ', + 'data': '💭', + 'tags': [ + 'balloon', + 'bubble', + 'cartoon', + 'cloud', + 'comic', + 'daydream', + 'decisions', + 'dream', + 'idea', + 'invent', + 'invention', + 'realize', + 'think', + 'thoughts', + 'wonder' + ], + 'shortcodes': [ + ':thought_balloon:' + ] + }, + { + 'name': 'ZZZ', + 'unicode': '1F4A4', + 'emoji': '๐Ÿ’ค', + 'data': '💤', + 'tags': [ + 'comic', + 'good', + 'goodnight', + 'night', + 'sleep', + 'sleeping', + 'sleepy', + 'tired', + 'zzz' + ], + 'shortcodes': [ + ':zzz:' + ] + } + ] + }, + { + 'name': 'people-body', + 'iconClass': 'fas fa-user', + 'emojis': [ + { + 'name': 'waving hand', + 'unicode': '1F44B', + 'emoji': '๐Ÿ‘‹', + 'data': '👋', + 'tags': [ + 'bye', + 'cya', + 'g2g', + 'greetings', + 'gtg', + 'hand', + 'hello', + 'hey', + 'hi', + 'later', + 'outtie', + 'ttfn', + 'ttyl', + 'wave', + 'yo', + 'you' + ], + 'shortcodes': [ + ':waving_hand:' + ] + }, + { + 'name': 'raised back of hand', + 'unicode': '1F91A', + 'emoji': '๐Ÿคš', + 'data': '🤚', + 'tags': [ + 'back', + 'backhand', + 'hand', + 'raised' + ], + 'shortcodes': [ + ':raised_back_of_hand:' + ] + }, + { + 'name': 'hand with fingers splayed', + 'unicode': '1F590', + 'emoji': '๐Ÿ–', + 'data': '🖐', + 'tags': [ + 'finger', + 'fingers', + 'hand', + 'raised', + 'splayed', + 'stop' + ], + 'shortcodes': [ + ':hand_with_fingers_splayed:' + ] + }, + { + 'name': 'raised hand', + 'unicode': '270B', + 'emoji': 'โœ‹', + 'data': '✋', + 'tags': [ + '5', + 'five', + 'hand', + 'high', + 'raised', + 'stop' + ], + 'shortcodes': [ + ':raised_hand:' + ] + }, + { + 'name': 'vulcan salute', + 'unicode': '1F596', + 'emoji': '๐Ÿ––', + 'data': '🖖', + 'tags': [ + 'finger', + 'hand', + 'hands', + 'salute', + 'vulcan' + ], + 'shortcodes': [ + ':vulcan_salute:' + ] + }, + { + 'name': 'rightwards hand', + 'unicode': '1FAF1', + 'emoji': '๐Ÿซฑ', + 'data': '🫱', + 'tags': [ + 'hand', + 'handshake', + 'hold', + 'reach', + 'right', + 'rightward', + 'rightwards', + 'shake' + ], + 'shortcodes': [ + ':rightwards_hand:' + ] + }, + { + 'name': 'leftwards hand', + 'unicode': '1FAF2', + 'emoji': '๐Ÿซฒ', + 'data': '🫲', + 'tags': [ + 'hand', + 'handshake', + 'hold', + 'left', + 'leftward', + 'leftwards', + 'reach', + 'shake' + ], + 'shortcodes': [ + ':leftwards_hand:' + ] + }, + { + 'name': 'palm down hand', + 'unicode': '1FAF3', + 'emoji': '๐Ÿซณ', + 'data': '🫳', + 'tags': [ + 'dismiss', + 'down', + 'drop', + 'dropped', + 'hand', + 'palm', + 'pick', + 'shoo', + 'up' + ], + 'shortcodes': [ + ':palm_down_hand:' + ] + }, + { + 'name': 'palm up hand', + 'unicode': '1FAF4', + 'emoji': '๐Ÿซด', + 'data': '🫴', + 'tags': [ + 'beckon', + 'catch', + 'come', + 'hand', + 'hold', + 'know', + 'lift', + 'me', + 'offer', + 'palm', + 'tell' + ], + 'shortcodes': [ + ':palm_up_hand:' + ] + }, + { + 'name': 'leftwards pushing hand', + 'unicode': '1FAF7', + 'emoji': '๐Ÿซท', + 'data': '🫷', + 'tags': [ + 'block', + 'five', + 'halt', + 'hand', + 'high', + 'hold', + 'leftward', + 'leftwards', + 'pause', + 'push', + 'pushing', + 'refuse', + 'slap', + 'stop', + 'wait' + ], + 'shortcodes': [ + ':leftwards_pushing_hand:' + ] + }, + { + 'name': 'rightwards pushing hand', + 'unicode': '1FAF8', + 'emoji': '๐Ÿซธ', + 'data': '🫸', + 'tags': [ + 'block', + 'five', + 'halt', + 'hand', + 'high', + 'hold', + 'pause', + 'push', + 'pushing', + 'refuse', + 'rightward', + 'rightwards', + 'slap', + 'stop', + 'wait' + ], + 'shortcodes': [ + ':rightwards_pushing_hand:' + ] + }, + { + 'name': 'OK hand', + 'unicode': '1F44C', + 'emoji': '๐Ÿ‘Œ', + 'data': '👌', + 'tags': [ + 'awesome', + 'bet', + 'dope', + 'fleek', + 'fosho', + 'got', + 'gotcha', + 'hand', + 'legit', + 'ok', + 'okay', + 'pinch', + 'rad', + 'sure', + 'sweet', + 'three' + ], + 'shortcodes': [ + ':ok_hand:' + ] + }, + { + 'name': 'pinched fingers', + 'unicode': '1F90C', + 'emoji': '๐ŸคŒ', + 'data': '🤌', + 'tags': [ + 'fingers', + 'gesture', + 'hand', + 'hold', + 'huh', + 'interrogation', + 'patience', + 'pinched', + 'relax', + 'sarcastic', + 'ugh', + 'what', + 'zip' + ], + 'shortcodes': [ + ':pinched_fingers:' + ] + }, + { + 'name': 'pinching hand', + 'unicode': '1F90F', + 'emoji': '๐Ÿค', + 'data': '🤏', + 'tags': [ + 'amount', + 'bit', + 'fingers', + 'hand', + 'little', + 'pinching', + 'small', + 'sort' + ], + 'shortcodes': [ + ':pinching_hand:' + ] + }, + { + 'name': 'victory hand', + 'unicode': '270C', + 'emoji': 'โœŒ', + 'data': '✌', + 'tags': [ + 'hand', + 'peace', + 'v', + 'victory' + ], + 'shortcodes': [ + ':victory_hand:' + ] + }, + { + 'name': 'crossed fingers', + 'unicode': '1F91E', + 'emoji': '๐Ÿคž', + 'data': '🤞', + 'tags': [ + 'cross', + 'crossed', + 'finger', + 'fingers', + 'hand', + 'luck' + ], + 'shortcodes': [ + ':crossed_fingers:' + ] + }, + { + 'name': 'hand with index finger and thumb crossed', + 'unicode': '1FAF0', + 'emoji': '๐Ÿซฐ', + 'data': '🫰', + 'tags': [ + '<3', + 'crossed', + 'expensive', + 'finger', + 'hand', + 'heart', + 'index', + 'love', + 'money', + 'snap', + 'thumb' + ], + 'shortcodes': [ + ':hand_with_index_finger_and_thumb_crossed:' + ] + }, + { + 'name': 'love-you gesture', + 'unicode': '1F91F', + 'emoji': '๐ŸคŸ', + 'data': '🤟', + 'tags': [ + 'fingers', + 'gesture', + 'hand', + 'ily', + 'love', + 'love-you', + 'three', + 'you' + ], + 'shortcodes': [ + ':love-you_gesture:' + ] + }, + { + 'name': 'sign of the horns', + 'unicode': '1F918', + 'emoji': '๐Ÿค˜', + 'data': '🤘', + 'tags': [ + 'finger', + 'hand', + 'horns', + 'rock-on', + 'sign' + ], + 'shortcodes': [ + ':sign_of_the_horns:' + ] + }, + { + 'name': 'call me hand', + 'unicode': '1F919', + 'emoji': '๐Ÿค™', + 'data': '🤙', + 'tags': [ + 'call', + 'hand', + 'hang', + 'loose', + 'me', + 'shaka' + ], + 'shortcodes': [ + ':call_me_hand:' + ] + }, + { + 'name': 'backhand index pointing left', + 'unicode': '1F448', + 'emoji': '๐Ÿ‘ˆ', + 'data': '👈', + 'tags': [ + 'backhand', + 'finger', + 'hand', + 'index', + 'left', + 'point', + 'pointing' + ], + 'shortcodes': [ + ':backhand_index_pointing_left:' + ] + }, + { + 'name': 'backhand index pointing right', + 'unicode': '1F449', + 'emoji': '๐Ÿ‘‰', + 'data': '👉', + 'tags': [ + 'backhand', + 'finger', + 'hand', + 'index', + 'point', + 'pointing', + 'right' + ], + 'shortcodes': [ + ':backhand_index_pointing_right:' + ] + }, + { + 'name': 'backhand index pointing up', + 'unicode': '1F446', + 'emoji': '๐Ÿ‘†', + 'data': '👆', + 'tags': [ + 'backhand', + 'finger', + 'hand', + 'index', + 'point', + 'pointing', + 'up' + ], + 'shortcodes': [ + ':backhand_index_pointing_up:' + ] + }, + { + 'name': 'backhand index pointing down', + 'unicode': '1F447', + 'emoji': '๐Ÿ‘‡', + 'data': '👇', + 'tags': [ + 'backhand', + 'down', + 'finger', + 'hand', + 'index', + 'point', + 'pointing' + ], + 'shortcodes': [ + ':backhand_index_pointing_down:' + ] + }, + { + 'name': 'index pointing up', + 'unicode': '261D', + 'emoji': 'โ˜', + 'data': '☝', + 'tags': [ + 'finger', + 'hand', + 'index', + 'point', + 'pointing', + 'this', + 'up' + ], + 'shortcodes': [ + ':index_pointing_up:' + ] + }, + { + 'name': 'index pointing at the viewer', + 'unicode': '1FAF5', + 'emoji': '๐Ÿซต', + 'data': '🫵', + 'tags': [ + 'at', + 'finger', + 'hand', + 'index', + 'pointing', + 'poke', + 'viewer', + 'you' + ], + 'shortcodes': [ + ':index_pointing_at_the_viewer:' + ] + }, + { + 'name': 'thumbs up', + 'unicode': '1F44D', + 'emoji': '๐Ÿ‘', + 'data': '👍', + 'tags': [ + '+1', + 'good', + 'hand', + 'like', + 'thumb', + 'up', + 'yes' + ], + 'shortcodes': [ + ':thumbs_up:' + ] + }, + { + 'name': 'thumbs down', + 'unicode': '1F44E', + 'emoji': '๐Ÿ‘Ž', + 'data': '👎', + 'tags': [ + '-1', + 'bad', + 'dislike', + 'down', + 'good', + 'hand', + 'no', + 'nope', + 'thumb', + 'thumbs' + ], + 'shortcodes': [ + ':thumbs_down:' + ] + }, + { + 'name': 'raised fist', + 'unicode': '270A', + 'emoji': 'โœŠ', + 'data': '✊', + 'tags': [ + 'clenched', + 'fist', + 'hand', + 'punch', + 'raised', + 'solidarity' + ], + 'shortcodes': [ + ':raised_fist:' + ] + }, + { + 'name': 'oncoming fist', + 'unicode': '1F44A', + 'emoji': '๐Ÿ‘Š', + 'data': '👊', + 'tags': [ + 'absolutely', + 'agree', + 'boom', + 'bro', + 'bruh', + 'bump', + 'clenched', + 'correct', + 'fist', + 'hand', + 'knuckle', + 'oncoming', + 'pound', + 'punch', + 'rock', + 'ttyl' + ], + 'shortcodes': [ + ':oncoming_fist:' + ] + }, + { + 'name': 'left-facing fist', + 'unicode': '1F91B', + 'emoji': '๐Ÿค›', + 'data': '🤛', + 'tags': [ + 'fist', + 'left-facing', + 'leftwards' + ], + 'shortcodes': [ + ':left-facing_fist:' + ] + }, + { + 'name': 'right-facing fist', + 'unicode': '1F91C', + 'emoji': '๐Ÿคœ', + 'data': '🤜', + 'tags': [ + 'fist', + 'right-facing', + 'rightwards' + ], + 'shortcodes': [ + ':right-facing_fist:' + ] + }, + { + 'name': 'clapping hands', + 'unicode': '1F44F', + 'emoji': '๐Ÿ‘', + 'data': '👏', + 'tags': [ + 'applause', + 'approval', + 'awesome', + 'clap', + 'congrats', + 'congratulations', + 'excited', + 'good', + 'great', + 'hand', + 'homie', + 'job', + 'nice', + 'prayed', + 'well', + 'yay' + ], + 'shortcodes': [ + ':clapping_hands:' + ] + }, + { + 'name': 'raising hands', + 'unicode': '1F64C', + 'emoji': '๐Ÿ™Œ', + 'data': '🙌', + 'tags': [ + 'celebration', + 'gesture', + 'hand', + 'hands', + 'hooray', + 'praise', + 'raised', + 'raising' + ], + 'shortcodes': [ + ':raising_hands:' + ] + }, + { + 'name': 'heart hands', + 'unicode': '1FAF6', + 'emoji': '๐Ÿซถ', + 'data': '🫶', + 'tags': [ + '<3', + 'hands', + 'heart', + 'love', + 'you' + ], + 'shortcodes': [ + ':heart_hands:' + ] + }, + { + 'name': 'open hands', + 'unicode': '1F450', + 'emoji': '๐Ÿ‘', + 'data': '👐', + 'tags': [ + 'hand', + 'hands', + 'hug', + 'jazz', + 'open', + 'swerve' + ], + 'shortcodes': [ + ':open_hands:' + ] + }, + { + 'name': 'palms up together', + 'unicode': '1F932', + 'emoji': '๐Ÿคฒ', + 'data': '🤲', + 'tags': [ + 'cupped', + 'dua', + 'hands', + 'palms', + 'pray', + 'prayer', + 'together', + 'up', + 'wish' + ], + 'shortcodes': [ + ':palms_up_together:' + ] + }, + { + 'name': 'handshake', + 'unicode': '1F91D', + 'emoji': '๐Ÿค', + 'data': '🤝', + 'tags': [ + 'agreement', + 'deal', + 'hand', + 'meeting', + 'shake' + ], + 'shortcodes': [ + ':handshake:' + ] + }, + { + 'name': 'folded hands', + 'unicode': '1F64F', + 'emoji': '๐Ÿ™', + 'data': '🙏', + 'tags': [ + 'appreciate', + 'ask', + 'beg', + 'blessed', + 'bow', + 'cmon', + 'five', + 'folded', + 'gesture', + 'hand', + 'high', + 'please', + 'pray', + 'thanks', + 'thx' + ], + 'shortcodes': [ + ':folded_hands:' + ] + }, + { + 'name': 'writing hand', + 'unicode': '270D', + 'emoji': 'โœ', + 'data': '✍', + 'tags': [ + 'hand', + 'write', + 'writing' + ], + 'shortcodes': [ + ':writing_hand:' + ] + }, + { + 'name': 'nail polish', + 'unicode': '1F485', + 'emoji': '๐Ÿ’…', + 'data': '💅', + 'tags': [ + 'bored', + 'care', + 'cosmetics', + 'done', + 'makeup', + 'manicure', + 'nail', + 'polish', + 'whatever' + ], + 'shortcodes': [ + ':nail_polish:' + ] + }, + { + 'name': 'selfie', + 'unicode': '1F933', + 'emoji': '๐Ÿคณ', + 'data': '🤳', + 'tags': [ + 'camera', + 'phone' + ], + 'shortcodes': [ + ':selfie:' + ] + }, + { + 'name': 'flexed biceps', + 'unicode': '1F4AA', + 'emoji': '๐Ÿ’ช', + 'data': '💪', + 'tags': [ + 'arm', + 'beast', + 'bench', + 'biceps', + 'bodybuilder', + 'bro', + 'curls', + 'flex', + 'gains', + 'gym', + 'jacked', + 'muscle', + 'press', + 'ripped', + 'strong', + 'weightlift' + ], + 'shortcodes': [ + ':flexed_biceps:' + ] + }, + { + 'name': 'mechanical arm', + 'unicode': '1F9BE', + 'emoji': '๐Ÿฆพ', + 'data': '🦾', + 'tags': [ + 'accessibility', + 'arm', + 'mechanical', + 'prosthetic' + ], + 'shortcodes': [ + ':mechanical_arm:' + ] + }, + { + 'name': 'mechanical leg', + 'unicode': '1F9BF', + 'emoji': '๐Ÿฆฟ', + 'data': '🦿', + 'tags': [ + 'accessibility', + 'leg', + 'mechanical', + 'prosthetic' + ], + 'shortcodes': [ + ':mechanical_leg:' + ] + }, + { + 'name': 'leg', + 'unicode': '1F9B5', + 'emoji': '๐Ÿฆต', + 'data': '🦵', + 'tags': [ + 'bent', + 'foot', + 'kick', + 'knee', + 'limb' + ], + 'shortcodes': [ + ':leg:' + ] + }, + { + 'name': 'foot', + 'unicode': '1F9B6', + 'emoji': '๐Ÿฆถ', + 'data': '🦶', + 'tags': [ + 'ankle', + 'feet', + 'kick', + 'stomp' + ], + 'shortcodes': [ + ':foot:' + ] + }, + { + 'name': 'ear', + 'unicode': '1F442', + 'emoji': '๐Ÿ‘‚', + 'data': '👂', + 'tags': [ + 'body', + 'ears', + 'hear', + 'hearing', + 'listen', + 'listening', + 'sound' + ], + 'shortcodes': [ + ':ear:' + ] + }, + { + 'name': 'ear with hearing aid', + 'unicode': '1F9BB', + 'emoji': '๐Ÿฆป', + 'data': '🦻', + 'tags': [ + 'accessibility', + 'aid', + 'ear', + 'hard', + 'hearing' + ], + 'shortcodes': [ + ':ear_with_hearing_aid:' + ] + }, + { + 'name': 'nose', + 'unicode': '1F443', + 'emoji': '๐Ÿ‘ƒ', + 'data': '👃', + 'tags': [ + 'body', + 'noses', + 'nosey', + 'odor', + 'smell', + 'smells' + ], + 'shortcodes': [ + ':nose:' + ] + }, + { + 'name': 'brain', + 'unicode': '1F9E0', + 'emoji': '๐Ÿง ', + 'data': '🧠', + 'tags': [ + 'intelligent', + 'smart' + ], + 'shortcodes': [ + ':brain:' + ] + }, + { + 'name': 'anatomical heart', + 'unicode': '1FAC0', + 'emoji': '๐Ÿซ€', + 'data': '🫀', + 'tags': [ + 'anatomical', + 'beat', + 'cardiology', + 'heart', + 'heartbeat', + 'organ', + 'pulse', + 'real', + 'red' + ], + 'shortcodes': [ + ':anatomical_heart:' + ] + }, + { + 'name': 'lungs', + 'unicode': '1FAC1', + 'emoji': '๐Ÿซ', + 'data': '🫁', + 'tags': [ + 'breath', + 'breathe', + 'exhalation', + 'inhalation', + 'lung', + 'organ', + 'respiration' + ], + 'shortcodes': [ + ':lungs:' + ] + }, + { + 'name': 'tooth', + 'unicode': '1F9B7', + 'emoji': '๐Ÿฆท', + 'data': '🦷', + 'tags': [ + 'dentist', + 'pearly', + 'teeth', + 'white' + ], + 'shortcodes': [ + ':tooth:' + ] + }, + { + 'name': 'bone', + 'unicode': '1F9B4', + 'emoji': '๐Ÿฆด', + 'data': '🦴', + 'tags': [ + 'bones', + 'dog', + 'skeleton', + 'wishbone' + ], + 'shortcodes': [ + ':bone:' + ] + }, + { + 'name': 'eyes', + 'unicode': '1F440', + 'emoji': '๐Ÿ‘€', + 'data': '👀', + 'tags': [ + 'body', + 'eye', + 'face', + 'googly', + 'look', + 'looking', + 'omg', + 'peep', + 'see', + 'seeing' + ], + 'shortcodes': [ + ':eyes:' + ] + }, + { + 'name': 'eye', + 'unicode': '1F441', + 'emoji': '๐Ÿ‘', + 'data': '👁', + 'tags': [ + '1', + 'body', + 'one' + ], + 'shortcodes': [ + ':eye:' + ] + }, + { + 'name': 'tongue', + 'unicode': '1F445', + 'emoji': '๐Ÿ‘…', + 'data': '👅', + 'tags': [ + 'body', + 'lick', + 'slurp' + ], + 'shortcodes': [ + ':tongue:' + ] + }, + { + 'name': 'mouth', + 'unicode': '1F444', + 'emoji': '๐Ÿ‘„', + 'data': '👄', + 'tags': [ + 'beauty', + 'body', + 'kiss', + 'kissing', + 'lips', + 'lipstick' + ], + 'shortcodes': [ + ':mouth:' + ] + }, + { + 'name': 'biting lip', + 'unicode': '1FAE6', + 'emoji': '๐Ÿซฆ', + 'data': '🫦', + 'tags': [ + 'anxious', + 'bite', + 'biting', + 'fear', + 'flirt', + 'flirting', + 'kiss', + 'lip', + 'lipstick', + 'nervous', + 'sexy', + 'uncomfortable', + 'worried', + 'worry' + ], + 'shortcodes': [ + ':biting_lip:' + ] + }, + { + 'name': 'baby', + 'unicode': '1F476', + 'emoji': '๐Ÿ‘ถ', + 'data': '👶', + 'tags': [ + 'babies', + 'children', + 'goo', + 'infant', + 'newborn', + 'pregnant', + 'young' + ], + 'shortcodes': [ + ':baby:' + ] + }, + { + 'name': 'child', + 'unicode': '1F9D2', + 'emoji': '๐Ÿง’', + 'data': '🧒', + 'tags': [ + 'bright-eyed', + 'grandchild', + 'kid', + 'young', + 'younger' + ], + 'shortcodes': [ + ':child:' + ] + }, + { + 'name': 'boy', + 'unicode': '1F466', + 'emoji': '๐Ÿ‘ฆ', + 'data': '👦', + 'tags': [ + 'bright-eyed', + 'child', + 'grandson', + 'kid', + 'son', + 'young', + 'younger' + ], + 'shortcodes': [ + ':boy:' + ] + }, + { + 'name': 'girl', + 'unicode': '1F467', + 'emoji': '๐Ÿ‘ง', + 'data': '👧', + 'tags': [ + 'bright-eyed', + 'child', + 'daughter', + 'granddaughter', + 'kid', + 'virgo', + 'young', + 'younger', + 'zodiac' + ], + 'shortcodes': [ + ':girl:' + ] + }, + { + 'name': 'person', + 'unicode': '1F9D1', + 'emoji': '๐Ÿง‘', + 'data': '🧑', + 'tags': [ + 'adult' + ], + 'shortcodes': [ + ':person:' + ] + }, + { + 'name': 'person: blond hair', + 'unicode': '1F471', + 'emoji': '๐Ÿ‘ฑ', + 'data': '👱', + 'tags': [ + 'blond', + 'blond-haired', + 'human', + 'person' + ], + 'shortcodes': [ + ':person:_blond_hair:' + ] + }, + { + 'name': 'man', + 'unicode': '1F468', + 'emoji': '๐Ÿ‘จ', + 'data': '👨', + 'tags': [ + 'adult', + 'bro' + ], + 'shortcodes': [ + ':man:' + ] + }, + { + 'name': 'person: beard', + 'unicode': '1F9D4', + 'emoji': '๐Ÿง”', + 'data': '🧔', + 'tags': [ + 'beard', + 'bearded', + 'person', + 'whiskers' + ], + 'shortcodes': [ + ':person:_beard:' + ] + }, + { + 'name': 'man: beard', + 'unicode': '1F9D4-200D-2642-FE0F', + 'emoji': '๐Ÿง”โ€โ™‚๏ธ', + 'data': '🧔-200D-2642-FE0F;', + 'tags': [ + 'beard', + 'bearded', + 'man', + 'whiskers' + ], + 'shortcodes': [ + ':man:_beard:' + ] + }, + { + 'name': 'woman: beard', + 'unicode': '1F9D4-200D-2640-FE0F', + 'emoji': '๐Ÿง”โ€โ™€๏ธ', + 'data': '🧔-200D-2640-FE0F;', + 'tags': [ + 'beard', + 'bearded', + 'whiskers', + 'woman' + ], + 'shortcodes': [ + ':woman:_beard:' + ] + }, + { + 'name': 'man: red hair', + 'unicode': '1F468-200D-1F9B0', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆฐ', + 'data': '👨-200D-1F9B0;', + 'tags': [ + 'adult', + 'bro', + 'man', + 'red hair' + ], + 'shortcodes': [ + ':man:_red_hair:' + ] + }, + { + 'name': 'man: curly hair', + 'unicode': '1F468-200D-1F9B1', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆฑ', + 'data': '👨-200D-1F9B1;', + 'tags': [ + 'adult', + 'bro', + 'curly hair', + 'man' + ], + 'shortcodes': [ + ':man:_curly_hair:' + ] + }, + { + 'name': 'man: white hair', + 'unicode': '1F468-200D-1F9B3', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆณ', + 'data': '👨-200D-1F9B3;', + 'tags': [ + 'adult', + 'bro', + 'man', + 'white hair' + ], + 'shortcodes': [ + ':man:_white_hair:' + ] + }, + { + 'name': 'man: bald', + 'unicode': '1F468-200D-1F9B2', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆฒ', + 'data': '👨-200D-1F9B2;', + 'tags': [ + 'adult', + 'bald', + 'bro', + 'man' + ], + 'shortcodes': [ + ':man:_bald:' + ] + }, + { + 'name': 'woman', + 'unicode': '1F469', + 'emoji': '๐Ÿ‘ฉ', + 'data': '👩', + 'tags': [ + 'adult', + 'lady' + ], + 'shortcodes': [ + ':woman:' + ] + }, + { + 'name': 'woman: red hair', + 'unicode': '1F469-200D-1F9B0', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆฐ', + 'data': '👩-200D-1F9B0;', + 'tags': [ + 'adult', + 'lady', + 'red hair', + 'woman' + ], + 'shortcodes': [ + ':woman:_red_hair:' + ] + }, + { + 'name': 'person: red hair', + 'unicode': '1F9D1-200D-1F9B0', + 'emoji': '๐Ÿง‘โ€๐Ÿฆฐ', + 'data': '🧑-200D-1F9B0;', + 'tags': [ + 'adult', + 'person', + 'red hair' + ], + 'shortcodes': [ + ':person:_red_hair:' + ] + }, + { + 'name': 'woman: curly hair', + 'unicode': '1F469-200D-1F9B1', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆฑ', + 'data': '👩-200D-1F9B1;', + 'tags': [ + 'adult', + 'curly hair', + 'lady', + 'woman' + ], + 'shortcodes': [ + ':woman:_curly_hair:' + ] + }, + { + 'name': 'person: curly hair', + 'unicode': '1F9D1-200D-1F9B1', + 'emoji': '๐Ÿง‘โ€๐Ÿฆฑ', + 'data': '🧑-200D-1F9B1;', + 'tags': [ + 'adult', + 'curly hair', + 'person' + ], + 'shortcodes': [ + ':person:_curly_hair:' + ] + }, + { + 'name': 'woman: white hair', + 'unicode': '1F469-200D-1F9B3', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆณ', + 'data': '👩-200D-1F9B3;', + 'tags': [ + 'adult', + 'lady', + 'white hair', + 'woman' + ], + 'shortcodes': [ + ':woman:_white_hair:' + ] + }, + { + 'name': 'person: white hair', + 'unicode': '1F9D1-200D-1F9B3', + 'emoji': '๐Ÿง‘โ€๐Ÿฆณ', + 'data': '🧑-200D-1F9B3;', + 'tags': [ + 'adult', + 'person', + 'white hair' + ], + 'shortcodes': [ + ':person:_white_hair:' + ] + }, + { + 'name': 'woman: bald', + 'unicode': '1F469-200D-1F9B2', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆฒ', + 'data': '👩-200D-1F9B2;', + 'tags': [ + 'adult', + 'bald', + 'lady', + 'woman' + ], + 'shortcodes': [ + ':woman:_bald:' + ] + }, + { + 'name': 'person: bald', + 'unicode': '1F9D1-200D-1F9B2', + 'emoji': '๐Ÿง‘โ€๐Ÿฆฒ', + 'data': '🧑-200D-1F9B2;', + 'tags': [ + 'adult', + 'bald', + 'person' + ], + 'shortcodes': [ + ':person:_bald:' + ] + }, + { + 'name': 'woman: blond hair', + 'unicode': '1F471-200D-2640-FE0F', + 'emoji': '๐Ÿ‘ฑโ€โ™€๏ธ', + 'data': '👱-200D-2640-FE0F;', + 'tags': [ + 'blond', + 'blond-haired', + 'blonde', + 'hair', + 'woman' + ], + 'shortcodes': [ + ':woman:_blond_hair:' + ] + }, + { + 'name': 'man: blond hair', + 'unicode': '1F471-200D-2642-FE0F', + 'emoji': '๐Ÿ‘ฑโ€โ™‚๏ธ', + 'data': '👱-200D-2642-FE0F;', + 'tags': [ + 'blond', + 'blond-haired', + 'hair', + 'man' + ], + 'shortcodes': [ + ':man:_blond_hair:' + ] + }, + { + 'name': 'older person', + 'unicode': '1F9D3', + 'emoji': '๐Ÿง“', + 'data': '🧓', + 'tags': [ + 'adult', + 'elderly', + 'grandparent', + 'old', + 'person', + 'wise' + ], + 'shortcodes': [ + ':older_person:' + ] + }, + { + 'name': 'old man', + 'unicode': '1F474', + 'emoji': '๐Ÿ‘ด', + 'data': '👴', + 'tags': [ + 'adult', + 'bald', + 'elderly', + 'gramps', + 'grandfather', + 'grandpa', + 'man', + 'old', + 'wise' + ], + 'shortcodes': [ + ':old_man:' + ] + }, + { + 'name': 'old woman', + 'unicode': '1F475', + 'emoji': '๐Ÿ‘ต', + 'data': '👵', + 'tags': [ + 'adult', + 'elderly', + 'grandma', + 'grandmother', + 'granny', + 'lady', + 'old', + 'wise', + 'woman' + ], + 'shortcodes': [ + ':old_woman:' + ] + }, + { + 'name': 'person frowning', + 'unicode': '1F64D', + 'emoji': '๐Ÿ™', + 'data': '🙍', + 'tags': [ + 'annoyed', + 'disappointed', + 'disgruntled', + 'disturbed', + 'frown', + 'frowning', + 'frustrated', + 'gesture', + 'irritated', + 'person', + 'upset' + ], + 'shortcodes': [ + ':person_frowning:' + ] + }, + { + 'name': 'man frowning', + 'unicode': '1F64D-200D-2642-FE0F', + 'emoji': '๐Ÿ™โ€โ™‚๏ธ', + 'data': '🙍-200D-2642-FE0F;', + 'tags': [ + 'annoyed', + 'disappointed', + 'disgruntled', + 'disturbed', + 'frown', + 'frowning', + 'frustrated', + 'gesture', + 'irritated', + 'man', + 'upset' + ], + 'shortcodes': [ + ':man_frowning:' + ] + }, + { + 'name': 'woman frowning', + 'unicode': '1F64D-200D-2640-FE0F', + 'emoji': '๐Ÿ™โ€โ™€๏ธ', + 'data': '🙍-200D-2640-FE0F;', + 'tags': [ + 'annoyed', + 'disappointed', + 'disgruntled', + 'disturbed', + 'frown', + 'frowning', + 'frustrated', + 'gesture', + 'irritated', + 'upset', + 'woman' + ], + 'shortcodes': [ + ':woman_frowning:' + ] + }, + { + 'name': 'person pouting', + 'unicode': '1F64E', + 'emoji': '๐Ÿ™Ž', + 'data': '🙎', + 'tags': [ + 'disappointed', + 'downtrodden', + 'frown', + 'grimace', + 'person', + 'pouting', + 'scowl', + 'sulk', + 'upset', + 'whine' + ], + 'shortcodes': [ + ':person_pouting:' + ] + }, + { + 'name': 'man pouting', + 'unicode': '1F64E-200D-2642-FE0F', + 'emoji': '๐Ÿ™Žโ€โ™‚๏ธ', + 'data': '🙎-200D-2642-FE0F;', + 'tags': [ + 'disappointed', + 'downtrodden', + 'frown', + 'grimace', + 'man', + 'pouting', + 'scowl', + 'sulk', + 'upset', + 'whine' + ], + 'shortcodes': [ + ':man_pouting:' + ] + }, + { + 'name': 'woman pouting', + 'unicode': '1F64E-200D-2640-FE0F', + 'emoji': '๐Ÿ™Žโ€โ™€๏ธ', + 'data': '🙎-200D-2640-FE0F;', + 'tags': [ + 'disappointed', + 'downtrodden', + 'frown', + 'grimace', + 'pouting', + 'scowl', + 'sulk', + 'upset', + 'whine', + 'woman' + ], + 'shortcodes': [ + ':woman_pouting:' + ] + }, + { + 'name': 'person gesturing NO', + 'unicode': '1F645', + 'emoji': '๐Ÿ™…', + 'data': '🙅', + 'tags': [ + 'forbidden', + 'gesture', + 'hand', + 'no', + 'not', + 'person', + 'prohibit' + ], + 'shortcodes': [ + ':person_gesturing_no:' + ] + }, + { + 'name': 'man gesturing NO', + 'unicode': '1F645-200D-2642-FE0F', + 'emoji': '๐Ÿ™…โ€โ™‚๏ธ', + 'data': '🙅-200D-2642-FE0F;', + 'tags': [ + 'forbidden', + 'gesture', + 'hand', + 'man', + 'no', + 'not', + 'prohibit' + ], + 'shortcodes': [ + ':man_gesturing_no:' + ] + }, + { + 'name': 'woman gesturing NO', + 'unicode': '1F645-200D-2640-FE0F', + 'emoji': '๐Ÿ™…โ€โ™€๏ธ', + 'data': '🙅-200D-2640-FE0F;', + 'tags': [ + 'forbidden', + 'gesture', + 'hand', + 'no', + 'not', + 'prohibit', + 'woman' + ], + 'shortcodes': [ + ':woman_gesturing_no:' + ] + }, + { + 'name': 'person gesturing OK', + 'unicode': '1F646', + 'emoji': '๐Ÿ™†', + 'data': '🙆', + 'tags': [ + 'exercise', + 'gesture', + 'gesturing', + 'hand', + 'ok', + 'omg', + 'person' + ], + 'shortcodes': [ + ':person_gesturing_ok:' + ] + }, + { + 'name': 'man gesturing OK', + 'unicode': '1F646-200D-2642-FE0F', + 'emoji': '๐Ÿ™†โ€โ™‚๏ธ', + 'data': '🙆-200D-2642-FE0F;', + 'tags': [ + 'exercise', + 'gesture', + 'gesturing', + 'hand', + 'man', + 'ok', + 'omg' + ], + 'shortcodes': [ + ':man_gesturing_ok:' + ] + }, + { + 'name': 'woman gesturing OK', + 'unicode': '1F646-200D-2640-FE0F', + 'emoji': '๐Ÿ™†โ€โ™€๏ธ', + 'data': '🙆-200D-2640-FE0F;', + 'tags': [ + 'exercise', + 'gesture', + 'gesturing', + 'hand', + 'ok', + 'omg', + 'woman' + ], + 'shortcodes': [ + ':woman_gesturing_ok:' + ] + }, + { + 'name': 'person tipping hand', + 'unicode': '1F481', + 'emoji': '๐Ÿ’', + 'data': '💁', + 'tags': [ + 'fetch', + 'flick', + 'flip', + 'gossip', + 'hand', + 'person', + 'sarcasm', + 'sarcastic', + 'sassy', + 'seriously', + 'tipping', + 'whatever' + ], + 'shortcodes': [ + ':person_tipping_hand:' + ] + }, + { + 'name': 'man tipping hand', + 'unicode': '1F481-200D-2642-FE0F', + 'emoji': '๐Ÿ’โ€โ™‚๏ธ', + 'data': '💁-200D-2642-FE0F;', + 'tags': [ + 'fetch', + 'flick', + 'flip', + 'gossip', + 'hand', + 'man', + 'sarcasm', + 'sarcastic', + 'sassy', + 'seriously', + 'tipping', + 'whatever' + ], + 'shortcodes': [ + ':man_tipping_hand:' + ] + }, + { + 'name': 'woman tipping hand', + 'unicode': '1F481-200D-2640-FE0F', + 'emoji': '๐Ÿ’โ€โ™€๏ธ', + 'data': '💁-200D-2640-FE0F;', + 'tags': [ + 'fetch', + 'flick', + 'flip', + 'gossip', + 'hand', + 'sarcasm', + 'sarcastic', + 'sassy', + 'seriously', + 'tipping', + 'whatever', + 'woman' + ], + 'shortcodes': [ + ':woman_tipping_hand:' + ] + }, + { + 'name': 'person raising hand', + 'unicode': '1F64B', + 'emoji': '๐Ÿ™‹', + 'data': '🙋', + 'tags': [ + 'gesture', + 'hand', + 'here', + 'know', + 'me', + 'person', + 'pick', + 'question', + 'raise', + 'raising' + ], + 'shortcodes': [ + ':person_raising_hand:' + ] + }, + { + 'name': 'man raising hand', + 'unicode': '1F64B-200D-2642-FE0F', + 'emoji': '๐Ÿ™‹โ€โ™‚๏ธ', + 'data': '🙋-200D-2642-FE0F;', + 'tags': [ + 'gesture', + 'hand', + 'here', + 'know', + 'man', + 'me', + 'pick', + 'question', + 'raise', + 'raising' + ], + 'shortcodes': [ + ':man_raising_hand:' + ] + }, + { + 'name': 'woman raising hand', + 'unicode': '1F64B-200D-2640-FE0F', + 'emoji': '๐Ÿ™‹โ€โ™€๏ธ', + 'data': '🙋-200D-2640-FE0F;', + 'tags': [ + 'gesture', + 'hand', + 'here', + 'know', + 'me', + 'pick', + 'question', + 'raise', + 'raising', + 'woman' + ], + 'shortcodes': [ + ':woman_raising_hand:' + ] + }, + { + 'name': 'deaf person', + 'unicode': '1F9CF', + 'emoji': '๐Ÿง', + 'data': '🧏', + 'tags': [ + 'accessibility', + 'deaf', + 'ear', + 'gesture', + 'hear', + 'person' + ], + 'shortcodes': [ + ':deaf_person:' + ] + }, + { + 'name': 'deaf man', + 'unicode': '1F9CF-200D-2642-FE0F', + 'emoji': '๐Ÿงโ€โ™‚๏ธ', + 'data': '🧏-200D-2642-FE0F;', + 'tags': [ + 'accessibility', + 'deaf', + 'ear', + 'gesture', + 'hear', + 'man' + ], + 'shortcodes': [ + ':deaf_man:' + ] + }, + { + 'name': 'deaf woman', + 'unicode': '1F9CF-200D-2640-FE0F', + 'emoji': '๐Ÿงโ€โ™€๏ธ', + 'data': '🧏-200D-2640-FE0F;', + 'tags': [ + 'accessibility', + 'deaf', + 'ear', + 'gesture', + 'hear', + 'woman' + ], + 'shortcodes': [ + ':deaf_woman:' + ] + }, + { + 'name': 'person bowing', + 'unicode': '1F647', + 'emoji': '๐Ÿ™‡', + 'data': '🙇', + 'tags': [ + 'apology', + 'ask', + 'beg', + 'bow', + 'bowing', + 'favor', + 'forgive', + 'gesture', + 'meditate', + 'meditation', + 'person', + 'pity', + 'regret', + 'sorry' + ], + 'shortcodes': [ + ':person_bowing:' + ] + }, + { + 'name': 'man bowing', + 'unicode': '1F647-200D-2642-FE0F', + 'emoji': '๐Ÿ™‡โ€โ™‚๏ธ', + 'data': '🙇-200D-2642-FE0F;', + 'tags': [ + 'apology', + 'ask', + 'beg', + 'bow', + 'bowing', + 'favor', + 'forgive', + 'gesture', + 'man', + 'meditate', + 'meditation', + 'pity', + 'regret', + 'sorry' + ], + 'shortcodes': [ + ':man_bowing:' + ] + }, + { + 'name': 'woman bowing', + 'unicode': '1F647-200D-2640-FE0F', + 'emoji': '๐Ÿ™‡โ€โ™€๏ธ', + 'data': '🙇-200D-2640-FE0F;', + 'tags': [ + 'apology', + 'ask', + 'beg', + 'bow', + 'bowing', + 'favor', + 'forgive', + 'gesture', + 'meditate', + 'meditation', + 'pity', + 'regret', + 'sorry', + 'woman' + ], + 'shortcodes': [ + ':woman_bowing:' + ] + }, + { + 'name': 'person facepalming', + 'unicode': '1F926', + 'emoji': '๐Ÿคฆ', + 'data': '🤦', + 'tags': [ + 'again', + 'bewilder', + 'disbelief', + 'exasperation', + 'facepalm', + 'no', + 'not', + 'oh', + 'omg', + 'person', + 'shock', + 'smh' + ], + 'shortcodes': [ + ':person_facepalming:' + ] + }, + { + 'name': 'man facepalming', + 'unicode': '1F926-200D-2642-FE0F', + 'emoji': '๐Ÿคฆโ€โ™‚๏ธ', + 'data': '🤦-200D-2642-FE0F;', + 'tags': [ + 'again', + 'bewilder', + 'disbelief', + 'exasperation', + 'facepalm', + 'man', + 'no', + 'not', + 'oh', + 'omg', + 'shock', + 'smh' + ], + 'shortcodes': [ + ':man_facepalming:' + ] + }, + { + 'name': 'woman facepalming', + 'unicode': '1F926-200D-2640-FE0F', + 'emoji': '๐Ÿคฆโ€โ™€๏ธ', + 'data': '🤦-200D-2640-FE0F;', + 'tags': [ + 'again', + 'bewilder', + 'disbelief', + 'exasperation', + 'facepalm', + 'no', + 'not', + 'oh', + 'omg', + 'shock', + 'smh', + 'woman' + ], + 'shortcodes': [ + ':woman_facepalming:' + ] + }, + { + 'name': 'person shrugging', + 'unicode': '1F937', + 'emoji': '๐Ÿคท', + 'data': '🤷', + 'tags': [ + 'doubt', + 'dunno', + 'guess', + 'idk', + 'ignorance', + 'indifference', + 'knows', + 'maybe', + 'person', + 'shrug', + 'shrugging', + 'whatever', + 'who' + ], + 'shortcodes': [ + ':person_shrugging:' + ] + }, + { + 'name': 'man shrugging', + 'unicode': '1F937-200D-2642-FE0F', + 'emoji': '๐Ÿคทโ€โ™‚๏ธ', + 'data': '🤷-200D-2642-FE0F;', + 'tags': [ + 'doubt', + 'dunno', + 'guess', + 'idk', + 'ignorance', + 'indifference', + 'knows', + 'man', + 'maybe', + 'shrug', + 'shrugging', + 'whatever', + 'who' + ], + 'shortcodes': [ + ':man_shrugging:' + ] + }, + { + 'name': 'woman shrugging', + 'unicode': '1F937-200D-2640-FE0F', + 'emoji': '๐Ÿคทโ€โ™€๏ธ', + 'data': '🤷-200D-2640-FE0F;', + 'tags': [ + 'doubt', + 'dunno', + 'guess', + 'idk', + 'ignorance', + 'indifference', + 'knows', + 'maybe', + 'shrug', + 'shrugging', + 'whatever', + 'who', + 'woman' + ], + 'shortcodes': [ + ':woman_shrugging:' + ] + }, + { + 'name': 'health worker', + 'unicode': '1F9D1-200D-2695-FE0F', + 'emoji': '๐Ÿง‘โ€โš•๏ธ', + 'data': '🧑-200D-2695-FE0F;', + 'tags': [ + 'doctor', + 'health', + 'healthcare', + 'nurse', + 'therapist', + 'worker' + ], + 'shortcodes': [ + ':health_worker:' + ] + }, + { + 'name': 'man health worker', + 'unicode': '1F468-200D-2695-FE0F', + 'emoji': '๐Ÿ‘จโ€โš•๏ธ', + 'data': '👨-200D-2695-FE0F;', + 'tags': [ + 'doctor', + 'health', + 'healthcare', + 'man', + 'nurse', + 'therapist', + 'worker' + ], + 'shortcodes': [ + ':man_health_worker:' + ] + }, + { + 'name': 'woman health worker', + 'unicode': '1F469-200D-2695-FE0F', + 'emoji': '๐Ÿ‘ฉโ€โš•๏ธ', + 'data': '👩-200D-2695-FE0F;', + 'tags': [ + 'doctor', + 'health', + 'healthcare', + 'nurse', + 'therapist', + 'woman', + 'worker' + ], + 'shortcodes': [ + ':woman_health_worker:' + ] + }, + { + 'name': 'student', + 'unicode': '1F9D1-200D-1F393', + 'emoji': '๐Ÿง‘โ€๐ŸŽ“', + 'data': '🧑-200D-1F393;', + 'tags': [ + 'graduate' + ], + 'shortcodes': [ + ':student:' + ] + }, + { + 'name': 'man student', + 'unicode': '1F468-200D-1F393', + 'emoji': '๐Ÿ‘จโ€๐ŸŽ“', + 'data': '👨-200D-1F393;', + 'tags': [ + 'graduate', + 'man', + 'student' + ], + 'shortcodes': [ + ':man_student:' + ] + }, + { + 'name': 'woman student', + 'unicode': '1F469-200D-1F393', + 'emoji': '๐Ÿ‘ฉโ€๐ŸŽ“', + 'data': '👩-200D-1F393;', + 'tags': [ + 'graduate', + 'student', + 'woman' + ], + 'shortcodes': [ + ':woman_student:' + ] + }, + { + 'name': 'teacher', + 'unicode': '1F9D1-200D-1F3EB', + 'emoji': '๐Ÿง‘โ€๐Ÿซ', + 'data': '🧑-200D-1F3EB;', + 'tags': [ + 'instructor', + 'lecturer', + 'professor' + ], + 'shortcodes': [ + ':teacher:' + ] + }, + { + 'name': 'man teacher', + 'unicode': '1F468-200D-1F3EB', + 'emoji': '๐Ÿ‘จโ€๐Ÿซ', + 'data': '👨-200D-1F3EB;', + 'tags': [ + 'instructor', + 'lecturer', + 'man', + 'professor', + 'teacher' + ], + 'shortcodes': [ + ':man_teacher:' + ] + }, + { + 'name': 'woman teacher', + 'unicode': '1F469-200D-1F3EB', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿซ', + 'data': '👩-200D-1F3EB;', + 'tags': [ + 'instructor', + 'lecturer', + 'professor', + 'teacher', + 'woman' + ], + 'shortcodes': [ + ':woman_teacher:' + ] + }, + { + 'name': 'judge', + 'unicode': '1F9D1-200D-2696-FE0F', + 'emoji': '๐Ÿง‘โ€โš–๏ธ', + 'data': '🧑-200D-2696-FE0F;', + 'tags': [ + 'justice', + 'law', + 'scales' + ], + 'shortcodes': [ + ':judge:' + ] + }, + { + 'name': 'man judge', + 'unicode': '1F468-200D-2696-FE0F', + 'emoji': '๐Ÿ‘จโ€โš–๏ธ', + 'data': '👨-200D-2696-FE0F;', + 'tags': [ + 'judge', + 'justice', + 'law', + 'man', + 'scales' + ], + 'shortcodes': [ + ':man_judge:' + ] + }, + { + 'name': 'woman judge', + 'unicode': '1F469-200D-2696-FE0F', + 'emoji': '๐Ÿ‘ฉโ€โš–๏ธ', + 'data': '👩-200D-2696-FE0F;', + 'tags': [ + 'judge', + 'justice', + 'law', + 'scales', + 'woman' + ], + 'shortcodes': [ + ':woman_judge:' + ] + }, + { + 'name': 'farmer', + 'unicode': '1F9D1-200D-1F33E', + 'emoji': '๐Ÿง‘โ€๐ŸŒพ', + 'data': '🧑-200D-1F33E;', + 'tags': [ + 'gardener', + 'rancher' + ], + 'shortcodes': [ + ':farmer:' + ] + }, + { + 'name': 'man farmer', + 'unicode': '1F468-200D-1F33E', + 'emoji': '๐Ÿ‘จโ€๐ŸŒพ', + 'data': '👨-200D-1F33E;', + 'tags': [ + 'farmer', + 'gardener', + 'man', + 'rancher' + ], + 'shortcodes': [ + ':man_farmer:' + ] + }, + { + 'name': 'woman farmer', + 'unicode': '1F469-200D-1F33E', + 'emoji': '๐Ÿ‘ฉโ€๐ŸŒพ', + 'data': '👩-200D-1F33E;', + 'tags': [ + 'farmer', + 'gardener', + 'rancher', + 'woman' + ], + 'shortcodes': [ + ':woman_farmer:' + ] + }, + { + 'name': 'cook', + 'unicode': '1F9D1-200D-1F373', + 'emoji': '๐Ÿง‘โ€๐Ÿณ', + 'data': '🧑-200D-1F373;', + 'tags': [ + 'chef' + ], + 'shortcodes': [ + ':cook:' + ] + }, + { + 'name': 'man cook', + 'unicode': '1F468-200D-1F373', + 'emoji': '๐Ÿ‘จโ€๐Ÿณ', + 'data': '👨-200D-1F373;', + 'tags': [ + 'chef', + 'cook', + 'man' + ], + 'shortcodes': [ + ':man_cook:' + ] + }, + { + 'name': 'woman cook', + 'unicode': '1F469-200D-1F373', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿณ', + 'data': '👩-200D-1F373;', + 'tags': [ + 'chef', + 'cook', + 'woman' + ], + 'shortcodes': [ + ':woman_cook:' + ] + }, + { + 'name': 'mechanic', + 'unicode': '1F9D1-200D-1F527', + 'emoji': '๐Ÿง‘โ€๐Ÿ”ง', + 'data': '🧑-200D-1F527;', + 'tags': [ + 'electrician', + 'plumber', + 'tradesperson' + ], + 'shortcodes': [ + ':mechanic:' + ] + }, + { + 'name': 'man mechanic', + 'unicode': '1F468-200D-1F527', + 'emoji': '๐Ÿ‘จโ€๐Ÿ”ง', + 'data': '👨-200D-1F527;', + 'tags': [ + 'electrician', + 'man', + 'mechanic', + 'plumber', + 'tradesperson' + ], + 'shortcodes': [ + ':man_mechanic:' + ] + }, + { + 'name': 'woman mechanic', + 'unicode': '1F469-200D-1F527', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ”ง', + 'data': '👩-200D-1F527;', + 'tags': [ + 'electrician', + 'mechanic', + 'plumber', + 'tradesperson', + 'woman' + ], + 'shortcodes': [ + ':woman_mechanic:' + ] + }, + { + 'name': 'factory worker', + 'unicode': '1F9D1-200D-1F3ED', + 'emoji': '๐Ÿง‘โ€๐Ÿญ', + 'data': '🧑-200D-1F3ED;', + 'tags': [ + 'assembly', + 'factory', + 'industrial', + 'worker' + ], + 'shortcodes': [ + ':factory_worker:' + ] + }, + { + 'name': 'man factory worker', + 'unicode': '1F468-200D-1F3ED', + 'emoji': '๐Ÿ‘จโ€๐Ÿญ', + 'data': '👨-200D-1F3ED;', + 'tags': [ + 'assembly', + 'factory', + 'industrial', + 'man', + 'worker' + ], + 'shortcodes': [ + ':man_factory_worker:' + ] + }, + { + 'name': 'woman factory worker', + 'unicode': '1F469-200D-1F3ED', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿญ', + 'data': '👩-200D-1F3ED;', + 'tags': [ + 'assembly', + 'factory', + 'industrial', + 'woman', + 'worker' + ], + 'shortcodes': [ + ':woman_factory_worker:' + ] + }, + { + 'name': 'office worker', + 'unicode': '1F9D1-200D-1F4BC', + 'emoji': '๐Ÿง‘โ€๐Ÿ’ผ', + 'data': '🧑-200D-1F4BC;', + 'tags': [ + 'architect', + 'business', + 'manager', + 'office', + 'white-collar', + 'worker' + ], + 'shortcodes': [ + ':office_worker:' + ] + }, + { + 'name': 'man office worker', + 'unicode': '1F468-200D-1F4BC', + 'emoji': '๐Ÿ‘จโ€๐Ÿ’ผ', + 'data': '👨-200D-1F4BC;', + 'tags': [ + 'architect', + 'business', + 'man', + 'manager', + 'office', + 'white-collar', + 'worker' + ], + 'shortcodes': [ + ':man_office_worker:' + ] + }, + { + 'name': 'woman office worker', + 'unicode': '1F469-200D-1F4BC', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ’ผ', + 'data': '👩-200D-1F4BC;', + 'tags': [ + 'architect', + 'business', + 'manager', + 'office', + 'white-collar', + 'woman', + 'worker' + ], + 'shortcodes': [ + ':woman_office_worker:' + ] + }, + { + 'name': 'scientist', + 'unicode': '1F9D1-200D-1F52C', + 'emoji': '๐Ÿง‘โ€๐Ÿ”ฌ', + 'data': '🧑-200D-1F52C;', + 'tags': [ + 'biologist', + 'chemist', + 'engineer', + 'mathematician', + 'physicist' + ], + 'shortcodes': [ + ':scientist:' + ] + }, + { + 'name': 'man scientist', + 'unicode': '1F468-200D-1F52C', + 'emoji': '๐Ÿ‘จโ€๐Ÿ”ฌ', + 'data': '👨-200D-1F52C;', + 'tags': [ + 'biologist', + 'chemist', + 'engineer', + 'man', + 'mathematician', + 'physicist', + 'scientist' + ], + 'shortcodes': [ + ':man_scientist:' + ] + }, + { + 'name': 'woman scientist', + 'unicode': '1F469-200D-1F52C', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ”ฌ', + 'data': '👩-200D-1F52C;', + 'tags': [ + 'biologist', + 'chemist', + 'engineer', + 'mathematician', + 'physicist', + 'scientist', + 'woman' + ], + 'shortcodes': [ + ':woman_scientist:' + ] + }, + { + 'name': 'technologist', + 'unicode': '1F9D1-200D-1F4BB', + 'emoji': '๐Ÿง‘โ€๐Ÿ’ป', + 'data': '🧑-200D-1F4BB;', + 'tags': [ + 'coder', + 'computer', + 'developer', + 'inventor', + 'software' + ], + 'shortcodes': [ + ':technologist:' + ] + }, + { + 'name': 'man technologist', + 'unicode': '1F468-200D-1F4BB', + 'emoji': '๐Ÿ‘จโ€๐Ÿ’ป', + 'data': '👨-200D-1F4BB;', + 'tags': [ + 'coder', + 'computer', + 'developer', + 'inventor', + 'man', + 'software', + 'technologist' + ], + 'shortcodes': [ + ':man_technologist:' + ] + }, + { + 'name': 'woman technologist', + 'unicode': '1F469-200D-1F4BB', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ’ป', + 'data': '👩-200D-1F4BB;', + 'tags': [ + 'coder', + 'computer', + 'developer', + 'inventor', + 'software', + 'technologist', + 'woman' + ], + 'shortcodes': [ + ':woman_technologist:' + ] + }, + { + 'name': 'singer', + 'unicode': '1F9D1-200D-1F3A4', + 'emoji': '๐Ÿง‘โ€๐ŸŽค', + 'data': '🧑-200D-1F3A4;', + 'tags': [ + 'actor', + 'entertainer', + 'rock', + 'rockstar', + 'star' + ], + 'shortcodes': [ + ':singer:' + ] + }, + { + 'name': 'man singer', + 'unicode': '1F468-200D-1F3A4', + 'emoji': '๐Ÿ‘จโ€๐ŸŽค', + 'data': '👨-200D-1F3A4;', + 'tags': [ + 'actor', + 'entertainer', + 'man', + 'rock', + 'rockstar', + 'singer', + 'star' + ], + 'shortcodes': [ + ':man_singer:' + ] + }, + { + 'name': 'woman singer', + 'unicode': '1F469-200D-1F3A4', + 'emoji': '๐Ÿ‘ฉโ€๐ŸŽค', + 'data': '👩-200D-1F3A4;', + 'tags': [ + 'actor', + 'entertainer', + 'rock', + 'rockstar', + 'singer', + 'star', + 'woman' + ], + 'shortcodes': [ + ':woman_singer:' + ] + }, + { + 'name': 'artist', + 'unicode': '1F9D1-200D-1F3A8', + 'emoji': '๐Ÿง‘โ€๐ŸŽจ', + 'data': '🧑-200D-1F3A8;', + 'tags': [ + 'palette' + ], + 'shortcodes': [ + ':artist:' + ] + }, + { + 'name': 'man artist', + 'unicode': '1F468-200D-1F3A8', + 'emoji': '๐Ÿ‘จโ€๐ŸŽจ', + 'data': '👨-200D-1F3A8;', + 'tags': [ + 'artist', + 'man', + 'palette' + ], + 'shortcodes': [ + ':man_artist:' + ] + }, + { + 'name': 'woman artist', + 'unicode': '1F469-200D-1F3A8', + 'emoji': '๐Ÿ‘ฉโ€๐ŸŽจ', + 'data': '👩-200D-1F3A8;', + 'tags': [ + 'artist', + 'palette', + 'woman' + ], + 'shortcodes': [ + ':woman_artist:' + ] + }, + { + 'name': 'pilot', + 'unicode': '1F9D1-200D-2708-FE0F', + 'emoji': '๐Ÿง‘โ€โœˆ๏ธ', + 'data': '🧑-200D-2708-FE0F;', + 'tags': [ + 'plane' + ], + 'shortcodes': [ + ':pilot:' + ] + }, + { + 'name': 'man pilot', + 'unicode': '1F468-200D-2708-FE0F', + 'emoji': '๐Ÿ‘จโ€โœˆ๏ธ', + 'data': '👨-200D-2708-FE0F;', + 'tags': [ + 'man', + 'pilot', + 'plane' + ], + 'shortcodes': [ + ':man_pilot:' + ] + }, + { + 'name': 'woman pilot', + 'unicode': '1F469-200D-2708-FE0F', + 'emoji': '๐Ÿ‘ฉโ€โœˆ๏ธ', + 'data': '👩-200D-2708-FE0F;', + 'tags': [ + 'pilot', + 'plane', + 'woman' + ], + 'shortcodes': [ + ':woman_pilot:' + ] + }, + { + 'name': 'astronaut', + 'unicode': '1F9D1-200D-1F680', + 'emoji': '๐Ÿง‘โ€๐Ÿš€', + 'data': '🧑-200D-1F680;', + 'tags': [ + 'rocket', + 'space' + ], + 'shortcodes': [ + ':astronaut:' + ] + }, + { + 'name': 'man astronaut', + 'unicode': '1F468-200D-1F680', + 'emoji': '๐Ÿ‘จโ€๐Ÿš€', + 'data': '👨-200D-1F680;', + 'tags': [ + 'astronaut', + 'man', + 'rocket', + 'space' + ], + 'shortcodes': [ + ':man_astronaut:' + ] + }, + { + 'name': 'woman astronaut', + 'unicode': '1F469-200D-1F680', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿš€', + 'data': '👩-200D-1F680;', + 'tags': [ + 'astronaut', + 'rocket', + 'space', + 'woman' + ], + 'shortcodes': [ + ':woman_astronaut:' + ] + }, + { + 'name': 'firefighter', + 'unicode': '1F9D1-200D-1F692', + 'emoji': '๐Ÿง‘โ€๐Ÿš’', + 'data': '🧑-200D-1F692;', + 'tags': [ + 'fire', + 'firetruck' + ], + 'shortcodes': [ + ':firefighter:' + ] + }, + { + 'name': 'man firefighter', + 'unicode': '1F468-200D-1F692', + 'emoji': '๐Ÿ‘จโ€๐Ÿš’', + 'data': '👨-200D-1F692;', + 'tags': [ + 'fire', + 'firefighter', + 'firetruck', + 'man' + ], + 'shortcodes': [ + ':man_firefighter:' + ] + }, + { + 'name': 'woman firefighter', + 'unicode': '1F469-200D-1F692', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿš’', + 'data': '👩-200D-1F692;', + 'tags': [ + 'fire', + 'firefighter', + 'firetruck', + 'woman' + ], + 'shortcodes': [ + ':woman_firefighter:' + ] + }, + { + 'name': 'police officer', + 'unicode': '1F46E', + 'emoji': '๐Ÿ‘ฎ', + 'data': '👮', + 'tags': [ + 'apprehend', + 'arrest', + 'citation', + 'cop', + 'law', + 'officer', + 'over', + 'police', + 'pulled', + 'undercover' + ], + 'shortcodes': [ + ':police_officer:' + ] + }, + { + 'name': 'man police officer', + 'unicode': '1F46E-200D-2642-FE0F', + 'emoji': '๐Ÿ‘ฎโ€โ™‚๏ธ', + 'data': '👮-200D-2642-FE0F;', + 'tags': [ + 'apprehend', + 'arrest', + 'citation', + 'cop', + 'law', + 'man', + 'officer', + 'over', + 'police', + 'pulled', + 'undercover' + ], + 'shortcodes': [ + ':man_police_officer:' + ] + }, + { + 'name': 'woman police officer', + 'unicode': '1F46E-200D-2640-FE0F', + 'emoji': '๐Ÿ‘ฎโ€โ™€๏ธ', + 'data': '👮-200D-2640-FE0F;', + 'tags': [ + 'apprehend', + 'arrest', + 'citation', + 'cop', + 'law', + 'officer', + 'over', + 'police', + 'pulled', + 'undercover', + 'woman' + ], + 'shortcodes': [ + ':woman_police_officer:' + ] + }, + { + 'name': 'detective', + 'unicode': '1F575', + 'emoji': '๐Ÿ•ต', + 'data': '🕵', + 'tags': [ + 'sleuth', + 'spy' + ], + 'shortcodes': [ + ':detective:' + ] + }, + { + 'name': 'man detective', + 'unicode': '1F575-FE0F-200D-2642-FE0F', + 'emoji': '๐Ÿ•ต๏ธโ€โ™‚๏ธ', + 'data': '🕵-FE0F-200D-2642-FE0F;', + 'tags': [ + 'detective', + 'man', + 'sleuth', + 'spy' + ], + 'shortcodes': [ + ':man_detective:' + ] + }, + { + 'name': 'woman detective', + 'unicode': '1F575-FE0F-200D-2640-FE0F', + 'emoji': '๐Ÿ•ต๏ธโ€โ™€๏ธ', + 'data': '🕵-FE0F-200D-2640-FE0F;', + 'tags': [ + 'detective', + 'sleuth', + 'spy', + 'woman' + ], + 'shortcodes': [ + ':woman_detective:' + ] + }, + { + 'name': 'guard', + 'unicode': '1F482', + 'emoji': '๐Ÿ’‚', + 'data': '💂', + 'tags': [ + 'buckingham', + 'helmet', + 'london', + 'palace' + ], + 'shortcodes': [ + ':guard:' + ] + }, + { + 'name': 'man guard', + 'unicode': '1F482-200D-2642-FE0F', + 'emoji': '๐Ÿ’‚โ€โ™‚๏ธ', + 'data': '💂-200D-2642-FE0F;', + 'tags': [ + 'buckingham', + 'guard', + 'helmet', + 'london', + 'man', + 'palace' + ], + 'shortcodes': [ + ':man_guard:' + ] + }, + { + 'name': 'woman guard', + 'unicode': '1F482-200D-2640-FE0F', + 'emoji': '๐Ÿ’‚โ€โ™€๏ธ', + 'data': '💂-200D-2640-FE0F;', + 'tags': [ + 'buckingham', + 'guard', + 'helmet', + 'london', + 'palace', + 'woman' + ], + 'shortcodes': [ + ':woman_guard:' + ] + }, + { + 'name': 'ninja', + 'unicode': '1F977', + 'emoji': '๐Ÿฅท', + 'data': '🥷', + 'tags': [ + 'assassin', + 'fight', + 'fighter', + 'hidden', + 'person', + 'secret', + 'skills', + 'sly', + 'soldier', + 'stealth', + 'war' + ], + 'shortcodes': [ + ':ninja:' + ] + }, + { + 'name': 'construction worker', + 'unicode': '1F477', + 'emoji': '๐Ÿ‘ท', + 'data': '👷', + 'tags': [ + 'build', + 'construction', + 'fix', + 'hardhat', + 'hat', + 'man', + 'person', + 'rebuild', + 'remodel', + 'repair', + 'work', + 'worker' + ], + 'shortcodes': [ + ':construction_worker:' + ] + }, + { + 'name': 'man construction worker', + 'unicode': '1F477-200D-2642-FE0F', + 'emoji': '๐Ÿ‘ทโ€โ™‚๏ธ', + 'data': '👷-200D-2642-FE0F;', + 'tags': [ + 'build', + 'construction', + 'fix', + 'hardhat', + 'hat', + 'man', + 'rebuild', + 'remodel', + 'repair', + 'work', + 'worker' + ], + 'shortcodes': [ + ':man_construction_worker:' + ] + }, + { + 'name': 'woman construction worker', + 'unicode': '1F477-200D-2640-FE0F', + 'emoji': '๐Ÿ‘ทโ€โ™€๏ธ', + 'data': '👷-200D-2640-FE0F;', + 'tags': [ + 'build', + 'construction', + 'fix', + 'hardhat', + 'hat', + 'man', + 'rebuild', + 'remodel', + 'repair', + 'woman', + 'work', + 'worker' + ], + 'shortcodes': [ + ':woman_construction_worker:' + ] + }, + { + 'name': 'person with crown', + 'unicode': '1FAC5', + 'emoji': '๐Ÿซ…', + 'data': '🫅', + 'tags': [ + 'crown', + 'monarch', + 'noble', + 'person', + 'regal', + 'royal', + 'royalty' + ], + 'shortcodes': [ + ':person_with_crown:' + ] + }, + { + 'name': 'prince', + 'unicode': '1F934', + 'emoji': '๐Ÿคด', + 'data': '🤴', + 'tags': [ + 'crown', + 'fairy', + 'fairytale', + 'fantasy', + 'king', + 'royal', + 'royalty', + 'tale' + ], + 'shortcodes': [ + ':prince:' + ] + }, + { + 'name': 'princess', + 'unicode': '1F478', + 'emoji': '๐Ÿ‘ธ', + 'data': '👸', + 'tags': [ + 'crown', + 'fairy', + 'fairytale', + 'fantasy', + 'queen', + 'royal', + 'royalty', + 'tale' + ], + 'shortcodes': [ + ':princess:' + ] + }, + { + 'name': 'person wearing turban', + 'unicode': '1F473', + 'emoji': '๐Ÿ‘ณ', + 'data': '👳', + 'tags': [ + 'person', + 'turban', + 'wearing' + ], + 'shortcodes': [ + ':person_wearing_turban:' + ] + }, + { + 'name': 'man wearing turban', + 'unicode': '1F473-200D-2642-FE0F', + 'emoji': '๐Ÿ‘ณโ€โ™‚๏ธ', + 'data': '👳-200D-2642-FE0F;', + 'tags': [ + 'man', + 'turban', + 'wearing' + ], + 'shortcodes': [ + ':man_wearing_turban:' + ] + }, + { + 'name': 'woman wearing turban', + 'unicode': '1F473-200D-2640-FE0F', + 'emoji': '๐Ÿ‘ณโ€โ™€๏ธ', + 'data': '👳-200D-2640-FE0F;', + 'tags': [ + 'turban', + 'wearing', + 'woman' + ], + 'shortcodes': [ + ':woman_wearing_turban:' + ] + }, + { + 'name': 'person with skullcap', + 'unicode': '1F472', + 'emoji': '๐Ÿ‘ฒ', + 'data': '👲', + 'tags': [ + 'cap', + 'chinese', + 'gua', + 'guapi', + 'hat', + 'mao', + 'person', + 'pi', + 'skullcap' + ], + 'shortcodes': [ + ':person_with_skullcap:' + ] + }, + { + 'name': 'woman with headscarf', + 'unicode': '1F9D5', + 'emoji': '๐Ÿง•', + 'data': '🧕', + 'tags': [ + 'bandana', + 'head', + 'headscarf', + 'hijab', + 'kerchief', + 'mantilla', + 'tichel', + 'woman' + ], + 'shortcodes': [ + ':woman_with_headscarf:' + ] + }, + { + 'name': 'person in tuxedo', + 'unicode': '1F935', + 'emoji': '๐Ÿคต', + 'data': '🤵', + 'tags': [ + 'formal', + 'person', + 'tuxedo', + 'wedding' + ], + 'shortcodes': [ + ':person_in_tuxedo:' + ] + }, + { + 'name': 'man in tuxedo', + 'unicode': '1F935-200D-2642-FE0F', + 'emoji': '๐Ÿคตโ€โ™‚๏ธ', + 'data': '🤵-200D-2642-FE0F;', + 'tags': [ + 'formal', + 'groom', + 'man', + 'tuxedo', + 'wedding' + ], + 'shortcodes': [ + ':man_in_tuxedo:' + ] + }, + { + 'name': 'woman in tuxedo', + 'unicode': '1F935-200D-2640-FE0F', + 'emoji': '๐Ÿคตโ€โ™€๏ธ', + 'data': '🤵-200D-2640-FE0F;', + 'tags': [ + 'formal', + 'tuxedo', + 'wedding', + 'woman' + ], + 'shortcodes': [ + ':woman_in_tuxedo:' + ] + }, + { + 'name': 'person with veil', + 'unicode': '1F470', + 'emoji': '๐Ÿ‘ฐ', + 'data': '👰', + 'tags': [ + 'person', + 'veil', + 'wedding' + ], + 'shortcodes': [ + ':person_with_veil:' + ] + }, + { + 'name': 'man with veil', + 'unicode': '1F470-200D-2642-FE0F', + 'emoji': '๐Ÿ‘ฐโ€โ™‚๏ธ', + 'data': '👰-200D-2642-FE0F;', + 'tags': [ + 'man', + 'veil', + 'wedding' + ], + 'shortcodes': [ + ':man_with_veil:' + ] + }, + { + 'name': 'woman with veil', + 'unicode': '1F470-200D-2640-FE0F', + 'emoji': '๐Ÿ‘ฐโ€โ™€๏ธ', + 'data': '👰-200D-2640-FE0F;', + 'tags': [ + 'bride', + 'veil', + 'wedding', + 'woman' + ], + 'shortcodes': [ + ':woman_with_veil:' + ] + }, + { + 'name': 'pregnant woman', + 'unicode': '1F930', + 'emoji': '๐Ÿคฐ', + 'data': '🤰', + 'tags': [ + 'pregnant', + 'woman' + ], + 'shortcodes': [ + ':pregnant_woman:' + ] + }, + { + 'name': 'pregnant man', + 'unicode': '1FAC3', + 'emoji': '๐Ÿซƒ', + 'data': '🫃', + 'tags': [ + 'belly', + 'bloated', + 'full', + 'man', + 'overeat', + 'pregnant' + ], + 'shortcodes': [ + ':pregnant_man:' + ] + }, + { + 'name': 'pregnant person', + 'unicode': '1FAC4', + 'emoji': '๐Ÿซ„', + 'data': '🫄', + 'tags': [ + 'belly', + 'bloated', + 'full', + 'overeat', + 'person', + 'pregnant', + 'stuffed' + ], + 'shortcodes': [ + ':pregnant_person:' + ] + }, + { + 'name': 'breast-feeding', + 'unicode': '1F931', + 'emoji': '๐Ÿคฑ', + 'data': '🤱', + 'tags': [ + 'baby', + 'breast', + 'feeding', + 'mom', + 'mother', + 'nursing', + 'woman' + ], + 'shortcodes': [ + ':breast-feeding:' + ] + }, + { + 'name': 'woman feeding baby', + 'unicode': '1F469-200D-1F37C', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿผ', + 'data': '👩-200D-1F37C;', + 'tags': [ + 'baby', + 'feed', + 'feeding', + 'mom', + 'mother', + 'nanny', + 'newborn', + 'nursing', + 'woman' + ], + 'shortcodes': [ + ':woman_feeding_baby:' + ] + }, + { + 'name': 'man feeding baby', + 'unicode': '1F468-200D-1F37C', + 'emoji': '๐Ÿ‘จโ€๐Ÿผ', + 'data': '👨-200D-1F37C;', + 'tags': [ + 'baby', + 'dad', + 'father', + 'feed', + 'feeding', + 'man', + 'nanny', + 'newborn', + 'nursing' + ], + 'shortcodes': [ + ':man_feeding_baby:' + ] + }, + { + 'name': 'person feeding baby', + 'unicode': '1F9D1-200D-1F37C', + 'emoji': '๐Ÿง‘โ€๐Ÿผ', + 'data': '🧑-200D-1F37C;', + 'tags': [ + 'baby', + 'feed', + 'feeding', + 'nanny', + 'newborn', + 'nursing', + 'parent' + ], + 'shortcodes': [ + ':person_feeding_baby:' + ] + }, + { + 'name': 'baby angel', + 'unicode': '1F47C', + 'emoji': '๐Ÿ‘ผ', + 'data': '👼', + 'tags': [ + 'angel', + 'baby', + 'church', + 'face', + 'fairy', + 'fairytale', + 'fantasy', + 'tale' + ], + 'shortcodes': [ + ':baby_angel:' + ] + }, + { + 'name': 'Santa Claus', + 'unicode': '1F385', + 'emoji': '๐ŸŽ…', + 'data': '🎅', + 'tags': [ + 'celebration', + 'christmas', + 'claus', + 'fairy', + 'fantasy', + 'father', + 'holiday', + 'merry', + 'santa', + 'tale', + 'xmas' + ], + 'shortcodes': [ + ':santa_claus:' + ] + }, + { + 'name': 'Mrs. Claus', + 'unicode': '1F936', + 'emoji': '๐Ÿคถ', + 'data': '🤶', + 'tags': [ + 'celebration', + 'christmas', + 'claus', + 'fairy', + 'fantasy', + 'holiday', + 'merry', + 'mother', + 'mrs', + 'santa', + 'tale', + 'xmas' + ], + 'shortcodes': [ + ':mrs._claus:' + ] + }, + { + 'name': 'Mx Claus', + 'unicode': '1F9D1-200D-1F384', + 'emoji': '๐Ÿง‘โ€๐ŸŽ„', + 'data': '🧑-200D-1F384;', + 'tags': [ + 'celebration', + 'christmas', + 'claus', + 'fairy', + 'fantasy', + 'holiday', + 'merry', + 'mx', + 'santa', + 'tale', + 'xmas' + ], + 'shortcodes': [ + ':mx_claus:' + ] + }, + { + 'name': 'superhero', + 'unicode': '1F9B8', + 'emoji': '๐Ÿฆธ', + 'data': '🦸', + 'tags': [ + 'good', + 'hero', + 'superpower' + ], + 'shortcodes': [ + ':superhero:' + ] + }, + { + 'name': 'man superhero', + 'unicode': '1F9B8-200D-2642-FE0F', + 'emoji': '๐Ÿฆธโ€โ™‚๏ธ', + 'data': '🦸-200D-2642-FE0F;', + 'tags': [ + 'good', + 'hero', + 'man', + 'superhero', + 'superpower' + ], + 'shortcodes': [ + ':man_superhero:' + ] + }, + { + 'name': 'woman superhero', + 'unicode': '1F9B8-200D-2640-FE0F', + 'emoji': '๐Ÿฆธโ€โ™€๏ธ', + 'data': '🦸-200D-2640-FE0F;', + 'tags': [ + 'good', + 'hero', + 'heroine', + 'superhero', + 'superpower', + 'woman' + ], + 'shortcodes': [ + ':woman_superhero:' + ] + }, + { + 'name': 'supervillain', + 'unicode': '1F9B9', + 'emoji': '๐Ÿฆน', + 'data': '🦹', + 'tags': [ + 'bad', + 'criminal', + 'evil', + 'superpower', + 'villain' + ], + 'shortcodes': [ + ':supervillain:' + ] + }, + { + 'name': 'man supervillain', + 'unicode': '1F9B9-200D-2642-FE0F', + 'emoji': '๐Ÿฆนโ€โ™‚๏ธ', + 'data': '🦹-200D-2642-FE0F;', + 'tags': [ + 'bad', + 'criminal', + 'evil', + 'man', + 'superpower', + 'supervillain', + 'villain' + ], + 'shortcodes': [ + ':man_supervillain:' + ] + }, + { + 'name': 'woman supervillain', + 'unicode': '1F9B9-200D-2640-FE0F', + 'emoji': '๐Ÿฆนโ€โ™€๏ธ', + 'data': '🦹-200D-2640-FE0F;', + 'tags': [ + 'bad', + 'criminal', + 'evil', + 'superpower', + 'supervillain', + 'villain', + 'woman' + ], + 'shortcodes': [ + ':woman_supervillain:' + ] + }, + { + 'name': 'mage', + 'unicode': '1F9D9', + 'emoji': '๐Ÿง™', + 'data': '🧙', + 'tags': [ + 'fantasy', + 'magic', + 'play', + 'sorcerer', + 'sorceress', + 'sorcery', + 'spell', + 'summon', + 'witch', + 'wizard' + ], + 'shortcodes': [ + ':mage:' + ] + }, + { + 'name': 'man mage', + 'unicode': '1F9D9-200D-2642-FE0F', + 'emoji': '๐Ÿง™โ€โ™‚๏ธ', + 'data': '🧙-200D-2642-FE0F;', + 'tags': [ + 'fantasy', + 'mage', + 'magic', + 'man', + 'play', + 'sorcerer', + 'sorceress', + 'sorcery', + 'spell', + 'summon', + 'witch', + 'wizard' + ], + 'shortcodes': [ + ':man_mage:' + ] + }, + { + 'name': 'woman mage', + 'unicode': '1F9D9-200D-2640-FE0F', + 'emoji': '๐Ÿง™โ€โ™€๏ธ', + 'data': '🧙-200D-2640-FE0F;', + 'tags': [ + 'fantasy', + 'mage', + 'magic', + 'play', + 'sorcerer', + 'sorceress', + 'sorcery', + 'spell', + 'summon', + 'witch', + 'wizard', + 'woman' + ], + 'shortcodes': [ + ':woman_mage:' + ] + }, + { + 'name': 'fairy', + 'unicode': '1F9DA', + 'emoji': '๐Ÿงš', + 'data': '🧚', + 'tags': [ + 'fairytale', + 'fantasy', + 'myth', + 'person', + 'pixie', + 'tale', + 'wings' + ], + 'shortcodes': [ + ':fairy:' + ] + }, + { + 'name': 'man fairy', + 'unicode': '1F9DA-200D-2642-FE0F', + 'emoji': '๐Ÿงšโ€โ™‚๏ธ', + 'data': '🧚-200D-2642-FE0F;', + 'tags': [ + 'fairy', + 'fairytale', + 'fantasy', + 'man', + 'myth', + 'oberon', + 'person', + 'pixie', + 'puck', + 'tale', + 'wings' + ], + 'shortcodes': [ + ':man_fairy:' + ] + }, + { + 'name': 'woman fairy', + 'unicode': '1F9DA-200D-2640-FE0F', + 'emoji': '๐Ÿงšโ€โ™€๏ธ', + 'data': '🧚-200D-2640-FE0F;', + 'tags': [ + 'fairy', + 'fairytale', + 'fantasy', + 'myth', + 'person', + 'pixie', + 'tale', + 'titania', + 'wings', + 'woman' + ], + 'shortcodes': [ + ':woman_fairy:' + ] + }, + { + 'name': 'vampire', + 'unicode': '1F9DB', + 'emoji': '๐Ÿง›', + 'data': '🧛', + 'tags': [ + 'blood', + 'dracula', + 'fangs', + 'halloween', + 'scary', + 'supernatural', + 'teeth', + 'undead' + ], + 'shortcodes': [ + ':vampire:' + ] + }, + { + 'name': 'man vampire', + 'unicode': '1F9DB-200D-2642-FE0F', + 'emoji': '๐Ÿง›โ€โ™‚๏ธ', + 'data': '🧛-200D-2642-FE0F;', + 'tags': [ + 'blood', + 'fangs', + 'halloween', + 'man', + 'scary', + 'supernatural', + 'teeth', + 'undead', + 'vampire' + ], + 'shortcodes': [ + ':man_vampire:' + ] + }, + { + 'name': 'woman vampire', + 'unicode': '1F9DB-200D-2640-FE0F', + 'emoji': '๐Ÿง›โ€โ™€๏ธ', + 'data': '🧛-200D-2640-FE0F;', + 'tags': [ + 'blood', + 'fangs', + 'halloween', + 'scary', + 'supernatural', + 'teeth', + 'undead', + 'vampire', + 'woman' + ], + 'shortcodes': [ + ':woman_vampire:' + ] + }, + { + 'name': 'merperson', + 'unicode': '1F9DC', + 'emoji': '๐Ÿงœ', + 'data': '🧜', + 'tags': [ + 'creature', + 'fairytale', + 'folklore', + 'ocean', + 'sea', + 'siren', + 'trident' + ], + 'shortcodes': [ + ':merperson:' + ] + }, + { + 'name': 'merman', + 'unicode': '1F9DC-200D-2642-FE0F', + 'emoji': '๐Ÿงœโ€โ™‚๏ธ', + 'data': '🧜-200D-2642-FE0F;', + 'tags': [ + 'creature', + 'fairytale', + 'folklore', + 'neptune', + 'ocean', + 'poseidon', + 'sea', + 'siren', + 'trident', + 'triton' + ], + 'shortcodes': [ + ':merman:' + ] + }, + { + 'name': 'mermaid', + 'unicode': '1F9DC-200D-2640-FE0F', + 'emoji': '๐Ÿงœโ€โ™€๏ธ', + 'data': '🧜-200D-2640-FE0F;', + 'tags': [ + 'creature', + 'fairytale', + 'folklore', + 'merwoman', + 'ocean', + 'sea', + 'siren', + 'trident' + ], + 'shortcodes': [ + ':mermaid:' + ] + }, + { + 'name': 'elf', + 'unicode': '1F9DD', + 'emoji': '๐Ÿง', + 'data': '🧝', + 'tags': [ + 'elves', + 'enchantment', + 'fantasy', + 'folklore', + 'magic', + 'magical', + 'myth' + ], + 'shortcodes': [ + ':elf:' + ] + }, + { + 'name': 'man elf', + 'unicode': '1F9DD-200D-2642-FE0F', + 'emoji': '๐Ÿงโ€โ™‚๏ธ', + 'data': '🧝-200D-2642-FE0F;', + 'tags': [ + 'elf', + 'elves', + 'enchantment', + 'fantasy', + 'folklore', + 'magic', + 'magical', + 'man', + 'myth' + ], + 'shortcodes': [ + ':man_elf:' + ] + }, + { + 'name': 'woman elf', + 'unicode': '1F9DD-200D-2640-FE0F', + 'emoji': '๐Ÿงโ€โ™€๏ธ', + 'data': '🧝-200D-2640-FE0F;', + 'tags': [ + 'elf', + 'elves', + 'enchantment', + 'fantasy', + 'folklore', + 'magic', + 'magical', + 'myth', + 'woman' + ], + 'shortcodes': [ + ':woman_elf:' + ] + }, + { + 'name': 'genie', + 'unicode': '1F9DE', + 'emoji': '๐Ÿงž', + 'data': '🧞', + 'tags': [ + 'djinn', + 'fantasy', + 'jinn', + 'lamp', + 'myth', + 'rub', + 'wishes' + ], + 'shortcodes': [ + ':genie:' + ] + }, + { + 'name': 'man genie', + 'unicode': '1F9DE-200D-2642-FE0F', + 'emoji': '๐Ÿงžโ€โ™‚๏ธ', + 'data': '🧞-200D-2642-FE0F;', + 'tags': [ + 'djinn', + 'fantasy', + 'genie', + 'jinn', + 'lamp', + 'man', + 'myth', + 'rub', + 'wishes' + ], + 'shortcodes': [ + ':man_genie:' + ] + }, + { + 'name': 'woman genie', + 'unicode': '1F9DE-200D-2640-FE0F', + 'emoji': '๐Ÿงžโ€โ™€๏ธ', + 'data': '🧞-200D-2640-FE0F;', + 'tags': [ + 'djinn', + 'fantasy', + 'genie', + 'jinn', + 'lamp', + 'myth', + 'rub', + 'wishes', + 'woman' + ], + 'shortcodes': [ + ':woman_genie:' + ] + }, + { + 'name': 'zombie', + 'unicode': '1F9DF', + 'emoji': '๐ŸงŸ', + 'data': '🧟', + 'tags': [ + 'apocalypse', + 'dead', + 'halloween', + 'horror', + 'scary', + 'undead', + 'walking' + ], + 'shortcodes': [ + ':zombie:' + ] + }, + { + 'name': 'man zombie', + 'unicode': '1F9DF-200D-2642-FE0F', + 'emoji': '๐ŸงŸโ€โ™‚๏ธ', + 'data': '🧟-200D-2642-FE0F;', + 'tags': [ + 'apocalypse', + 'dead', + 'halloween', + 'horror', + 'man', + 'scary', + 'undead', + 'walking', + 'zombie' + ], + 'shortcodes': [ + ':man_zombie:' + ] + }, + { + 'name': 'woman zombie', + 'unicode': '1F9DF-200D-2640-FE0F', + 'emoji': '๐ŸงŸโ€โ™€๏ธ', + 'data': '🧟-200D-2640-FE0F;', + 'tags': [ + 'apocalypse', + 'dead', + 'halloween', + 'horror', + 'scary', + 'undead', + 'walking', + 'woman', + 'zombie' + ], + 'shortcodes': [ + ':woman_zombie:' + ] + }, + { + 'name': 'troll', + 'unicode': '1F9CC', + 'emoji': '๐ŸงŒ', + 'data': '🧌', + 'tags': [ + 'fairy', + 'fantasy', + 'monster', + 'tale', + 'trolling' + ], + 'shortcodes': [ + ':troll:' + ] + }, + { + 'name': 'person getting massage', + 'unicode': '1F486', + 'emoji': '๐Ÿ’†', + 'data': '💆', + 'tags': [ + 'face', + 'getting', + 'headache', + 'massage', + 'person', + 'relax', + 'relaxing', + 'salon', + 'soothe', + 'spa', + 'tension', + 'therapy', + 'treatment' + ], + 'shortcodes': [ + ':person_getting_massage:' + ] + }, + { + 'name': 'man getting massage', + 'unicode': '1F486-200D-2642-FE0F', + 'emoji': '๐Ÿ’†โ€โ™‚๏ธ', + 'data': '💆-200D-2642-FE0F;', + 'tags': [ + 'face', + 'getting', + 'headache', + 'man', + 'massage', + 'relax', + 'relaxing', + 'salon', + 'soothe', + 'spa', + 'tension', + 'therapy', + 'treatment' + ], + 'shortcodes': [ + ':man_getting_massage:' + ] + }, + { + 'name': 'woman getting massage', + 'unicode': '1F486-200D-2640-FE0F', + 'emoji': '๐Ÿ’†โ€โ™€๏ธ', + 'data': '💆-200D-2640-FE0F;', + 'tags': [ + 'face', + 'getting', + 'headache', + 'massage', + 'relax', + 'relaxing', + 'salon', + 'soothe', + 'spa', + 'tension', + 'therapy', + 'treatment', + 'woman' + ], + 'shortcodes': [ + ':woman_getting_massage:' + ] + }, + { + 'name': 'person getting haircut', + 'unicode': '1F487', + 'emoji': '๐Ÿ’‡', + 'data': '💇', + 'tags': [ + 'barber', + 'beauty', + 'chop', + 'cosmetology', + 'cut', + 'groom', + 'hair', + 'haircut', + 'parlor', + 'person', + 'shears', + 'style' + ], + 'shortcodes': [ + ':person_getting_haircut:' + ] + }, + { + 'name': 'man getting haircut', + 'unicode': '1F487-200D-2642-FE0F', + 'emoji': '๐Ÿ’‡โ€โ™‚๏ธ', + 'data': '💇-200D-2642-FE0F;', + 'tags': [ + 'barber', + 'beauty', + 'chop', + 'cosmetology', + 'cut', + 'groom', + 'hair', + 'haircut', + 'man', + 'parlor', + 'person', + 'shears', + 'style' + ], + 'shortcodes': [ + ':man_getting_haircut:' + ] + }, + { + 'name': 'woman getting haircut', + 'unicode': '1F487-200D-2640-FE0F', + 'emoji': '๐Ÿ’‡โ€โ™€๏ธ', + 'data': '💇-200D-2640-FE0F;', + 'tags': [ + 'barber', + 'beauty', + 'chop', + 'cosmetology', + 'cut', + 'groom', + 'hair', + 'haircut', + 'parlor', + 'person', + 'shears', + 'style', + 'woman' + ], + 'shortcodes': [ + ':woman_getting_haircut:' + ] + }, + { + 'name': 'person walking', + 'unicode': '1F6B6', + 'emoji': '๐Ÿšถ', + 'data': '🚶', + 'tags': [ + 'amble', + 'gait', + 'hike', + 'man', + 'pace', + 'pedestrian', + 'person', + 'stride', + 'stroll', + 'walk', + 'walking' + ], + 'shortcodes': [ + ':person_walking:' + ] + }, + { + 'name': 'man walking', + 'unicode': '1F6B6-200D-2642-FE0F', + 'emoji': '๐Ÿšถโ€โ™‚๏ธ', + 'data': '🚶-200D-2642-FE0F;', + 'tags': [ + 'amble', + 'gait', + 'hike', + 'man', + 'pace', + 'pedestrian', + 'stride', + 'stroll', + 'walk', + 'walking' + ], + 'shortcodes': [ + ':man_walking:' + ] + }, + { + 'name': 'woman walking', + 'unicode': '1F6B6-200D-2640-FE0F', + 'emoji': '๐Ÿšถโ€โ™€๏ธ', + 'data': '🚶-200D-2640-FE0F;', + 'tags': [ + 'amble', + 'gait', + 'hike', + 'man', + 'pace', + 'pedestrian', + 'stride', + 'stroll', + 'walk', + 'walking', + 'woman' + ], + 'shortcodes': [ + ':woman_walking:' + ] + }, + { + 'name': 'person walking facing right', + 'unicode': '1F6B6-200D-27A1-FE0F', + 'emoji': '๐Ÿšถโ€โžก๏ธ', + 'data': '🚶-200D-27A1-FE0F;', + 'tags': [ + 'amble', + 'gait', + 'hike', + 'man', + 'pace', + 'pedestrian', + 'person', + 'stride', + 'stroll', + 'walk', + 'walking' + ], + 'shortcodes': [ + ':person_walking_facing_right:' + ] + }, + { + 'name': 'person walking facing right', + 'unicode': '1F6B6-1F3FB-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿปโ€โžก๏ธ', + 'data': '🚶-1F3FB-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_walking_facing_right:' + ] + }, + { + 'name': 'person walking facing right', + 'unicode': '1F6B6-1F3FC-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿผโ€โžก๏ธ', + 'data': '🚶-1F3FC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_walking_facing_right:' + ] + }, + { + 'name': 'person walking facing right', + 'unicode': '1F6B6-1F3FD-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿฝโ€โžก๏ธ', + 'data': '🚶-1F3FD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_walking_facing_right:' + ] + }, + { + 'name': 'person walking facing right', + 'unicode': '1F6B6-1F3FE-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿพโ€โžก๏ธ', + 'data': '🚶-1F3FE-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_walking_facing_right:' + ] + }, + { + 'name': 'person walking facing right', + 'unicode': '1F6B6-1F3FF-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿฟโ€โžก๏ธ', + 'data': '🚶-1F3FF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_walking_facing_right:' + ] + }, + { + 'name': 'woman walking facing right', + 'unicode': '1F6B6-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🚶-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [ + 'amble', + 'gait', + 'hike', + 'man', + 'pace', + 'pedestrian', + 'stride', + 'stroll', + 'walk', + 'walking', + 'woman' + ], + 'shortcodes': [ + ':woman_walking_facing_right:' + ] + }, + { + 'name': 'woman walking facing right', + 'unicode': '1F6B6-1F3FB-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FB-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_walking_facing_right:' + ] + }, + { + 'name': 'woman walking facing right', + 'unicode': '1F6B6-1F3FC-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FC-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_walking_facing_right:' + ] + }, + { + 'name': 'woman walking facing right', + 'unicode': '1F6B6-1F3FD-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FD-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_walking_facing_right:' + ] + }, + { + 'name': 'woman walking facing right', + 'unicode': '1F6B6-1F3FE-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FE-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_walking_facing_right:' + ] + }, + { + 'name': 'woman walking facing right', + 'unicode': '1F6B6-1F3FF-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FF-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_walking_facing_right:' + ] + }, + { + 'name': 'man walking facing right', + 'unicode': '1F6B6-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🚶-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [ + 'amble', + 'gait', + 'hike', + 'man', + 'pace', + 'pedestrian', + 'stride', + 'stroll', + 'walk', + 'walking' + ], + 'shortcodes': [ + ':man_walking_facing_right:' + ] + }, + { + 'name': 'man walking facing right', + 'unicode': '1F6B6-1F3FB-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FB-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_walking_facing_right:' + ] + }, + { + 'name': 'man walking facing right', + 'unicode': '1F6B6-1F3FC-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FC-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_walking_facing_right:' + ] + }, + { + 'name': 'man walking facing right', + 'unicode': '1F6B6-1F3FD-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FD-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_walking_facing_right:' + ] + }, + { + 'name': 'man walking facing right', + 'unicode': '1F6B6-1F3FE-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FE-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_walking_facing_right:' + ] + }, + { + 'name': 'man walking facing right', + 'unicode': '1F6B6-1F3FF-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿšถ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🚶-1F3FF-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_walking_facing_right:' + ] + }, + { + 'name': 'person standing', + 'unicode': '1F9CD', + 'emoji': '๐Ÿง', + 'data': '🧍', + 'tags': [ + 'person', + 'stand', + 'standing' + ], + 'shortcodes': [ + ':person_standing:' + ] + }, + { + 'name': 'man standing', + 'unicode': '1F9CD-200D-2642-FE0F', + 'emoji': '๐Ÿงโ€โ™‚๏ธ', + 'data': '🧍-200D-2642-FE0F;', + 'tags': [ + 'man', + 'stand', + 'standing' + ], + 'shortcodes': [ + ':man_standing:' + ] + }, + { + 'name': 'woman standing', + 'unicode': '1F9CD-200D-2640-FE0F', + 'emoji': '๐Ÿงโ€โ™€๏ธ', + 'data': '🧍-200D-2640-FE0F;', + 'tags': [ + 'stand', + 'standing', + 'woman' + ], + 'shortcodes': [ + ':woman_standing:' + ] + }, + { + 'name': 'person kneeling', + 'unicode': '1F9CE', + 'emoji': '๐ŸงŽ', + 'data': '🧎', + 'tags': [ + 'kneel', + 'kneeling', + 'knees', + 'person' + ], + 'shortcodes': [ + ':person_kneeling:' + ] + }, + { + 'name': 'man kneeling', + 'unicode': '1F9CE-200D-2642-FE0F', + 'emoji': '๐ŸงŽโ€โ™‚๏ธ', + 'data': '🧎-200D-2642-FE0F;', + 'tags': [ + 'kneel', + 'kneeling', + 'knees', + 'man' + ], + 'shortcodes': [ + ':man_kneeling:' + ] + }, + { + 'name': 'woman kneeling', + 'unicode': '1F9CE-200D-2640-FE0F', + 'emoji': '๐ŸงŽโ€โ™€๏ธ', + 'data': '🧎-200D-2640-FE0F;', + 'tags': [ + 'kneel', + 'kneeling', + 'knees', + 'woman' + ], + 'shortcodes': [ + ':woman_kneeling:' + ] + }, + { + 'name': 'person kneeling facing right', + 'unicode': '1F9CE-200D-27A1-FE0F', + 'emoji': '๐ŸงŽโ€โžก๏ธ', + 'data': '🧎-200D-27A1-FE0F;', + 'tags': [ + 'kneel', + 'kneeling', + 'knees', + 'person' + ], + 'shortcodes': [ + ':person_kneeling_facing_right:' + ] + }, + { + 'name': 'person kneeling facing right', + 'unicode': '1F9CE-1F3FB-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿปโ€โžก๏ธ', + 'data': '🧎-1F3FB-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_kneeling_facing_right:' + ] + }, + { + 'name': 'person kneeling facing right', + 'unicode': '1F9CE-1F3FC-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿผโ€โžก๏ธ', + 'data': '🧎-1F3FC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_kneeling_facing_right:' + ] + }, + { + 'name': 'person kneeling facing right', + 'unicode': '1F9CE-1F3FD-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿฝโ€โžก๏ธ', + 'data': '🧎-1F3FD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_kneeling_facing_right:' + ] + }, + { + 'name': 'person kneeling facing right', + 'unicode': '1F9CE-1F3FE-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿพโ€โžก๏ธ', + 'data': '🧎-1F3FE-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_kneeling_facing_right:' + ] + }, + { + 'name': 'person kneeling facing right', + 'unicode': '1F9CE-1F3FF-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿฟโ€โžก๏ธ', + 'data': '🧎-1F3FF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_kneeling_facing_right:' + ] + }, + { + 'name': 'woman kneeling facing right', + 'unicode': '1F9CE-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🧎-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [ + 'kneel', + 'kneeling', + 'knees', + 'woman' + ], + 'shortcodes': [ + ':woman_kneeling_facing_right:' + ] + }, + { + 'name': 'woman kneeling facing right', + 'unicode': '1F9CE-1F3FB-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FB-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_kneeling_facing_right:' + ] + }, + { + 'name': 'woman kneeling facing right', + 'unicode': '1F9CE-1F3FC-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FC-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_kneeling_facing_right:' + ] + }, + { + 'name': 'woman kneeling facing right', + 'unicode': '1F9CE-1F3FD-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FD-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_kneeling_facing_right:' + ] + }, + { + 'name': 'woman kneeling facing right', + 'unicode': '1F9CE-1F3FE-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FE-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_kneeling_facing_right:' + ] + }, + { + 'name': 'woman kneeling facing right', + 'unicode': '1F9CE-1F3FF-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FF-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_kneeling_facing_right:' + ] + }, + { + 'name': 'man kneeling facing right', + 'unicode': '1F9CE-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🧎-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [ + 'kneel', + 'kneeling', + 'knees', + 'man' + ], + 'shortcodes': [ + ':man_kneeling_facing_right:' + ] + }, + { + 'name': 'man kneeling facing right', + 'unicode': '1F9CE-1F3FB-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FB-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_kneeling_facing_right:' + ] + }, + { + 'name': 'man kneeling facing right', + 'unicode': '1F9CE-1F3FC-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FC-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_kneeling_facing_right:' + ] + }, + { + 'name': 'man kneeling facing right', + 'unicode': '1F9CE-1F3FD-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FD-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_kneeling_facing_right:' + ] + }, + { + 'name': 'man kneeling facing right', + 'unicode': '1F9CE-1F3FE-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FE-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_kneeling_facing_right:' + ] + }, + { + 'name': 'man kneeling facing right', + 'unicode': '1F9CE-1F3FF-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐ŸงŽ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🧎-1F3FF-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_kneeling_facing_right:' + ] + }, + { + 'name': 'person with white cane', + 'unicode': '1F9D1-200D-1F9AF', + 'emoji': '๐Ÿง‘โ€๐Ÿฆฏ', + 'data': '🧑-200D-1F9AF;', + 'tags': [ + 'accessibility', + 'blind', + 'cane', + 'person', + 'probing', + 'white' + ], + 'shortcodes': [ + ':person_with_white_cane:' + ] + }, + { + 'name': 'person with white cane facing right', + 'unicode': '1F9D1-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘โ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '🧑-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [ + 'accessibility', + 'blind', + 'cane', + 'person', + 'probing', + 'white' + ], + 'shortcodes': [ + ':person_with_white_cane_facing_right:' + ] + }, + { + 'name': 'person with white cane facing right', + 'unicode': '1F9D1-1F3FB-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '🧑-1F3FB-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_with_white_cane_facing_right:' + ] + }, + { + 'name': 'person with white cane facing right', + 'unicode': '1F9D1-1F3FC-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '🧑-1F3FC-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_with_white_cane_facing_right:' + ] + }, + { + 'name': 'person with white cane facing right', + 'unicode': '1F9D1-1F3FD-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '🧑-1F3FD-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_with_white_cane_facing_right:' + ] + }, + { + 'name': 'person with white cane facing right', + 'unicode': '1F9D1-1F3FE-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '🧑-1F3FE-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_with_white_cane_facing_right:' + ] + }, + { + 'name': 'person with white cane facing right', + 'unicode': '1F9D1-1F3FF-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '🧑-1F3FF-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_with_white_cane_facing_right:' + ] + }, + { + 'name': 'man with white cane', + 'unicode': '1F468-200D-1F9AF', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆฏ', + 'data': '👨-200D-1F9AF;', + 'tags': [ + 'accessibility', + 'blind', + 'cane', + 'man', + 'probing', + 'white' + ], + 'shortcodes': [ + ':man_with_white_cane:' + ] + }, + { + 'name': 'man with white cane facing right', + 'unicode': '1F468-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👨-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [ + 'accessibility', + 'blind', + 'cane', + 'man', + 'probing', + 'white' + ], + 'shortcodes': [ + ':man_with_white_cane_facing_right:' + ] + }, + { + 'name': 'man with white cane facing right', + 'unicode': '1F468-1F3FB-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👨-1F3FB-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_with_white_cane_facing_right:' + ] + }, + { + 'name': 'man with white cane facing right', + 'unicode': '1F468-1F3FC-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👨-1F3FC-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_with_white_cane_facing_right:' + ] + }, + { + 'name': 'man with white cane facing right', + 'unicode': '1F468-1F3FD-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👨-1F3FD-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_with_white_cane_facing_right:' + ] + }, + { + 'name': 'man with white cane facing right', + 'unicode': '1F468-1F3FE-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👨-1F3FE-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_with_white_cane_facing_right:' + ] + }, + { + 'name': 'man with white cane facing right', + 'unicode': '1F468-1F3FF-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👨-1F3FF-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_with_white_cane_facing_right:' + ] + }, + { + 'name': 'woman with white cane', + 'unicode': '1F469-200D-1F9AF', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆฏ', + 'data': '👩-200D-1F9AF;', + 'tags': [ + 'accessibility', + 'blind', + 'cane', + 'probing', + 'white', + 'woman' + ], + 'shortcodes': [ + ':woman_with_white_cane:' + ] + }, + { + 'name': 'woman with white cane facing right', + 'unicode': '1F469-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👩-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [ + 'accessibility', + 'blind', + 'cane', + 'probing', + 'white', + 'woman' + ], + 'shortcodes': [ + ':woman_with_white_cane_facing_right:' + ] + }, + { + 'name': 'woman with white cane facing right', + 'unicode': '1F469-1F3FB-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👩-1F3FB-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_with_white_cane_facing_right:' + ] + }, + { + 'name': 'woman with white cane facing right', + 'unicode': '1F469-1F3FC-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👩-1F3FC-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_with_white_cane_facing_right:' + ] + }, + { + 'name': 'woman with white cane facing right', + 'unicode': '1F469-1F3FD-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👩-1F3FD-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_with_white_cane_facing_right:' + ] + }, + { + 'name': 'woman with white cane facing right', + 'unicode': '1F469-1F3FE-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👩-1F3FE-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_with_white_cane_facing_right:' + ] + }, + { + 'name': 'woman with white cane facing right', + 'unicode': '1F469-1F3FF-200D-1F9AF-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ', + 'data': '👩-1F3FF-200D-1F9AF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_with_white_cane_facing_right:' + ] + }, + { + 'name': 'person in motorized wheelchair', + 'unicode': '1F9D1-200D-1F9BC', + 'emoji': '๐Ÿง‘โ€๐Ÿฆผ', + 'data': '🧑-200D-1F9BC;', + 'tags': [ + 'accessibility', + 'motorized', + 'person', + 'wheelchair' + ], + 'shortcodes': [ + ':person_in_motorized_wheelchair:' + ] + }, + { + 'name': 'person in motorized wheelchair facing right', + 'unicode': '1F9D1-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘โ€๐Ÿฆผโ€โžก๏ธ', + 'data': '🧑-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [ + 'accessibility', + 'motorized', + 'person', + 'wheelchair' + ], + 'shortcodes': [ + ':person_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in motorized wheelchair facing right', + 'unicode': '1F9D1-1F3FB-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '🧑-1F3FB-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in motorized wheelchair facing right', + 'unicode': '1F9D1-1F3FC-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '🧑-1F3FC-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in motorized wheelchair facing right', + 'unicode': '1F9D1-1F3FD-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '🧑-1F3FD-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in motorized wheelchair facing right', + 'unicode': '1F9D1-1F3FE-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '🧑-1F3FE-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in motorized wheelchair facing right', + 'unicode': '1F9D1-1F3FF-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '🧑-1F3FF-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in motorized wheelchair', + 'unicode': '1F468-200D-1F9BC', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆผ', + 'data': '👨-200D-1F9BC;', + 'tags': [ + 'accessibility', + 'man', + 'motorized', + 'wheelchair' + ], + 'shortcodes': [ + ':man_in_motorized_wheelchair:' + ] + }, + { + 'name': 'man in motorized wheelchair facing right', + 'unicode': '1F468-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👨-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [ + 'accessibility', + 'man', + 'motorized', + 'wheelchair' + ], + 'shortcodes': [ + ':man_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in motorized wheelchair facing right', + 'unicode': '1F468-1F3FB-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👨-1F3FB-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in motorized wheelchair facing right', + 'unicode': '1F468-1F3FC-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👨-1F3FC-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in motorized wheelchair facing right', + 'unicode': '1F468-1F3FD-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👨-1F3FD-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in motorized wheelchair facing right', + 'unicode': '1F468-1F3FE-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👨-1F3FE-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in motorized wheelchair facing right', + 'unicode': '1F468-1F3FF-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👨-1F3FF-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in motorized wheelchair', + 'unicode': '1F469-200D-1F9BC', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆผ', + 'data': '👩-200D-1F9BC;', + 'tags': [ + 'accessibility', + 'motorized', + 'wheelchair', + 'woman' + ], + 'shortcodes': [ + ':woman_in_motorized_wheelchair:' + ] + }, + { + 'name': 'woman in motorized wheelchair facing right', + 'unicode': '1F469-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👩-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [ + 'accessibility', + 'motorized', + 'wheelchair', + 'woman' + ], + 'shortcodes': [ + ':woman_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in motorized wheelchair facing right', + 'unicode': '1F469-1F3FB-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👩-1F3FB-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in motorized wheelchair facing right', + 'unicode': '1F469-1F3FC-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👩-1F3FC-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in motorized wheelchair facing right', + 'unicode': '1F469-1F3FD-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👩-1F3FD-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in motorized wheelchair facing right', + 'unicode': '1F469-1F3FE-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👩-1F3FE-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in motorized wheelchair facing right', + 'unicode': '1F469-1F3FF-200D-1F9BC-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ', + 'data': '👩-1F3FF-200D-1F9BC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_motorized_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in manual wheelchair', + 'unicode': '1F9D1-200D-1F9BD', + 'emoji': '๐Ÿง‘โ€๐Ÿฆฝ', + 'data': '🧑-200D-1F9BD;', + 'tags': [ + 'accessibility', + 'manual', + 'person', + 'wheelchair' + ], + 'shortcodes': [ + ':person_in_manual_wheelchair:' + ] + }, + { + 'name': 'person in manual wheelchair facing right', + 'unicode': '1F9D1-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘โ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '🧑-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [ + 'accessibility', + 'manual', + 'person', + 'wheelchair' + ], + 'shortcodes': [ + ':person_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in manual wheelchair facing right', + 'unicode': '1F9D1-1F3FB-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '🧑-1F3FB-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in manual wheelchair facing right', + 'unicode': '1F9D1-1F3FC-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '🧑-1F3FC-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in manual wheelchair facing right', + 'unicode': '1F9D1-1F3FD-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '🧑-1F3FD-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in manual wheelchair facing right', + 'unicode': '1F9D1-1F3FE-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '🧑-1F3FE-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'person in manual wheelchair facing right', + 'unicode': '1F9D1-1F3FF-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '🧑-1F3FF-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in manual wheelchair', + 'unicode': '1F468-200D-1F9BD', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆฝ', + 'data': '👨-200D-1F9BD;', + 'tags': [ + 'accessibility', + 'man', + 'manual', + 'wheelchair' + ], + 'shortcodes': [ + ':man_in_manual_wheelchair:' + ] + }, + { + 'name': 'man in manual wheelchair facing right', + 'unicode': '1F468-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👨-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [ + 'accessibility', + 'man', + 'manual', + 'wheelchair' + ], + 'shortcodes': [ + ':man_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in manual wheelchair facing right', + 'unicode': '1F468-1F3FB-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👨-1F3FB-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in manual wheelchair facing right', + 'unicode': '1F468-1F3FC-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👨-1F3FC-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in manual wheelchair facing right', + 'unicode': '1F468-1F3FD-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👨-1F3FD-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in manual wheelchair facing right', + 'unicode': '1F468-1F3FE-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👨-1F3FE-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'man in manual wheelchair facing right', + 'unicode': '1F468-1F3FF-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👨-1F3FF-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in manual wheelchair', + 'unicode': '1F469-200D-1F9BD', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆฝ', + 'data': '👩-200D-1F9BD;', + 'tags': [ + 'accessibility', + 'manual', + 'wheelchair', + 'woman' + ], + 'shortcodes': [ + ':woman_in_manual_wheelchair:' + ] + }, + { + 'name': 'woman in manual wheelchair facing right', + 'unicode': '1F469-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👩-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [ + 'accessibility', + 'manual', + 'wheelchair', + 'woman' + ], + 'shortcodes': [ + ':woman_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in manual wheelchair facing right', + 'unicode': '1F469-1F3FB-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👩-1F3FB-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in manual wheelchair facing right', + 'unicode': '1F469-1F3FC-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👩-1F3FC-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in manual wheelchair facing right', + 'unicode': '1F469-1F3FD-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👩-1F3FD-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in manual wheelchair facing right', + 'unicode': '1F469-1F3FE-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👩-1F3FE-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'woman in manual wheelchair facing right', + 'unicode': '1F469-1F3FF-200D-1F9BD-200D-27A1-FE0F', + 'emoji': '๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ', + 'data': '👩-1F3FF-200D-1F9BD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_in_manual_wheelchair_facing_right:' + ] + }, + { + 'name': 'person running', + 'unicode': '1F3C3', + 'emoji': '๐Ÿƒ', + 'data': '🏃', + 'tags': [ + 'fast', + 'hurry', + 'marathon', + 'move', + 'person', + 'quick', + 'race', + 'racing', + 'run', + 'rush', + 'speed' + ], + 'shortcodes': [ + ':person_running:' + ] + }, + { + 'name': 'man running', + 'unicode': '1F3C3-200D-2642-FE0F', + 'emoji': '๐Ÿƒโ€โ™‚๏ธ', + 'data': '🏃-200D-2642-FE0F;', + 'tags': [ + 'fast', + 'hurry', + 'man', + 'marathon', + 'move', + 'quick', + 'race', + 'racing', + 'run', + 'rush', + 'speed' + ], + 'shortcodes': [ + ':man_running:' + ] + }, + { + 'name': 'woman running', + 'unicode': '1F3C3-200D-2640-FE0F', + 'emoji': '๐Ÿƒโ€โ™€๏ธ', + 'data': '🏃-200D-2640-FE0F;', + 'tags': [ + 'fast', + 'hurry', + 'marathon', + 'move', + 'quick', + 'race', + 'racing', + 'run', + 'rush', + 'speed', + 'woman' + ], + 'shortcodes': [ + ':woman_running:' + ] + }, + { + 'name': 'person running facing right', + 'unicode': '1F3C3-200D-27A1-FE0F', + 'emoji': '๐Ÿƒโ€โžก๏ธ', + 'data': '🏃-200D-27A1-FE0F;', + 'tags': [ + 'fast', + 'hurry', + 'marathon', + 'move', + 'person', + 'quick', + 'race', + 'racing', + 'run', + 'rush', + 'speed' + ], + 'shortcodes': [ + ':person_running_facing_right:' + ] + }, + { + 'name': 'person running facing right', + 'unicode': '1F3C3-1F3FB-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿปโ€โžก๏ธ', + 'data': '🏃-1F3FB-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_running_facing_right:' + ] + }, + { + 'name': 'person running facing right', + 'unicode': '1F3C3-1F3FC-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿผโ€โžก๏ธ', + 'data': '🏃-1F3FC-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_running_facing_right:' + ] + }, + { + 'name': 'person running facing right', + 'unicode': '1F3C3-1F3FD-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿฝโ€โžก๏ธ', + 'data': '🏃-1F3FD-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_running_facing_right:' + ] + }, + { + 'name': 'person running facing right', + 'unicode': '1F3C3-1F3FE-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿพโ€โžก๏ธ', + 'data': '🏃-1F3FE-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_running_facing_right:' + ] + }, + { + 'name': 'person running facing right', + 'unicode': '1F3C3-1F3FF-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿฟโ€โžก๏ธ', + 'data': '🏃-1F3FF-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':person_running_facing_right:' + ] + }, + { + 'name': 'woman running facing right', + 'unicode': '1F3C3-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🏃-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [ + 'fast', + 'hurry', + 'marathon', + 'move', + 'quick', + 'race', + 'racing', + 'run', + 'rush', + 'speed', + 'woman' + ], + 'shortcodes': [ + ':woman_running_facing_right:' + ] + }, + { + 'name': 'woman running facing right', + 'unicode': '1F3C3-1F3FB-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FB-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_running_facing_right:' + ] + }, + { + 'name': 'woman running facing right', + 'unicode': '1F3C3-1F3FC-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FC-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_running_facing_right:' + ] + }, + { + 'name': 'woman running facing right', + 'unicode': '1F3C3-1F3FD-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FD-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_running_facing_right:' + ] + }, + { + 'name': 'woman running facing right', + 'unicode': '1F3C3-1F3FE-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FE-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_running_facing_right:' + ] + }, + { + 'name': 'woman running facing right', + 'unicode': '1F3C3-1F3FF-200D-2640-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FF-200D-2640-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':woman_running_facing_right:' + ] + }, + { + 'name': 'man running facing right', + 'unicode': '1F3C3-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🏃-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [ + 'fast', + 'hurry', + 'man', + 'marathon', + 'move', + 'quick', + 'race', + 'racing', + 'run', + 'rush', + 'speed' + ], + 'shortcodes': [ + ':man_running_facing_right:' + ] + }, + { + 'name': 'man running facing right', + 'unicode': '1F3C3-1F3FB-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FB-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_running_facing_right:' + ] + }, + { + 'name': 'man running facing right', + 'unicode': '1F3C3-1F3FC-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FC-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_running_facing_right:' + ] + }, + { + 'name': 'man running facing right', + 'unicode': '1F3C3-1F3FD-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FD-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_running_facing_right:' + ] + }, + { + 'name': 'man running facing right', + 'unicode': '1F3C3-1F3FE-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FE-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_running_facing_right:' + ] + }, + { + 'name': 'man running facing right', + 'unicode': '1F3C3-1F3FF-200D-2642-FE0F-200D-27A1-FE0F', + 'emoji': '๐Ÿƒ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ', + 'data': '🏃-1F3FF-200D-2642-FE0F-200D-27A1-FE0F;', + 'tags': [], + 'shortcodes': [ + ':man_running_facing_right:' + ] + }, + { + 'name': 'woman dancing', + 'unicode': '1F483', + 'emoji': '๐Ÿ’ƒ', + 'data': '💃', + 'tags': [ + 'dance', + 'dancer', + 'dancing', + 'elegant', + 'festive', + 'flair', + 'flamenco', + 'groove', + 'letโ€™s', + 'salsa', + 'tango', + 'woman' + ], + 'shortcodes': [ + ':woman_dancing:' + ] + }, + { + 'name': 'man dancing', + 'unicode': '1F57A', + 'emoji': '๐Ÿ•บ', + 'data': '🕺', + 'tags': [ + 'dance', + 'dancer', + 'dancing', + 'elegant', + 'festive', + 'flair', + 'flamenco', + 'groove', + 'letโ€™s', + 'man', + 'salsa', + 'tango' + ], + 'shortcodes': [ + ':man_dancing:' + ] + }, + { + 'name': 'person in suit levitating', + 'unicode': '1F574', + 'emoji': '๐Ÿ•ด', + 'data': '🕴', + 'tags': [ + 'business', + 'levitating', + 'person', + 'suit' + ], + 'shortcodes': [ + ':person_in_suit_levitating:' + ] + }, + { + 'name': 'people with bunny ears', + 'unicode': '1F46F', + 'emoji': '๐Ÿ‘ฏ', + 'data': '👯', + 'tags': [ + 'bestie', + 'bff', + 'bunny', + 'counterpart', + 'dancer', + 'double', + 'ear', + 'identical', + 'pair', + 'party', + 'partying', + 'people', + 'soulmate', + 'twin', + 'twinsies' + ], + 'shortcodes': [ + ':people_with_bunny_ears:' + ] + }, + { + 'name': 'men with bunny ears', + 'unicode': '1F46F-200D-2642-FE0F', + 'emoji': '๐Ÿ‘ฏโ€โ™‚๏ธ', + 'data': '👯-200D-2642-FE0F;', + 'tags': [ + 'bestie', + 'bff', + 'bunny', + 'counterpart', + 'dancer', + 'double', + 'ear', + 'identical', + 'men', + 'pair', + 'party', + 'partying', + 'people', + 'soulmate', + 'twin', + 'twinsies' + ], + 'shortcodes': [ + ':men_with_bunny_ears:' + ] + }, + { + 'name': 'women with bunny ears', + 'unicode': '1F46F-200D-2640-FE0F', + 'emoji': '๐Ÿ‘ฏโ€โ™€๏ธ', + 'data': '👯-200D-2640-FE0F;', + 'tags': [ + 'bestie', + 'bff', + 'bunny', + 'counterpart', + 'dancer', + 'double', + 'ear', + 'identical', + 'pair', + 'party', + 'partying', + 'people', + 'soulmate', + 'twin', + 'twinsies', + 'women' + ], + 'shortcodes': [ + ':women_with_bunny_ears:' + ] + }, + { + 'name': 'person in steamy room', + 'unicode': '1F9D6', + 'emoji': '๐Ÿง–', + 'data': '🧖', + 'tags': [ + 'day', + 'luxurious', + 'pamper', + 'person', + 'relax', + 'room', + 'sauna', + 'spa', + 'steam', + 'steambath', + 'unwind' + ], + 'shortcodes': [ + ':person_in_steamy_room:' + ] + }, + { + 'name': 'man in steamy room', + 'unicode': '1F9D6-200D-2642-FE0F', + 'emoji': '๐Ÿง–โ€โ™‚๏ธ', + 'data': '🧖-200D-2642-FE0F;', + 'tags': [ + 'day', + 'luxurious', + 'man', + 'pamper', + 'relax', + 'room', + 'sauna', + 'spa', + 'steam', + 'steambath', + 'unwind' + ], + 'shortcodes': [ + ':man_in_steamy_room:' + ] + }, + { + 'name': 'woman in steamy room', + 'unicode': '1F9D6-200D-2640-FE0F', + 'emoji': '๐Ÿง–โ€โ™€๏ธ', + 'data': '🧖-200D-2640-FE0F;', + 'tags': [ + 'day', + 'luxurious', + 'pamper', + 'relax', + 'room', + 'sauna', + 'spa', + 'steam', + 'steambath', + 'unwind', + 'woman' + ], + 'shortcodes': [ + ':woman_in_steamy_room:' + ] + }, + { + 'name': 'person climbing', + 'unicode': '1F9D7', + 'emoji': '๐Ÿง—', + 'data': '🧗', + 'tags': [ + 'climb', + 'climber', + 'climbing', + 'mountain', + 'person', + 'rock', + 'scale', + 'up' + ], + 'shortcodes': [ + ':person_climbing:' + ] + }, + { + 'name': 'man climbing', + 'unicode': '1F9D7-200D-2642-FE0F', + 'emoji': '๐Ÿง—โ€โ™‚๏ธ', + 'data': '🧗-200D-2642-FE0F;', + 'tags': [ + 'climb', + 'climber', + 'climbing', + 'man', + 'mountain', + 'rock', + 'scale', + 'up' + ], + 'shortcodes': [ + ':man_climbing:' + ] + }, + { + 'name': 'woman climbing', + 'unicode': '1F9D7-200D-2640-FE0F', + 'emoji': '๐Ÿง—โ€โ™€๏ธ', + 'data': '🧗-200D-2640-FE0F;', + 'tags': [ + 'climb', + 'climber', + 'climbing', + 'mountain', + 'rock', + 'scale', + 'up', + 'woman' + ], + 'shortcodes': [ + ':woman_climbing:' + ] + }, + { + 'name': 'person fencing', + 'unicode': '1F93A', + 'emoji': '๐Ÿคบ', + 'data': '🤺', + 'tags': [ + 'fencer', + 'fencing', + 'person', + 'sword' + ], + 'shortcodes': [ + ':person_fencing:' + ] + }, + { + 'name': 'horse racing', + 'unicode': '1F3C7', + 'emoji': '๐Ÿ‡', + 'data': '🏇', + 'tags': [ + 'horse', + 'jockey', + 'racehorse', + 'racing', + 'riding', + 'sport' + ], + 'shortcodes': [ + ':horse_racing:' + ] + }, + { + 'name': 'skier', + 'unicode': '26F7', + 'emoji': 'โ›ท', + 'data': '⛷', + 'tags': [ + 'ski', + 'snow' + ], + 'shortcodes': [ + ':skier:' + ] + }, + { + 'name': 'snowboarder', + 'unicode': '1F3C2', + 'emoji': '๐Ÿ‚', + 'data': '🏂', + 'tags': [ + 'ski', + 'snow', + 'snowboard', + 'sport' + ], + 'shortcodes': [ + ':snowboarder:' + ] + }, + { + 'name': 'person golfing', + 'unicode': '1F3CC', + 'emoji': '๐ŸŒ', + 'data': '🏌', + 'tags': [ + 'ball', + 'birdie', + 'caddy', + 'driving', + 'golf', + 'golfing', + 'green', + 'person', + 'pga', + 'putt', + 'range', + 'tee' + ], + 'shortcodes': [ + ':person_golfing:' + ] + }, + { + 'name': 'man golfing', + 'unicode': '1F3CC-FE0F-200D-2642-FE0F', + 'emoji': '๐ŸŒ๏ธโ€โ™‚๏ธ', + 'data': '🏌-FE0F-200D-2642-FE0F;', + 'tags': [ + 'ball', + 'birdie', + 'caddy', + 'driving', + 'golf', + 'golfing', + 'green', + 'man', + 'pga', + 'putt', + 'range', + 'tee' + ], + 'shortcodes': [ + ':man_golfing:' + ] + }, + { + 'name': 'woman golfing', + 'unicode': '1F3CC-FE0F-200D-2640-FE0F', + 'emoji': '๐ŸŒ๏ธโ€โ™€๏ธ', + 'data': '🏌-FE0F-200D-2640-FE0F;', + 'tags': [ + 'ball', + 'birdie', + 'caddy', + 'driving', + 'golf', + 'golfing', + 'green', + 'pga', + 'putt', + 'range', + 'tee', + 'woman' + ], + 'shortcodes': [ + ':woman_golfing:' + ] + }, + { + 'name': 'person surfing', + 'unicode': '1F3C4', + 'emoji': '๐Ÿ„', + 'data': '🏄', + 'tags': [ + 'beach', + 'ocean', + 'person', + 'sport', + 'surf', + 'surfer', + 'surfing', + 'swell', + 'waves' + ], + 'shortcodes': [ + ':person_surfing:' + ] + }, + { + 'name': 'man surfing', + 'unicode': '1F3C4-200D-2642-FE0F', + 'emoji': '๐Ÿ„โ€โ™‚๏ธ', + 'data': '🏄-200D-2642-FE0F;', + 'tags': [ + 'beach', + 'man', + 'ocean', + 'sport', + 'surf', + 'surfer', + 'surfing', + 'swell', + 'waves' + ], + 'shortcodes': [ + ':man_surfing:' + ] + }, + { + 'name': 'woman surfing', + 'unicode': '1F3C4-200D-2640-FE0F', + 'emoji': '๐Ÿ„โ€โ™€๏ธ', + 'data': '🏄-200D-2640-FE0F;', + 'tags': [ + 'beach', + 'ocean', + 'person', + 'sport', + 'surf', + 'surfer', + 'surfing', + 'swell', + 'waves' + ], + 'shortcodes': [ + ':woman_surfing:' + ] + }, + { + 'name': 'person rowing boat', + 'unicode': '1F6A3', + 'emoji': '๐Ÿšฃ', + 'data': '🚣', + 'tags': [ + 'boat', + 'canoe', + 'cruise', + 'fishing', + 'lake', + 'oar', + 'paddle', + 'person', + 'raft', + 'river', + 'row', + 'rowboat', + 'rowing' + ], + 'shortcodes': [ + ':person_rowing_boat:' + ] + }, + { + 'name': 'man rowing boat', + 'unicode': '1F6A3-200D-2642-FE0F', + 'emoji': '๐Ÿšฃโ€โ™‚๏ธ', + 'data': '🚣-200D-2642-FE0F;', + 'tags': [ + 'boat', + 'canoe', + 'cruise', + 'fishing', + 'lake', + 'man', + 'oar', + 'paddle', + 'raft', + 'river', + 'row', + 'rowboat', + 'rowing' + ], + 'shortcodes': [ + ':man_rowing_boat:' + ] + }, + { + 'name': 'woman rowing boat', + 'unicode': '1F6A3-200D-2640-FE0F', + 'emoji': '๐Ÿšฃโ€โ™€๏ธ', + 'data': '🚣-200D-2640-FE0F;', + 'tags': [ + 'boat', + 'canoe', + 'cruise', + 'fishing', + 'lake', + 'oar', + 'paddle', + 'raft', + 'river', + 'row', + 'rowboat', + 'rowing', + 'woman' + ], + 'shortcodes': [ + ':woman_rowing_boat:' + ] + }, + { + 'name': 'person swimming', + 'unicode': '1F3CA', + 'emoji': '๐ŸŠ', + 'data': '🏊', + 'tags': [ + 'freestyle', + 'person', + 'sport', + 'swim', + 'swimmer', + 'swimming', + 'triathlon' + ], + 'shortcodes': [ + ':person_swimming:' + ] + }, + { + 'name': 'man swimming', + 'unicode': '1F3CA-200D-2642-FE0F', + 'emoji': '๐ŸŠโ€โ™‚๏ธ', + 'data': '🏊-200D-2642-FE0F;', + 'tags': [ + 'freestyle', + 'man', + 'sport', + 'swim', + 'swimmer', + 'swimming', + 'triathlon' + ], + 'shortcodes': [ + ':man_swimming:' + ] + }, + { + 'name': 'woman swimming', + 'unicode': '1F3CA-200D-2640-FE0F', + 'emoji': '๐ŸŠโ€โ™€๏ธ', + 'data': '🏊-200D-2640-FE0F;', + 'tags': [ + 'freestyle', + 'man', + 'sport', + 'swim', + 'swimmer', + 'swimming', + 'triathlon' + ], + 'shortcodes': [ + ':woman_swimming:' + ] + }, + { + 'name': 'person bouncing ball', + 'unicode': '26F9', + 'emoji': 'โ›น', + 'data': '⛹', + 'tags': [ + 'athletic', + 'ball', + 'basketball', + 'bouncing', + 'championship', + 'dribble', + 'net', + 'person', + 'player', + 'throw' + ], + 'shortcodes': [ + ':person_bouncing_ball:' + ] + }, + { + 'name': 'man bouncing ball', + 'unicode': '26F9-FE0F-200D-2642-FE0F', + 'emoji': 'โ›น๏ธโ€โ™‚๏ธ', + 'data': '⛹-FE0F-200D-2642-FE0F;', + 'tags': [ + 'athletic', + 'ball', + 'basketball', + 'bouncing', + 'championship', + 'dribble', + 'man', + 'net', + 'player', + 'throw' + ], + 'shortcodes': [ + ':man_bouncing_ball:' + ] + }, + { + 'name': 'woman bouncing ball', + 'unicode': '26F9-FE0F-200D-2640-FE0F', + 'emoji': 'โ›น๏ธโ€โ™€๏ธ', + 'data': '⛹-FE0F-200D-2640-FE0F;', + 'tags': [ + 'athletic', + 'ball', + 'basketball', + 'bouncing', + 'championship', + 'dribble', + 'net', + 'player', + 'throw', + 'woman' + ], + 'shortcodes': [ + ':woman_bouncing_ball:' + ] + }, + { + 'name': 'person lifting weights', + 'unicode': '1F3CB', + 'emoji': '๐Ÿ‹', + 'data': '🏋', + 'tags': [ + 'barbell', + 'bodybuilder', + 'deadlift', + 'lifter', + 'lifting', + 'person', + 'powerlifting', + 'weight', + 'weightlifter', + 'weights', + 'workout' + ], + 'shortcodes': [ + ':person_lifting_weights:' + ] + }, + { + 'name': 'man lifting weights', + 'unicode': '1F3CB-FE0F-200D-2642-FE0F', + 'emoji': '๐Ÿ‹๏ธโ€โ™‚๏ธ', + 'data': '🏋-FE0F-200D-2642-FE0F;', + 'tags': [ + 'barbell', + 'bodybuilder', + 'deadlift', + 'lifter', + 'lifting', + 'man', + 'powerlifting', + 'weight', + 'weightlifter', + 'weights', + 'workout' + ], + 'shortcodes': [ + ':man_lifting_weights:' + ] + }, + { + 'name': 'woman lifting weights', + 'unicode': '1F3CB-FE0F-200D-2640-FE0F', + 'emoji': '๐Ÿ‹๏ธโ€โ™€๏ธ', + 'data': '🏋-FE0F-200D-2640-FE0F;', + 'tags': [ + 'barbell', + 'bodybuilder', + 'deadlift', + 'lifter', + 'lifting', + 'powerlifting', + 'weight', + 'weightlifter', + 'weights', + 'woman', + 'workout' + ], + 'shortcodes': [ + ':woman_lifting_weights:' + ] + }, + { + 'name': 'person biking', + 'unicode': '1F6B4', + 'emoji': '๐Ÿšด', + 'data': '🚴', + 'tags': [ + 'bicycle', + 'bicyclist', + 'bike', + 'biking', + 'cycle', + 'cyclist', + 'person', + 'riding', + 'sport' + ], + 'shortcodes': [ + ':person_biking:' + ] + }, + { + 'name': 'man biking', + 'unicode': '1F6B4-200D-2642-FE0F', + 'emoji': '๐Ÿšดโ€โ™‚๏ธ', + 'data': '🚴-200D-2642-FE0F;', + 'tags': [ + 'bicycle', + 'bicyclist', + 'bike', + 'biking', + 'cycle', + 'cyclist', + 'man', + 'riding', + 'sport' + ], + 'shortcodes': [ + ':man_biking:' + ] + }, + { + 'name': 'woman biking', + 'unicode': '1F6B4-200D-2640-FE0F', + 'emoji': '๐Ÿšดโ€โ™€๏ธ', + 'data': '🚴-200D-2640-FE0F;', + 'tags': [ + 'bicycle', + 'bicyclist', + 'bike', + 'biking', + 'cycle', + 'cyclist', + 'riding', + 'sport', + 'woman' + ], + 'shortcodes': [ + ':woman_biking:' + ] + }, + { + 'name': 'person mountain biking', + 'unicode': '1F6B5', + 'emoji': '๐Ÿšต', + 'data': '🚵', + 'tags': [ + 'bicycle', + 'bicyclist', + 'bike', + 'biking', + 'cycle', + 'cyclist', + 'mountain', + 'person', + 'riding', + 'sport' + ], + 'shortcodes': [ + ':person_mountain_biking:' + ] + }, + { + 'name': 'man mountain biking', + 'unicode': '1F6B5-200D-2642-FE0F', + 'emoji': '๐Ÿšตโ€โ™‚๏ธ', + 'data': '🚵-200D-2642-FE0F;', + 'tags': [ + 'bicycle', + 'bicyclist', + 'bike', + 'biking', + 'cycle', + 'cyclist', + 'man', + 'mountain', + 'riding', + 'sport' + ], + 'shortcodes': [ + ':man_mountain_biking:' + ] + }, + { + 'name': 'woman mountain biking', + 'unicode': '1F6B5-200D-2640-FE0F', + 'emoji': '๐Ÿšตโ€โ™€๏ธ', + 'data': '🚵-200D-2640-FE0F;', + 'tags': [ + 'bicycle', + 'bicyclist', + 'bike', + 'biking', + 'cycle', + 'cyclist', + 'mountain', + 'riding', + 'sport', + 'woman' + ], + 'shortcodes': [ + ':woman_mountain_biking:' + ] + }, + { + 'name': 'person cartwheeling', + 'unicode': '1F938', + 'emoji': '๐Ÿคธ', + 'data': '🤸', + 'tags': [ + 'active', + 'cartwheel', + 'cartwheeling', + 'excited', + 'flip', + 'gymnastics', + 'happy', + 'person', + 'somersault' + ], + 'shortcodes': [ + ':person_cartwheeling:' + ] + }, + { + 'name': 'man cartwheeling', + 'unicode': '1F938-200D-2642-FE0F', + 'emoji': '๐Ÿคธโ€โ™‚๏ธ', + 'data': '🤸-200D-2642-FE0F;', + 'tags': [ + 'active', + 'cartwheel', + 'cartwheeling', + 'excited', + 'flip', + 'gymnastics', + 'happy', + 'man', + 'somersault' + ], + 'shortcodes': [ + ':man_cartwheeling:' + ] + }, + { + 'name': 'woman cartwheeling', + 'unicode': '1F938-200D-2640-FE0F', + 'emoji': '๐Ÿคธโ€โ™€๏ธ', + 'data': '🤸-200D-2640-FE0F;', + 'tags': [ + 'active', + 'cartwheel', + 'cartwheeling', + 'excited', + 'flip', + 'gymnastics', + 'happy', + 'somersault', + 'woman' + ], + 'shortcodes': [ + ':woman_cartwheeling:' + ] + }, + { + 'name': 'people wrestling', + 'unicode': '1F93C', + 'emoji': '๐Ÿคผ', + 'data': '🤼', + 'tags': [ + 'combat', + 'duel', + 'grapple', + 'people', + 'ring', + 'tournament', + 'wrestle', + 'wrestling' + ], + 'shortcodes': [ + ':people_wrestling:' + ] + }, + { + 'name': 'men wrestling', + 'unicode': '1F93C-200D-2642-FE0F', + 'emoji': '๐Ÿคผโ€โ™‚๏ธ', + 'data': '🤼-200D-2642-FE0F;', + 'tags': [ + 'combat', + 'duel', + 'grapple', + 'men', + 'ring', + 'tournament', + 'wrestle', + 'wrestling' + ], + 'shortcodes': [ + ':men_wrestling:' + ] + }, + { + 'name': 'women wrestling', + 'unicode': '1F93C-200D-2640-FE0F', + 'emoji': '๐Ÿคผโ€โ™€๏ธ', + 'data': '🤼-200D-2640-FE0F;', + 'tags': [ + 'combat', + 'duel', + 'grapple', + 'ring', + 'tournament', + 'women', + 'wrestle', + 'wrestling' + ], + 'shortcodes': [ + ':women_wrestling:' + ] + }, + { + 'name': 'person playing water polo', + 'unicode': '1F93D', + 'emoji': '๐Ÿคฝ', + 'data': '🤽', + 'tags': [ + 'person', + 'playing', + 'polo', + 'sport', + 'swimming', + 'water', + 'waterpolo' + ], + 'shortcodes': [ + ':person_playing_water_polo:' + ] + }, + { + 'name': 'man playing water polo', + 'unicode': '1F93D-200D-2642-FE0F', + 'emoji': '๐Ÿคฝโ€โ™‚๏ธ', + 'data': '🤽-200D-2642-FE0F;', + 'tags': [ + 'man', + 'playing', + 'polo', + 'sport', + 'swimming', + 'water', + 'waterpolo' + ], + 'shortcodes': [ + ':man_playing_water_polo:' + ] + }, + { + 'name': 'woman playing water polo', + 'unicode': '1F93D-200D-2640-FE0F', + 'emoji': '๐Ÿคฝโ€โ™€๏ธ', + 'data': '🤽-200D-2640-FE0F;', + 'tags': [ + 'playing', + 'polo', + 'sport', + 'swimming', + 'water', + 'waterpolo', + 'woman' + ], + 'shortcodes': [ + ':woman_playing_water_polo:' + ] + }, + { + 'name': 'person playing handball', + 'unicode': '1F93E', + 'emoji': '๐Ÿคพ', + 'data': '🤾', + 'tags': [ + 'athletics', + 'ball', + 'catch', + 'chuck', + 'handball', + 'hurl', + 'lob', + 'person', + 'pitch', + 'playing', + 'sport', + 'throw', + 'toss' + ], + 'shortcodes': [ + ':person_playing_handball:' + ] + }, + { + 'name': 'man playing handball', + 'unicode': '1F93E-200D-2642-FE0F', + 'emoji': '๐Ÿคพโ€โ™‚๏ธ', + 'data': '🤾-200D-2642-FE0F;', + 'tags': [ + 'athletics', + 'ball', + 'catch', + 'chuck', + 'handball', + 'hurl', + 'lob', + 'man', + 'pitch', + 'playing', + 'sport', + 'throw', + 'toss' + ], + 'shortcodes': [ + ':man_playing_handball:' + ] + }, + { + 'name': 'woman playing handball', + 'unicode': '1F93E-200D-2640-FE0F', + 'emoji': '๐Ÿคพโ€โ™€๏ธ', + 'data': '🤾-200D-2640-FE0F;', + 'tags': [ + 'athletics', + 'ball', + 'catch', + 'chuck', + 'handball', + 'hurl', + 'lob', + 'pitch', + 'playing', + 'sport', + 'throw', + 'toss', + 'woman' + ], + 'shortcodes': [ + ':woman_playing_handball:' + ] + }, + { + 'name': 'person juggling', + 'unicode': '1F939', + 'emoji': '๐Ÿคน', + 'data': '🤹', + 'tags': [ + 'act', + 'balance', + 'balancing', + 'handle', + 'juggle', + 'juggling', + 'manage', + 'multitask', + 'person', + 'skill' + ], + 'shortcodes': [ + ':person_juggling:' + ] + }, + { + 'name': 'man juggling', + 'unicode': '1F939-200D-2642-FE0F', + 'emoji': '๐Ÿคนโ€โ™‚๏ธ', + 'data': '🤹-200D-2642-FE0F;', + 'tags': [ + 'act', + 'balance', + 'balancing', + 'handle', + 'juggle', + 'juggling', + 'man', + 'manage', + 'multitask', + 'skill' + ], + 'shortcodes': [ + ':man_juggling:' + ] + }, + { + 'name': 'woman juggling', + 'unicode': '1F939-200D-2640-FE0F', + 'emoji': '๐Ÿคนโ€โ™€๏ธ', + 'data': '🤹-200D-2640-FE0F;', + 'tags': [ + 'act', + 'balance', + 'balancing', + 'handle', + 'juggle', + 'juggling', + 'manage', + 'multitask', + 'skill', + 'woman' + ], + 'shortcodes': [ + ':woman_juggling:' + ] + }, + { + 'name': 'person in lotus position', + 'unicode': '1F9D8', + 'emoji': '๐Ÿง˜', + 'data': '🧘', + 'tags': [ + 'cross', + 'legged', + 'legs', + 'lotus', + 'meditation', + 'peace', + 'person', + 'position', + 'relax', + 'serenity', + 'yoga', + 'yogi', + 'zen' + ], + 'shortcodes': [ + ':person_in_lotus_position:' + ] + }, + { + 'name': 'man in lotus position', + 'unicode': '1F9D8-200D-2642-FE0F', + 'emoji': '๐Ÿง˜โ€โ™‚๏ธ', + 'data': '🧘-200D-2642-FE0F;', + 'tags': [ + 'cross', + 'legged', + 'legs', + 'lotus', + 'man', + 'meditation', + 'peace', + 'position', + 'relax', + 'serenity', + 'yoga', + 'yogi', + 'zen' + ], + 'shortcodes': [ + ':man_in_lotus_position:' + ] + }, + { + 'name': 'woman in lotus position', + 'unicode': '1F9D8-200D-2640-FE0F', + 'emoji': '๐Ÿง˜โ€โ™€๏ธ', + 'data': '🧘-200D-2640-FE0F;', + 'tags': [ + 'cross', + 'legged', + 'legs', + 'lotus', + 'meditation', + 'peace', + 'position', + 'relax', + 'serenity', + 'woman', + 'yoga', + 'yogi', + 'zen' + ], + 'shortcodes': [ + ':woman_in_lotus_position:' + ] + }, + { + 'name': 'person taking bath', + 'unicode': '1F6C0', + 'emoji': '๐Ÿ›€', + 'data': '🛀', + 'tags': [ + 'bath', + 'bathtub', + 'person', + 'taking', + 'tub' + ], + 'shortcodes': [ + ':person_taking_bath:' + ] + }, + { + 'name': 'person in bed', + 'unicode': '1F6CC', + 'emoji': '๐Ÿ›Œ', + 'data': '🛌', + 'tags': [ + 'bed', + 'bedtime', + 'good', + 'goodnight', + 'hotel', + 'nap', + 'night', + 'person', + 'sleep', + 'tired', + 'zzz' + ], + 'shortcodes': [ + ':person_in_bed:' + ] + }, + { + 'name': 'people holding hands', + 'unicode': '1F9D1-200D-1F91D-200D-1F9D1', + 'emoji': '๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘', + 'data': '🧑-200D-1F91D-200D-1F9D1;', + 'tags': [ + 'bae', + 'bestie', + 'bff', + 'couple', + 'dating', + 'flirt', + 'friends', + 'hand', + 'hold', + 'people', + 'twins' + ], + 'shortcodes': [ + ':people_holding_hands:' + ] + }, + { + 'name': 'women holding hands', + 'unicode': '1F46D', + 'emoji': '๐Ÿ‘ญ', + 'data': '👭', + 'tags': [ + 'bae', + 'bestie', + 'bff', + 'couple', + 'dating', + 'flirt', + 'friends', + 'girls', + 'hand', + 'hold', + 'sisters', + 'twins', + 'women' + ], + 'shortcodes': [ + ':women_holding_hands:' + ] + }, + { + 'name': 'woman and man holding hands', + 'unicode': '1F46B', + 'emoji': '๐Ÿ‘ซ', + 'data': '👫', + 'tags': [ + 'bae', + 'bestie', + 'bff', + 'couple', + 'dating', + 'flirt', + 'friends', + 'hand', + 'hold', + 'man', + 'twins', + 'woman' + ], + 'shortcodes': [ + ':woman_and_man_holding_hands:' + ] + }, + { + 'name': 'men holding hands', + 'unicode': '1F46C', + 'emoji': '๐Ÿ‘ฌ', + 'data': '👬', + 'tags': [ + 'bae', + 'bestie', + 'bff', + 'boys', + 'brothers', + 'couple', + 'dating', + 'flirt', + 'friends', + 'hand', + 'hold', + 'men', + 'twins' + ], + 'shortcodes': [ + ':men_holding_hands:' + ] + }, + { + 'name': 'kiss', + 'unicode': '1F48F', + 'emoji': '๐Ÿ’', + 'data': '💏', + 'tags': [ + 'anniversary', + 'babe', + 'bae', + 'couple', + 'date', + 'dating', + 'heart', + 'love', + 'mwah', + 'person', + 'romance', + 'together', + 'xoxo' + ], + 'shortcodes': [ + ':kiss:' + ] + }, + { + 'name': 'kiss: woman, man', + 'unicode': '1F469-200D-2764-FE0F-200D-1F48B-200D-1F468', + 'emoji': '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ', + 'data': '👩-200D-2764-FE0F-200D-1F48B-200D-1F468;', + 'tags': [ + 'anniversary', + 'babe', + 'bae', + 'couple', + 'date', + 'dating', + 'heart', + 'kiss', + 'love', + 'man', + 'mwah', + 'person', + 'romance', + 'together', + 'woman', + 'xoxo' + ], + 'shortcodes': [ + ':kiss:_woman,_man:' + ] + }, + { + 'name': 'kiss: man, man', + 'unicode': '1F468-200D-2764-FE0F-200D-1F48B-200D-1F468', + 'emoji': '๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ', + 'data': '👨-200D-2764-FE0F-200D-1F48B-200D-1F468;', + 'tags': [ + 'anniversary', + 'babe', + 'bae', + 'couple', + 'date', + 'dating', + 'heart', + 'kiss', + 'love', + 'man', + 'mwah', + 'person', + 'romance', + 'together', + 'xoxo' + ], + 'shortcodes': [ + ':kiss:_man,_man:' + ] + }, + { + 'name': 'kiss: woman, woman', + 'unicode': '1F469-200D-2764-FE0F-200D-1F48B-200D-1F469', + 'emoji': '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ', + 'data': '👩-200D-2764-FE0F-200D-1F48B-200D-1F469;', + 'tags': [ + 'anniversary', + 'babe', + 'bae', + 'couple', + 'date', + 'dating', + 'heart', + 'kiss', + 'love', + 'mwah', + 'person', + 'romance', + 'together', + 'woman', + 'xoxo' + ], + 'shortcodes': [ + ':kiss:_woman,_woman:' + ] + }, + { + 'name': 'couple with heart', + 'unicode': '1F491', + 'emoji': '๐Ÿ’‘', + 'data': '💑', + 'tags': [ + 'anniversary', + 'babe', + 'bae', + 'couple', + 'dating', + 'heart', + 'kiss', + 'love', + 'person', + 'relationship', + 'romance', + 'together', + 'you' + ], + 'shortcodes': [ + ':couple_with_heart:' + ] + }, + { + 'name': 'couple with heart: woman, man', + 'unicode': '1F469-200D-2764-FE0F-200D-1F468', + 'emoji': '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ', + 'data': '👩-200D-2764-FE0F-200D-1F468;', + 'tags': [ + 'anniversary', + 'babe', + 'bae', + 'couple', + 'dating', + 'heart', + 'kiss', + 'love', + 'man', + 'person', + 'relationship', + 'romance', + 'together', + 'woman', + 'you' + ], + 'shortcodes': [ + ':couple_with_heart:_woman,_man:' + ] + }, + { + 'name': 'couple with heart: man, man', + 'unicode': '1F468-200D-2764-FE0F-200D-1F468', + 'emoji': '๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ', + 'data': '👨-200D-2764-FE0F-200D-1F468;', + 'tags': [ + 'anniversary', + 'babe', + 'bae', + 'couple', + 'dating', + 'heart', + 'kiss', + 'love', + 'man', + 'person', + 'relationship', + 'romance', + 'together', + 'you' + ], + 'shortcodes': [ + ':couple_with_heart:_man,_man:' + ] + }, + { + 'name': 'couple with heart: woman, woman', + 'unicode': '1F469-200D-2764-FE0F-200D-1F469', + 'emoji': '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ', + 'data': '👩-200D-2764-FE0F-200D-1F469;', + 'tags': [ + 'anniversary', + 'babe', + 'bae', + 'couple', + 'dating', + 'heart', + 'kiss', + 'love', + 'person', + 'relationship', + 'romance', + 'together', + 'woman', + 'you' + ], + 'shortcodes': [ + ':couple_with_heart:_woman,_woman:' + ] + }, + { + 'name': 'family: man, woman, boy', + 'unicode': '1F468-200D-1F469-200D-1F466', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ', + 'data': '👨-200D-1F469-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'man', + 'woman' + ], + 'shortcodes': [ + ':family:_man,_woman,_boy:' + ] + }, + { + 'name': 'family: man, woman, girl', + 'unicode': '1F468-200D-1F469-200D-1F467', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง', + 'data': '👨-200D-1F469-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'man', + 'woman' + ], + 'shortcodes': [ + ':family:_man,_woman,_girl:' + ] + }, + { + 'name': 'family: man, woman, girl, boy', + 'unicode': '1F468-200D-1F469-200D-1F467-200D-1F466', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', + 'data': '👨-200D-1F469-200D-1F467-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'girl', + 'man', + 'woman' + ], + 'shortcodes': [ + ':family:_man,_woman,_girl,_boy:' + ] + }, + { + 'name': 'family: man, woman, boy, boy', + 'unicode': '1F468-200D-1F469-200D-1F466-200D-1F466', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', + 'data': '👨-200D-1F469-200D-1F466-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'man', + 'woman' + ], + 'shortcodes': [ + ':family:_man,_woman,_boy,_boy:' + ] + }, + { + 'name': 'family: man, woman, girl, girl', + 'unicode': '1F468-200D-1F469-200D-1F467-200D-1F467', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง', + 'data': '👨-200D-1F469-200D-1F467-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'man', + 'woman' + ], + 'shortcodes': [ + ':family:_man,_woman,_girl,_girl:' + ] + }, + { + 'name': 'family: man, man, boy', + 'unicode': '1F468-200D-1F468-200D-1F466', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ', + 'data': '👨-200D-1F468-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'man' + ], + 'shortcodes': [ + ':family:_man,_man,_boy:' + ] + }, + { + 'name': 'family: man, man, girl', + 'unicode': '1F468-200D-1F468-200D-1F467', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง', + 'data': '👨-200D-1F468-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'man' + ], + 'shortcodes': [ + ':family:_man,_man,_girl:' + ] + }, + { + 'name': 'family: man, man, girl, boy', + 'unicode': '1F468-200D-1F468-200D-1F467-200D-1F466', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', + 'data': '👨-200D-1F468-200D-1F467-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'girl', + 'man' + ], + 'shortcodes': [ + ':family:_man,_man,_girl,_boy:' + ] + }, + { + 'name': 'family: man, man, boy, boy', + 'unicode': '1F468-200D-1F468-200D-1F466-200D-1F466', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', + 'data': '👨-200D-1F468-200D-1F466-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'man' + ], + 'shortcodes': [ + ':family:_man,_man,_boy,_boy:' + ] + }, + { + 'name': 'family: man, man, girl, girl', + 'unicode': '1F468-200D-1F468-200D-1F467-200D-1F467', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง', + 'data': '👨-200D-1F468-200D-1F467-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'man' + ], + 'shortcodes': [ + ':family:_man,_man,_girl,_girl:' + ] + }, + { + 'name': 'family: woman, woman, boy', + 'unicode': '1F469-200D-1F469-200D-1F466', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ', + 'data': '👩-200D-1F469-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_woman,_boy:' + ] + }, + { + 'name': 'family: woman, woman, girl', + 'unicode': '1F469-200D-1F469-200D-1F467', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง', + 'data': '👩-200D-1F469-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_woman,_girl:' + ] + }, + { + 'name': 'family: woman, woman, girl, boy', + 'unicode': '1F469-200D-1F469-200D-1F467-200D-1F466', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', + 'data': '👩-200D-1F469-200D-1F467-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'girl', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_woman,_girl,_boy:' + ] + }, + { + 'name': 'family: woman, woman, boy, boy', + 'unicode': '1F469-200D-1F469-200D-1F466-200D-1F466', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', + 'data': '👩-200D-1F469-200D-1F466-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_woman,_boy,_boy:' + ] + }, + { + 'name': 'family: woman, woman, girl, girl', + 'unicode': '1F469-200D-1F469-200D-1F467-200D-1F467', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง', + 'data': '👩-200D-1F469-200D-1F467-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_woman,_girl,_girl:' + ] + }, + { + 'name': 'family: man, boy', + 'unicode': '1F468-200D-1F466', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘ฆ', + 'data': '👨-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'man' + ], + 'shortcodes': [ + ':family:_man,_boy:' + ] + }, + { + 'name': 'family: man, boy, boy', + 'unicode': '1F468-200D-1F466-200D-1F466', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', + 'data': '👨-200D-1F466-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'man' + ], + 'shortcodes': [ + ':family:_man,_boy,_boy:' + ] + }, + { + 'name': 'family: man, girl', + 'unicode': '1F468-200D-1F467', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘ง', + 'data': '👨-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'man' + ], + 'shortcodes': [ + ':family:_man,_girl:' + ] + }, + { + 'name': 'family: man, girl, boy', + 'unicode': '1F468-200D-1F467-200D-1F466', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', + 'data': '👨-200D-1F467-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'girl', + 'man' + ], + 'shortcodes': [ + ':family:_man,_girl,_boy:' + ] + }, + { + 'name': 'family: man, girl, girl', + 'unicode': '1F468-200D-1F467-200D-1F467', + 'emoji': '๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง', + 'data': '👨-200D-1F467-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'man' + ], + 'shortcodes': [ + ':family:_man,_girl,_girl:' + ] + }, + { + 'name': 'family: woman, boy', + 'unicode': '1F469-200D-1F466', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘ฆ', + 'data': '👩-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_boy:' + ] + }, + { + 'name': 'family: woman, boy, boy', + 'unicode': '1F469-200D-1F466-200D-1F466', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', + 'data': '👩-200D-1F466-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_boy,_boy:' + ] + }, + { + 'name': 'family: woman, girl', + 'unicode': '1F469-200D-1F467', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘ง', + 'data': '👩-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_girl:' + ] + }, + { + 'name': 'family: woman, girl, boy', + 'unicode': '1F469-200D-1F467-200D-1F466', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', + 'data': '👩-200D-1F467-200D-1F466;', + 'tags': [ + 'boy', + 'child', + 'family', + 'girl', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_girl,_boy:' + ] + }, + { + 'name': 'family: woman, girl, girl', + 'unicode': '1F469-200D-1F467-200D-1F467', + 'emoji': '๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง', + 'data': '👩-200D-1F467-200D-1F467;', + 'tags': [ + 'child', + 'family', + 'girl', + 'woman' + ], + 'shortcodes': [ + ':family:_woman,_girl,_girl:' + ] + }, + { + 'name': 'speaking head', + 'unicode': '1F5E3', + 'emoji': '๐Ÿ—ฃ', + 'data': '🗣', + 'tags': [ + 'face', + 'head', + 'silhouette', + 'speak', + 'speaking' + ], + 'shortcodes': [ + ':speaking_head:' + ] + }, + { + 'name': 'bust in silhouette', + 'unicode': '1F464', + 'emoji': '๐Ÿ‘ค', + 'data': '👤', + 'tags': [ + 'bust', + 'mysterious', + 'shadow', + 'silhouette' + ], + 'shortcodes': [ + ':bust_in_silhouette:' + ] + }, + { + 'name': 'busts in silhouette', + 'unicode': '1F465', + 'emoji': '๐Ÿ‘ฅ', + 'data': '👥', + 'tags': [ + 'bff', + 'bust', + 'busts', + 'everyone', + 'friend', + 'friends', + 'people', + 'silhouette' + ], + 'shortcodes': [ + ':busts_in_silhouette:' + ] + }, + { + 'name': 'people hugging', + 'unicode': '1FAC2', + 'emoji': '๐Ÿซ‚', + 'data': '🫂', + 'tags': [ + 'comfort', + 'embrace', + 'farewell', + 'friendship', + 'goodbye', + 'hello', + 'hug', + 'hugging', + 'love', + 'people', + 'thanks' + ], + 'shortcodes': [ + ':people_hugging:' + ] + }, + { + 'name': 'family', + 'unicode': '1F46A', + 'emoji': '๐Ÿ‘ช', + 'data': '👪', + 'tags': [ + 'child' + ], + 'shortcodes': [ + ':family:' + ] + }, + { + 'name': 'family: adult, adult, child', + 'unicode': '1F9D1-200D-1F9D1-200D-1F9D2', + 'emoji': '๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’', + 'data': '🧑-200D-1F9D1-200D-1F9D2;', + 'tags': [ + 'adult', + 'child', + 'family' + ], + 'shortcodes': [ + ':family:_adult,_adult,_child:' + ] + }, + { + 'name': 'family: adult, adult, child, child', + 'unicode': '1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2', + 'emoji': '๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’', + 'data': '🧑-200D-1F9D1-200D-1F9D2-200D-1F9D2;', + 'tags': [ + 'adult', + 'child', + 'family' + ], + 'shortcodes': [ + ':family:_adult,_adult,_child,_child:' + ] + }, + { + 'name': 'family: adult, child', + 'unicode': '1F9D1-200D-1F9D2', + 'emoji': '๐Ÿง‘โ€๐Ÿง’', + 'data': '🧑-200D-1F9D2;', + 'tags': [ + 'adult', + 'child', + 'family' + ], + 'shortcodes': [ + ':family:_adult,_child:' + ] + }, + { + 'name': 'family: adult, child, child', + 'unicode': '1F9D1-200D-1F9D2-200D-1F9D2', + 'emoji': '๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’', + 'data': '🧑-200D-1F9D2-200D-1F9D2;', + 'tags': [ + 'adult', + 'child', + 'family' + ], + 'shortcodes': [ + ':family:_adult,_child,_child:' + ] + }, + { + 'name': 'footprints', + 'unicode': '1F463', + 'emoji': '๐Ÿ‘ฃ', + 'data': '👣', + 'tags': [ + 'barefoot', + 'clothing', + 'footprint', + 'omw', + 'print', + 'walk' + ], + 'shortcodes': [ + ':footprints:' + ] + }, + { + 'name': 'fingerprint', + 'unicode': '1FAC6', + 'emoji': '๐Ÿซ†', + 'data': '🫆', + 'tags': [ + 'clue', + 'crime', + 'detective', + 'forensics', + 'identity', + 'mystery', + 'print', + 'safety', + 'trace' + ], + 'shortcodes': [ + ':fingerprint:' + ] + } + ] + }, + { + 'name': 'animals-nature', + 'iconClass': 'fas fa-paw', + 'emojis': [ + { + 'name': 'monkey face', + 'unicode': '1F435', + 'emoji': '๐Ÿต', + 'data': '🐵', + 'tags': [ + 'animal', + 'banana', + 'face', + 'monkey' + ], + 'shortcodes': [ + ':monkey_face:' + ] + }, + { + 'name': 'monkey', + 'unicode': '1F412', + 'emoji': '๐Ÿ’', + 'data': '🐒', + 'tags': [ + 'animal', + 'banana' + ], + 'shortcodes': [ + ':monkey:' + ] + }, + { + 'name': 'gorilla', + 'unicode': '1F98D', + 'emoji': '๐Ÿฆ', + 'data': '🦍', + 'tags': [ + 'animal' + ], + 'shortcodes': [ + ':gorilla:' + ] + }, + { + 'name': 'orangutan', + 'unicode': '1F9A7', + 'emoji': '๐Ÿฆง', + 'data': '🦧', + 'tags': [ + 'animal', + 'ape', + 'monkey' + ], + 'shortcodes': [ + ':orangutan:' + ] + }, + { + 'name': 'dog face', + 'unicode': '1F436', + 'emoji': '๐Ÿถ', + 'data': '🐶', + 'tags': [ + 'adorbs', + 'animal', + 'dog', + 'face', + 'pet', + 'puppies', + 'puppy' + ], + 'shortcodes': [ + ':dog_face:' + ] + }, + { + 'name': 'dog', + 'unicode': '1F415', + 'emoji': '๐Ÿ•', + 'data': '🐕', + 'tags': [ + 'animal', + 'animals', + 'dogs', + 'pet' + ], + 'shortcodes': [ + ':dog:' + ] + }, + { + 'name': 'guide dog', + 'unicode': '1F9AE', + 'emoji': '๐Ÿฆฎ', + 'data': '🦮', + 'tags': [ + 'accessibility', + 'animal', + 'blind', + 'dog', + 'guide' + ], + 'shortcodes': [ + ':guide_dog:' + ] + }, + { + 'name': 'service dog', + 'unicode': '1F415-200D-1F9BA', + 'emoji': '๐Ÿ•โ€๐Ÿฆบ', + 'data': '🐕-200D-1F9BA;', + 'tags': [ + 'accessibility', + 'animal', + 'assistance', + 'dog', + 'service' + ], + 'shortcodes': [ + ':service_dog:' + ] + }, + { + 'name': 'poodle', + 'unicode': '1F429', + 'emoji': '๐Ÿฉ', + 'data': '🐩', + 'tags': [ + 'animal', + 'dog', + 'fluffy' + ], + 'shortcodes': [ + ':poodle:' + ] + }, + { + 'name': 'wolf', + 'unicode': '1F43A', + 'emoji': '๐Ÿบ', + 'data': '🐺', + 'tags': [ + 'animal', + 'face' + ], + 'shortcodes': [ + ':wolf:' + ] + }, + { + 'name': 'fox', + 'unicode': '1F98A', + 'emoji': '๐ŸฆŠ', + 'data': '🦊', + 'tags': [ + 'animal', + 'face' + ], + 'shortcodes': [ + ':fox:' + ] + }, + { + 'name': 'raccoon', + 'unicode': '1F99D', + 'emoji': '๐Ÿฆ', + 'data': '🦝', + 'tags': [ + 'animal', + 'curious', + 'sly' + ], + 'shortcodes': [ + ':raccoon:' + ] + }, + { + 'name': 'cat face', + 'unicode': '1F431', + 'emoji': '๐Ÿฑ', + 'data': '🐱', + 'tags': [ + 'animal', + 'cat', + 'face', + 'kitten', + 'kitty', + 'pet' + ], + 'shortcodes': [ + ':cat_face:' + ] + }, + { + 'name': 'cat', + 'unicode': '1F408', + 'emoji': '๐Ÿˆ', + 'data': '🐈', + 'tags': [ + 'animal', + 'animals', + 'cats', + 'kitten', + 'pet' + ], + 'shortcodes': [ + ':cat:' + ] + }, + { + 'name': 'black cat', + 'unicode': '1F408-200D-2B1B', + 'emoji': '๐Ÿˆโ€โฌ›', + 'data': '🐈-200D-2B1B;', + 'tags': [ + 'animal', + 'black', + 'cat', + 'feline', + 'halloween', + 'meow', + 'unlucky' + ], + 'shortcodes': [ + ':black_cat:' + ] + }, + { + 'name': 'lion', + 'unicode': '1F981', + 'emoji': '๐Ÿฆ', + 'data': '🦁', + 'tags': [ + 'alpha', + 'animal', + 'face', + 'leo', + 'mane', + 'order', + 'rawr', + 'roar', + 'safari', + 'strong', + 'zodiac' + ], + 'shortcodes': [ + ':lion:' + ] + }, + { + 'name': 'tiger face', + 'unicode': '1F42F', + 'emoji': '๐Ÿฏ', + 'data': '🐯', + 'tags': [ + 'animal', + 'big', + 'cat', + 'face', + 'predator', + 'tiger' + ], + 'shortcodes': [ + ':tiger_face:' + ] + }, + { + 'name': 'tiger', + 'unicode': '1F405', + 'emoji': '๐Ÿ…', + 'data': '🐅', + 'tags': [ + 'animal', + 'big', + 'cat', + 'predator', + 'zoo' + ], + 'shortcodes': [ + ':tiger:' + ] + }, + { + 'name': 'leopard', + 'unicode': '1F406', + 'emoji': '๐Ÿ†', + 'data': '🐆', + 'tags': [ + 'animal', + 'big', + 'cat', + 'predator', + 'zoo' + ], + 'shortcodes': [ + ':leopard:' + ] + }, + { + 'name': 'horse face', + 'unicode': '1F434', + 'emoji': '๐Ÿด', + 'data': '🐴', + 'tags': [ + 'animal', + 'dressage', + 'equine', + 'face', + 'farm', + 'horse', + 'horses' + ], + 'shortcodes': [ + ':horse_face:' + ] + }, + { + 'name': 'moose', + 'unicode': '1FACE', + 'emoji': '๐ŸซŽ', + 'data': '🫎', + 'tags': [ + 'alces', + 'animal', + 'antlers', + 'elk', + 'mammal' + ], + 'shortcodes': [ + ':moose:' + ] + }, + { + 'name': 'donkey', + 'unicode': '1FACF', + 'emoji': '๐Ÿซ', + 'data': '🫏', + 'tags': [ + 'animal', + 'ass', + 'burro', + 'hinny', + 'mammal', + 'mule', + 'stubborn' + ], + 'shortcodes': [ + ':donkey:' + ] + }, + { + 'name': 'horse', + 'unicode': '1F40E', + 'emoji': '๐ŸŽ', + 'data': '🐎', + 'tags': [ + 'animal', + 'equestrian', + 'farm', + 'racehorse', + 'racing' + ], + 'shortcodes': [ + ':horse:' + ] + }, + { + 'name': 'unicorn', + 'unicode': '1F984', + 'emoji': '๐Ÿฆ„', + 'data': '🦄', + 'tags': [ + 'face' + ], + 'shortcodes': [ + ':unicorn:' + ] + }, + { + 'name': 'zebra', + 'unicode': '1F993', + 'emoji': '๐Ÿฆ“', + 'data': '🦓', + 'tags': [ + 'animal', + 'stripe' + ], + 'shortcodes': [ + ':zebra:' + ] + }, + { + 'name': 'deer', + 'unicode': '1F98C', + 'emoji': '๐ŸฆŒ', + 'data': '🦌', + 'tags': [ + 'animal' + ], + 'shortcodes': [ + ':deer:' + ] + }, + { + 'name': 'bison', + 'unicode': '1F9AC', + 'emoji': '๐Ÿฆฌ', + 'data': '🦬', + 'tags': [ + 'animal', + 'buffalo', + 'herd', + 'wisent' + ], + 'shortcodes': [ + ':bison:' + ] + }, + { + 'name': 'cow face', + 'unicode': '1F42E', + 'emoji': '๐Ÿฎ', + 'data': '🐮', + 'tags': [ + 'animal', + 'cow', + 'face', + 'farm', + 'milk', + 'moo' + ], + 'shortcodes': [ + ':cow_face:' + ] + }, + { + 'name': 'ox', + 'unicode': '1F402', + 'emoji': '๐Ÿ‚', + 'data': '🐂', + 'tags': [ + 'animal', + 'animals', + 'bull', + 'farm', + 'taurus', + 'zodiac' + ], + 'shortcodes': [ + ':ox:' + ] + }, + { + 'name': 'water buffalo', + 'unicode': '1F403', + 'emoji': '๐Ÿƒ', + 'data': '🐃', + 'tags': [ + 'animal', + 'buffalo', + 'water', + 'zoo' + ], + 'shortcodes': [ + ':water_buffalo:' + ] + }, + { + 'name': 'cow', + 'unicode': '1F404', + 'emoji': '๐Ÿ„', + 'data': '🐄', + 'tags': [ + 'animal', + 'animals', + 'farm', + 'milk', + 'moo' + ], + 'shortcodes': [ + ':cow:' + ] + }, + { + 'name': 'pig face', + 'unicode': '1F437', + 'emoji': '๐Ÿท', + 'data': '🐷', + 'tags': [ + 'animal', + 'bacon', + 'face', + 'farm', + 'pig', + 'pork' + ], + 'shortcodes': [ + ':pig_face:' + ] + }, + { + 'name': 'pig', + 'unicode': '1F416', + 'emoji': '๐Ÿ–', + 'data': '🐖', + 'tags': [ + 'animal', + 'bacon', + 'farm', + 'pork', + 'sow' + ], + 'shortcodes': [ + ':pig:' + ] + }, + { + 'name': 'boar', + 'unicode': '1F417', + 'emoji': '๐Ÿ—', + 'data': '🐗', + 'tags': [ + 'animal', + 'pig' + ], + 'shortcodes': [ + ':boar:' + ] + }, + { + 'name': 'pig nose', + 'unicode': '1F43D', + 'emoji': '๐Ÿฝ', + 'data': '🐽', + 'tags': [ + 'animal', + 'face', + 'farm', + 'nose', + 'pig', + 'smell', + 'snout' + ], + 'shortcodes': [ + ':pig_nose:' + ] + }, + { + 'name': 'ram', + 'unicode': '1F40F', + 'emoji': '๐Ÿ', + 'data': '🐏', + 'tags': [ + 'animal', + 'aries', + 'horns', + 'male', + 'sheep', + 'zodiac', + 'zoo' + ], + 'shortcodes': [ + ':ram:' + ] + }, + { + 'name': 'ewe', + 'unicode': '1F411', + 'emoji': '๐Ÿ‘', + 'data': '🐑', + 'tags': [ + 'animal', + 'baa', + 'farm', + 'female', + 'fluffy', + 'lamb', + 'sheep', + 'wool' + ], + 'shortcodes': [ + ':ewe:' + ] + }, + { + 'name': 'goat', + 'unicode': '1F410', + 'emoji': '๐Ÿ', + 'data': '🐐', + 'tags': [ + 'animal', + 'capricorn', + 'farm', + 'milk', + 'zodiac' + ], + 'shortcodes': [ + ':goat:' + ] + }, + { + 'name': 'camel', + 'unicode': '1F42A', + 'emoji': '๐Ÿช', + 'data': '🐪', + 'tags': [ + 'animal', + 'desert', + 'dromedary', + 'hump', + 'one' + ], + 'shortcodes': [ + ':camel:' + ] + }, + { + 'name': 'two-hump camel', + 'unicode': '1F42B', + 'emoji': '๐Ÿซ', + 'data': '🐫', + 'tags': [ + 'animal', + 'bactrian', + 'camel', + 'desert', + 'hump', + 'two', + 'two-hump' + ], + 'shortcodes': [ + ':two-hump_camel:' + ] + }, + { + 'name': 'llama', + 'unicode': '1F999', + 'emoji': '๐Ÿฆ™', + 'data': '🦙', + 'tags': [ + 'alpaca', + 'animal', + 'guanaco', + 'vicuรฑa', + 'wool' + ], + 'shortcodes': [ + ':llama:' + ] + }, + { + 'name': 'giraffe', + 'unicode': '1F992', + 'emoji': '๐Ÿฆ’', + 'data': '🦒', + 'tags': [ + 'animal', + 'spots' + ], + 'shortcodes': [ + ':giraffe:' + ] + }, + { + 'name': 'elephant', + 'unicode': '1F418', + 'emoji': '๐Ÿ˜', + 'data': '🐘', + 'tags': [ + 'animal' + ], + 'shortcodes': [ + ':elephant:' + ] + }, + { + 'name': 'mammoth', + 'unicode': '1F9A3', + 'emoji': '๐Ÿฆฃ', + 'data': '🦣', + 'tags': [ + 'animal', + 'extinction', + 'large', + 'tusk', + 'wooly' + ], + 'shortcodes': [ + ':mammoth:' + ] + }, + { + 'name': 'rhinoceros', + 'unicode': '1F98F', + 'emoji': '๐Ÿฆ', + 'data': '🦏', + 'tags': [ + 'animal' + ], + 'shortcodes': [ + ':rhinoceros:' + ] + }, + { + 'name': 'hippopotamus', + 'unicode': '1F99B', + 'emoji': '๐Ÿฆ›', + 'data': '🦛', + 'tags': [ + 'animal', + 'hippo' + ], + 'shortcodes': [ + ':hippopotamus:' + ] + }, + { + 'name': 'mouse face', + 'unicode': '1F42D', + 'emoji': '๐Ÿญ', + 'data': '🐭', + 'tags': [ + 'animal', + 'face', + 'mouse' + ], + 'shortcodes': [ + ':mouse_face:' + ] + }, + { + 'name': 'mouse', + 'unicode': '1F401', + 'emoji': '๐Ÿ', + 'data': '🐁', + 'tags': [ + 'animal', + 'animals' + ], + 'shortcodes': [ + ':mouse:' + ] + }, + { + 'name': 'rat', + 'unicode': '1F400', + 'emoji': '๐Ÿ€', + 'data': '🐀', + 'tags': [ + 'animal' + ], + 'shortcodes': [ + ':rat:' + ] + }, + { + 'name': 'hamster', + 'unicode': '1F439', + 'emoji': '๐Ÿน', + 'data': '🐹', + 'tags': [ + 'animal', + 'face', + 'pet' + ], + 'shortcodes': [ + ':hamster:' + ] + }, + { + 'name': 'rabbit face', + 'unicode': '1F430', + 'emoji': '๐Ÿฐ', + 'data': '🐰', + 'tags': [ + 'animal', + 'bunny', + 'face', + 'pet', + 'rabbit' + ], + 'shortcodes': [ + ':rabbit_face:' + ] + }, + { + 'name': 'rabbit', + 'unicode': '1F407', + 'emoji': '๐Ÿ‡', + 'data': '🐇', + 'tags': [ + 'animal', + 'bunny', + 'pet' + ], + 'shortcodes': [ + ':rabbit:' + ] + }, + { + 'name': 'chipmunk', + 'unicode': '1F43F', + 'emoji': '๐Ÿฟ', + 'data': '🐿', + 'tags': [ + 'animal', + 'squirrel' + ], + 'shortcodes': [ + ':chipmunk:' + ] + }, + { + 'name': 'beaver', + 'unicode': '1F9AB', + 'emoji': '๐Ÿฆซ', + 'data': '🦫', + 'tags': [ + 'animal', + 'dam', + 'teeth' + ], + 'shortcodes': [ + ':beaver:' + ] + }, + { + 'name': 'hedgehog', + 'unicode': '1F994', + 'emoji': '๐Ÿฆ”', + 'data': '🦔', + 'tags': [ + 'animal', + 'spiny' + ], + 'shortcodes': [ + ':hedgehog:' + ] + }, + { + 'name': 'bat', + 'unicode': '1F987', + 'emoji': '๐Ÿฆ‡', + 'data': '🦇', + 'tags': [ + 'animal', + 'vampire' + ], + 'shortcodes': [ + ':bat:' + ] + }, + { + 'name': 'bear', + 'unicode': '1F43B', + 'emoji': '๐Ÿป', + 'data': '🐻', + 'tags': [ + 'animal', + 'face', + 'grizzly', + 'growl', + 'honey' + ], + 'shortcodes': [ + ':bear:' + ] + }, + { + 'name': 'polar bear', + 'unicode': '1F43B-200D-2744-FE0F', + 'emoji': '๐Ÿปโ€โ„๏ธ', + 'data': '🐻-200D-2744-FE0F;', + 'tags': [ + 'animal', + 'arctic', + 'bear', + 'polar', + 'white' + ], + 'shortcodes': [ + ':polar_bear:' + ] + }, + { + 'name': 'koala', + 'unicode': '1F428', + 'emoji': '๐Ÿจ', + 'data': '🐨', + 'tags': [ + 'animal', + 'australia', + 'bear', + 'down', + 'face', + 'marsupial', + 'under' + ], + 'shortcodes': [ + ':koala:' + ] + }, + { + 'name': 'panda', + 'unicode': '1F43C', + 'emoji': '๐Ÿผ', + 'data': '🐼', + 'tags': [ + 'animal', + 'bamboo', + 'face' + ], + 'shortcodes': [ + ':panda:' + ] + }, + { + 'name': 'sloth', + 'unicode': '1F9A5', + 'emoji': '๐Ÿฆฅ', + 'data': '🦥', + 'tags': [ + 'lazy', + 'slow' + ], + 'shortcodes': [ + ':sloth:' + ] + }, + { + 'name': 'otter', + 'unicode': '1F9A6', + 'emoji': '๐Ÿฆฆ', + 'data': '🦦', + 'tags': [ + 'animal', + 'fishing', + 'playful' + ], + 'shortcodes': [ + ':otter:' + ] + }, + { + 'name': 'skunk', + 'unicode': '1F9A8', + 'emoji': '๐Ÿฆจ', + 'data': '🦨', + 'tags': [ + 'animal', + 'stink' + ], + 'shortcodes': [ + ':skunk:' + ] + }, + { + 'name': 'kangaroo', + 'unicode': '1F998', + 'emoji': '๐Ÿฆ˜', + 'data': '🦘', + 'tags': [ + 'animal', + 'joey', + 'jump', + 'marsupial' + ], + 'shortcodes': [ + ':kangaroo:' + ] + }, + { + 'name': 'badger', + 'unicode': '1F9A1', + 'emoji': '๐Ÿฆก', + 'data': '🦡', + 'tags': [ + 'animal', + 'honey', + 'pester' + ], + 'shortcodes': [ + ':badger:' + ] + }, + { + 'name': 'paw prints', + 'unicode': '1F43E', + 'emoji': '๐Ÿพ', + 'data': '🐾', + 'tags': [ + 'feet', + 'paw', + 'paws', + 'print', + 'prints' + ], + 'shortcodes': [ + ':paw_prints:' + ] + }, + { + 'name': 'turkey', + 'unicode': '1F983', + 'emoji': '๐Ÿฆƒ', + 'data': '🦃', + 'tags': [ + 'bird', + 'gobble', + 'thanksgiving' + ], + 'shortcodes': [ + ':turkey:' + ] + }, + { + 'name': 'chicken', + 'unicode': '1F414', + 'emoji': '๐Ÿ”', + 'data': '🐔', + 'tags': [ + 'animal', + 'bird', + 'ornithology' + ], + 'shortcodes': [ + ':chicken:' + ] + }, + { + 'name': 'rooster', + 'unicode': '1F413', + 'emoji': '๐Ÿ“', + 'data': '🐓', + 'tags': [ + 'animal', + 'bird', + 'ornithology' + ], + 'shortcodes': [ + ':rooster:' + ] + }, + { + 'name': 'hatching chick', + 'unicode': '1F423', + 'emoji': '๐Ÿฃ', + 'data': '🐣', + 'tags': [ + 'animal', + 'baby', + 'bird', + 'chick', + 'egg', + 'hatching' + ], + 'shortcodes': [ + ':hatching_chick:' + ] + }, + { + 'name': 'baby chick', + 'unicode': '1F424', + 'emoji': '๐Ÿค', + 'data': '🐤', + 'tags': [ + 'animal', + 'baby', + 'bird', + 'chick', + 'ornithology' + ], + 'shortcodes': [ + ':baby_chick:' + ] + }, + { + 'name': 'front-facing baby chick', + 'unicode': '1F425', + 'emoji': '๐Ÿฅ', + 'data': '🐥', + 'tags': [ + 'animal', + 'baby', + 'bird', + 'chick', + 'front-facing', + 'newborn', + 'ornithology' + ], + 'shortcodes': [ + ':front-facing_baby_chick:' + ] + }, + { + 'name': 'bird', + 'unicode': '1F426', + 'emoji': '๐Ÿฆ', + 'data': '🐦', + 'tags': [ + 'animal', + 'ornithology' + ], + 'shortcodes': [ + ':bird:' + ] + }, + { + 'name': 'penguin', + 'unicode': '1F427', + 'emoji': '๐Ÿง', + 'data': '🐧', + 'tags': [ + 'animal', + 'antarctica', + 'bird', + 'ornithology' + ], + 'shortcodes': [ + ':penguin:' + ] + }, + { + 'name': 'dove', + 'unicode': '1F54A', + 'emoji': '๐Ÿ•Š', + 'data': '🕊', + 'tags': [ + 'bird', + 'fly', + 'ornithology', + 'peace' + ], + 'shortcodes': [ + ':dove:' + ] + }, + { + 'name': 'eagle', + 'unicode': '1F985', + 'emoji': '๐Ÿฆ…', + 'data': '🦅', + 'tags': [ + 'animal', + 'bird', + 'ornithology' + ], + 'shortcodes': [ + ':eagle:' + ] + }, + { + 'name': 'duck', + 'unicode': '1F986', + 'emoji': '๐Ÿฆ†', + 'data': '🦆', + 'tags': [ + 'animal', + 'bird', + 'ornithology' + ], + 'shortcodes': [ + ':duck:' + ] + }, + { + 'name': 'swan', + 'unicode': '1F9A2', + 'emoji': '๐Ÿฆข', + 'data': '🦢', + 'tags': [ + 'animal', + 'bird', + 'cygnet', + 'duckling', + 'ornithology', + 'ugly' + ], + 'shortcodes': [ + ':swan:' + ] + }, + { + 'name': 'owl', + 'unicode': '1F989', + 'emoji': '๐Ÿฆ‰', + 'data': '🦉', + 'tags': [ + 'animal', + 'bird', + 'ornithology', + 'wise' + ], + 'shortcodes': [ + ':owl:' + ] + }, + { + 'name': 'dodo', + 'unicode': '1F9A4', + 'emoji': '๐Ÿฆค', + 'data': '🦤', + 'tags': [ + 'animal', + 'bird', + 'extinction', + 'large', + 'ornithology' + ], + 'shortcodes': [ + ':dodo:' + ] + }, + { + 'name': 'feather', + 'unicode': '1FAB6', + 'emoji': '๐Ÿชถ', + 'data': '🪶', + 'tags': [ + 'bird', + 'flight', + 'light', + 'plumage' + ], + 'shortcodes': [ + ':feather:' + ] + }, + { + 'name': 'flamingo', + 'unicode': '1F9A9', + 'emoji': '๐Ÿฆฉ', + 'data': '🦩', + 'tags': [ + 'animal', + 'bird', + 'flamboyant', + 'ornithology', + 'tropical' + ], + 'shortcodes': [ + ':flamingo:' + ] + }, + { + 'name': 'peacock', + 'unicode': '1F99A', + 'emoji': '๐Ÿฆš', + 'data': '🦚', + 'tags': [ + 'animal', + 'bird', + 'colorful', + 'ornithology', + 'ostentatious', + 'peahen', + 'pretty', + 'proud' + ], + 'shortcodes': [ + ':peacock:' + ] + }, + { + 'name': 'parrot', + 'unicode': '1F99C', + 'emoji': '๐Ÿฆœ', + 'data': '🦜', + 'tags': [ + 'animal', + 'bird', + 'ornithology', + 'pirate', + 'talk' + ], + 'shortcodes': [ + ':parrot:' + ] + }, + { + 'name': 'wing', + 'unicode': '1FABD', + 'emoji': '๐Ÿชฝ', + 'data': '🪽', + 'tags': [ + 'angelic', + 'ascend', + 'aviation', + 'bird', + 'fly', + 'flying', + 'heavenly', + 'mythology', + 'soar' + ], + 'shortcodes': [ + ':wing:' + ] + }, + { + 'name': 'black bird', + 'unicode': '1F426-200D-2B1B', + 'emoji': '๐Ÿฆโ€โฌ›', + 'data': '🐦-200D-2B1B;', + 'tags': [ + 'animal', + 'beak', + 'bird', + 'black', + 'caw', + 'corvid', + 'crow', + 'ornithology', + 'raven', + 'rook' + ], + 'shortcodes': [ + ':black_bird:' + ] + }, + { + 'name': 'goose', + 'unicode': '1FABF', + 'emoji': '๐Ÿชฟ', + 'data': '🪿', + 'tags': [ + 'animal', + 'bird', + 'duck', + 'flock', + 'fowl', + 'gaggle', + 'gander', + 'geese', + 'honk', + 'ornithology', + 'silly' + ], + 'shortcodes': [ + ':goose:' + ] + }, + { + 'name': 'phoenix', + 'unicode': '1F426-200D-1F525', + 'emoji': '๐Ÿฆโ€๐Ÿ”ฅ', + 'data': '🐦-200D-1F525;', + 'tags': [ + 'ascend', + 'ascension', + 'emerge', + 'fantasy', + 'firebird', + 'glory', + 'immortal', + 'rebirth', + 'reincarnation', + 'reinvent', + 'renewal', + 'revival', + 'revive', + 'rise', + 'transform' + ], + 'shortcodes': [ + ':phoenix:' + ] + }, + { + 'name': 'frog', + 'unicode': '1F438', + 'emoji': '๐Ÿธ', + 'data': '🐸', + 'tags': [ + 'animal', + 'face' + ], + 'shortcodes': [ + ':frog:' + ] + }, + { + 'name': 'crocodile', + 'unicode': '1F40A', + 'emoji': '๐ŸŠ', + 'data': '🐊', + 'tags': [ + 'animal', + 'zoo' + ], + 'shortcodes': [ + ':crocodile:' + ] + }, + { + 'name': 'turtle', + 'unicode': '1F422', + 'emoji': '๐Ÿข', + 'data': '🐢', + 'tags': [ + 'animal', + 'terrapin', + 'tortoise' + ], + 'shortcodes': [ + ':turtle:' + ] + }, + { + 'name': 'lizard', + 'unicode': '1F98E', + 'emoji': '๐ŸฆŽ', + 'data': '🦎', + 'tags': [ + 'animal', + 'reptile' + ], + 'shortcodes': [ + ':lizard:' + ] + }, + { + 'name': 'snake', + 'unicode': '1F40D', + 'emoji': '๐Ÿ', + 'data': '🐍', + 'tags': [ + 'animal', + 'bearer', + 'ophiuchus', + 'serpent', + 'zodiac' + ], + 'shortcodes': [ + ':snake:' + ] + }, + { + 'name': 'dragon face', + 'unicode': '1F432', + 'emoji': '๐Ÿฒ', + 'data': '🐲', + 'tags': [ + 'animal', + 'dragon', + 'face', + 'fairy', + 'fairytale', + 'tale' + ], + 'shortcodes': [ + ':dragon_face:' + ] + }, + { + 'name': 'dragon', + 'unicode': '1F409', + 'emoji': '๐Ÿ‰', + 'data': '🐉', + 'tags': [ + 'animal', + 'fairy', + 'fairytale', + 'knights', + 'tale' + ], + 'shortcodes': [ + ':dragon:' + ] + }, + { + 'name': 'sauropod', + 'unicode': '1F995', + 'emoji': '๐Ÿฆ•', + 'data': '🦕', + 'tags': [ + 'brachiosaurus', + 'brontosaurus', + 'dinosaur', + 'diplodocus' + ], + 'shortcodes': [ + ':sauropod:' + ] + }, + { + 'name': 'T-Rex', + 'unicode': '1F996', + 'emoji': '๐Ÿฆ–', + 'data': '🦖', + 'tags': [ + 'dinosaur', + 'rex', + 't', + 't-rex', + 'tyrannosaurus' + ], + 'shortcodes': [ + ':t-rex:' + ] + }, + { + 'name': 'spouting whale', + 'unicode': '1F433', + 'emoji': '๐Ÿณ', + 'data': '🐳', + 'tags': [ + 'animal', + 'beach', + 'face', + 'ocean', + 'spouting', + 'whale' + ], + 'shortcodes': [ + ':spouting_whale:' + ] + }, + { + 'name': 'whale', + 'unicode': '1F40B', + 'emoji': '๐Ÿ‹', + 'data': '🐋', + 'tags': [ + 'animal', + 'beach', + 'ocean' + ], + 'shortcodes': [ + ':whale:' + ] + }, + { + 'name': 'dolphin', + 'unicode': '1F42C', + 'emoji': '๐Ÿฌ', + 'data': '🐬', + 'tags': [ + 'animal', + 'beach', + 'flipper', + 'ocean' + ], + 'shortcodes': [ + ':dolphin:' + ] + }, + { + 'name': 'seal', + 'unicode': '1F9AD', + 'emoji': '๐Ÿฆญ', + 'data': '🦭', + 'tags': [ + 'animal', + 'lion', + 'ocean', + 'sea' + ], + 'shortcodes': [ + ':seal:' + ] + }, + { + 'name': 'fish', + 'unicode': '1F41F', + 'emoji': '๐ŸŸ', + 'data': '🐟', + 'tags': [ + 'animal', + 'dinner', + 'fishes', + 'fishing', + 'pisces', + 'zodiac' + ], + 'shortcodes': [ + ':fish:' + ] + }, + { + 'name': 'tropical fish', + 'unicode': '1F420', + 'emoji': '๐Ÿ ', + 'data': '🐠', + 'tags': [ + 'animal', + 'fish', + 'fishes', + 'tropical' + ], + 'shortcodes': [ + ':tropical_fish:' + ] + }, + { + 'name': 'blowfish', + 'unicode': '1F421', + 'emoji': '๐Ÿก', + 'data': '🐡', + 'tags': [ + 'animal', + 'fish' + ], + 'shortcodes': [ + ':blowfish:' + ] + }, + { + 'name': 'shark', + 'unicode': '1F988', + 'emoji': '๐Ÿฆˆ', + 'data': '🦈', + 'tags': [ + 'animal', + 'fish' + ], + 'shortcodes': [ + ':shark:' + ] + }, + { + 'name': 'octopus', + 'unicode': '1F419', + 'emoji': '๐Ÿ™', + 'data': '🐙', + 'tags': [ + 'animal', + 'creature', + 'ocean' + ], + 'shortcodes': [ + ':octopus:' + ] + }, + { + 'name': 'spiral shell', + 'unicode': '1F41A', + 'emoji': '๐Ÿš', + 'data': '🐚', + 'tags': [ + 'animal', + 'beach', + 'conch', + 'sea', + 'shell', + 'spiral' + ], + 'shortcodes': [ + ':spiral_shell:' + ] + }, + { + 'name': 'coral', + 'unicode': '1FAB8', + 'emoji': '๐Ÿชธ', + 'data': '🪸', + 'tags': [ + 'change', + 'climate', + 'ocean', + 'reef', + 'sea' + ], + 'shortcodes': [ + ':coral:' + ] + }, + { + 'name': 'jellyfish', + 'unicode': '1FABC', + 'emoji': '๐Ÿชผ', + 'data': '🪼', + 'tags': [ + 'animal', + 'aquarium', + 'burn', + 'invertebrate', + 'jelly', + 'life', + 'marine', + 'ocean', + 'ouch', + 'plankton', + 'sea', + 'sting', + 'stinger', + 'tentacles' + ], + 'shortcodes': [ + ':jellyfish:' + ] + }, + { + 'name': 'crab', + 'unicode': '1F980', + 'emoji': '๐Ÿฆ€', + 'data': '🦀', + 'tags': [ + 'cancer', + 'zodiac' + ], + 'shortcodes': [ + ':crab:' + ] + }, + { + 'name': 'lobster', + 'unicode': '1F99E', + 'emoji': '๐Ÿฆž', + 'data': '🦞', + 'tags': [ + 'animal', + 'bisque', + 'claws', + 'seafood' + ], + 'shortcodes': [ + ':lobster:' + ] + }, + { + 'name': 'shrimp', + 'unicode': '1F990', + 'emoji': '๐Ÿฆ', + 'data': '🦐', + 'tags': [ + 'food', + 'shellfish', + 'small' + ], + 'shortcodes': [ + ':shrimp:' + ] + }, + { + 'name': 'squid', + 'unicode': '1F991', + 'emoji': '๐Ÿฆ‘', + 'data': '🦑', + 'tags': [ + 'animal', + 'food', + 'mollusk' + ], + 'shortcodes': [ + ':squid:' + ] + }, + { + 'name': 'oyster', + 'unicode': '1F9AA', + 'emoji': '๐Ÿฆช', + 'data': '🦪', + 'tags': [ + 'diving', + 'pearl' + ], + 'shortcodes': [ + ':oyster:' + ] + }, + { + 'name': 'snail', + 'unicode': '1F40C', + 'emoji': '๐ŸŒ', + 'data': '🐌', + 'tags': [ + 'animal', + 'escargot', + 'garden', + 'nature', + 'slug' + ], + 'shortcodes': [ + ':snail:' + ] + }, + { + 'name': 'butterfly', + 'unicode': '1F98B', + 'emoji': '๐Ÿฆ‹', + 'data': '🦋', + 'tags': [ + 'insect', + 'pretty' + ], + 'shortcodes': [ + ':butterfly:' + ] + }, + { + 'name': 'bug', + 'unicode': '1F41B', + 'emoji': '๐Ÿ›', + 'data': '🐛', + 'tags': [ + 'animal', + 'garden', + 'insect' + ], + 'shortcodes': [ + ':bug:' + ] + }, + { + 'name': 'ant', + 'unicode': '1F41C', + 'emoji': '๐Ÿœ', + 'data': '🐜', + 'tags': [ + 'animal', + 'garden', + 'insect' + ], + 'shortcodes': [ + ':ant:' + ] + }, + { + 'name': 'honeybee', + 'unicode': '1F41D', + 'emoji': '๐Ÿ', + 'data': '🐝', + 'tags': [ + 'animal', + 'bee', + 'bumblebee', + 'honey', + 'insect', + 'nature', + 'spring' + ], + 'shortcodes': [ + ':honeybee:' + ] + }, + { + 'name': 'beetle', + 'unicode': '1FAB2', + 'emoji': '๐Ÿชฒ', + 'data': '🪲', + 'tags': [ + 'animal', + 'bug', + 'insect' + ], + 'shortcodes': [ + ':beetle:' + ] + }, + { + 'name': 'lady beetle', + 'unicode': '1F41E', + 'emoji': '๐Ÿž', + 'data': '🐞', + 'tags': [ + 'animal', + 'beetle', + 'garden', + 'insect', + 'lady', + 'ladybird', + 'ladybug', + 'nature' + ], + 'shortcodes': [ + ':lady_beetle:' + ] + }, + { + 'name': 'cricket', + 'unicode': '1F997', + 'emoji': '๐Ÿฆ—', + 'data': '🦗', + 'tags': [ + 'animal', + 'bug', + 'grasshopper', + 'insect', + 'orthoptera' + ], + 'shortcodes': [ + ':cricket:' + ] + }, + { + 'name': 'cockroach', + 'unicode': '1FAB3', + 'emoji': '๐Ÿชณ', + 'data': '🪳', + 'tags': [ + 'animal', + 'insect', + 'pest', + 'roach' + ], + 'shortcodes': [ + ':cockroach:' + ] + }, + { + 'name': 'spider', + 'unicode': '1F577', + 'emoji': '๐Ÿ•ท', + 'data': '🕷', + 'tags': [ + 'animal', + 'insect' + ], + 'shortcodes': [ + ':spider:' + ] + }, + { + 'name': 'spider web', + 'unicode': '1F578', + 'emoji': '๐Ÿ•ธ', + 'data': '🕸', + 'tags': [ + 'spider', + 'web' + ], + 'shortcodes': [ + ':spider_web:' + ] + }, + { + 'name': 'scorpion', + 'unicode': '1F982', + 'emoji': '๐Ÿฆ‚', + 'data': '🦂', + 'tags': [ + 'scorpio', + 'scorpius', + 'zodiac' + ], + 'shortcodes': [ + ':scorpion:' + ] + }, + { + 'name': 'mosquito', + 'unicode': '1F99F', + 'emoji': '๐ŸฆŸ', + 'data': '🦟', + 'tags': [ + 'bite', + 'disease', + 'fever', + 'insect', + 'malaria', + 'pest', + 'virus' + ], + 'shortcodes': [ + ':mosquito:' + ] + }, + { + 'name': 'fly', + 'unicode': '1FAB0', + 'emoji': '๐Ÿชฐ', + 'data': '🪰', + 'tags': [ + 'animal', + 'disease', + 'insect', + 'maggot', + 'pest', + 'rotting' + ], + 'shortcodes': [ + ':fly:' + ] + }, + { + 'name': 'worm', + 'unicode': '1FAB1', + 'emoji': '๐Ÿชฑ', + 'data': '🪱', + 'tags': [ + 'animal', + 'annelid', + 'earthworm', + 'parasite' + ], + 'shortcodes': [ + ':worm:' + ] + }, + { + 'name': 'microbe', + 'unicode': '1F9A0', + 'emoji': '๐Ÿฆ ', + 'data': '🦠', + 'tags': [ + 'amoeba', + 'bacteria', + 'science', + 'virus' + ], + 'shortcodes': [ + ':microbe:' + ] + }, + { + 'name': 'bouquet', + 'unicode': '1F490', + 'emoji': '๐Ÿ’', + 'data': '💐', + 'tags': [ + 'anniversary', + 'birthday', + 'date', + 'flower', + 'love', + 'plant', + 'romance' + ], + 'shortcodes': [ + ':bouquet:' + ] + }, + { + 'name': 'cherry blossom', + 'unicode': '1F338', + 'emoji': '๐ŸŒธ', + 'data': '🌸', + 'tags': [ + 'blossom', + 'cherry', + 'flower', + 'plant', + 'spring', + 'springtime' + ], + 'shortcodes': [ + ':cherry_blossom:' + ] + }, + { + 'name': 'white flower', + 'unicode': '1F4AE', + 'emoji': '๐Ÿ’ฎ', + 'data': '💮', + 'tags': [ + 'flower', + 'white' + ], + 'shortcodes': [ + ':white_flower:' + ] + }, + { + 'name': 'lotus', + 'unicode': '1FAB7', + 'emoji': '๐Ÿชท', + 'data': '🪷', + 'tags': [ + 'beauty', + 'buddhism', + 'calm', + 'flower', + 'hinduism', + 'peace', + 'purity', + 'serenity' + ], + 'shortcodes': [ + ':lotus:' + ] + }, + { + 'name': 'rosette', + 'unicode': '1F3F5', + 'emoji': '๐Ÿต', + 'data': '🏵', + 'tags': [ + 'plant' + ], + 'shortcodes': [ + ':rosette:' + ] + }, + { + 'name': 'rose', + 'unicode': '1F339', + 'emoji': '๐ŸŒน', + 'data': '🌹', + 'tags': [ + 'beauty', + 'elegant', + 'flower', + 'love', + 'plant', + 'red', + 'valentine' + ], + 'shortcodes': [ + ':rose:' + ] + }, + { + 'name': 'wilted flower', + 'unicode': '1F940', + 'emoji': '๐Ÿฅ€', + 'data': '🥀', + 'tags': [ + 'dying', + 'flower', + 'wilted' + ], + 'shortcodes': [ + ':wilted_flower:' + ] + }, + { + 'name': 'hibiscus', + 'unicode': '1F33A', + 'emoji': '๐ŸŒบ', + 'data': '🌺', + 'tags': [ + 'flower', + 'plant' + ], + 'shortcodes': [ + ':hibiscus:' + ] + }, + { + 'name': 'sunflower', + 'unicode': '1F33B', + 'emoji': '๐ŸŒป', + 'data': '🌻', + 'tags': [ + 'flower', + 'outdoors', + 'plant', + 'sun' + ], + 'shortcodes': [ + ':sunflower:' + ] + }, + { + 'name': 'blossom', + 'unicode': '1F33C', + 'emoji': '๐ŸŒผ', + 'data': '🌼', + 'tags': [ + 'buttercup', + 'dandelion', + 'flower', + 'plant' + ], + 'shortcodes': [ + ':blossom:' + ] + }, + { + 'name': 'tulip', + 'unicode': '1F337', + 'emoji': '๐ŸŒท', + 'data': '🌷', + 'tags': [ + 'blossom', + 'flower', + 'growth', + 'plant' + ], + 'shortcodes': [ + ':tulip:' + ] + }, + { + 'name': 'hyacinth', + 'unicode': '1FABB', + 'emoji': '๐Ÿชป', + 'data': '🪻', + 'tags': [ + 'bloom', + 'bluebonnet', + 'flower', + 'indigo', + 'lavender', + 'lilac', + 'lupine', + 'plant', + 'purple', + 'shrub', + 'snapdragon', + 'spring', + 'violet' + ], + 'shortcodes': [ + ':hyacinth:' + ] + }, + { + 'name': 'seedling', + 'unicode': '1F331', + 'emoji': '๐ŸŒฑ', + 'data': '🌱', + 'tags': [ + 'plant', + 'sapling', + 'sprout', + 'young' + ], + 'shortcodes': [ + ':seedling:' + ] + }, + { + 'name': 'potted plant', + 'unicode': '1FAB4', + 'emoji': '๐Ÿชด', + 'data': '🪴', + 'tags': [ + 'decor', + 'grow', + 'house', + 'nurturing', + 'plant', + 'pot', + 'potted' + ], + 'shortcodes': [ + ':potted_plant:' + ] + }, + { + 'name': 'evergreen tree', + 'unicode': '1F332', + 'emoji': '๐ŸŒฒ', + 'data': '🌲', + 'tags': [ + 'christmas', + 'evergreen', + 'forest', + 'pine', + 'tree' + ], + 'shortcodes': [ + ':evergreen_tree:' + ] + }, + { + 'name': 'deciduous tree', + 'unicode': '1F333', + 'emoji': '๐ŸŒณ', + 'data': '🌳', + 'tags': [ + 'deciduous', + 'forest', + 'green', + 'habitat', + 'shedding', + 'tree' + ], + 'shortcodes': [ + ':deciduous_tree:' + ] + }, + { + 'name': 'palm tree', + 'unicode': '1F334', + 'emoji': '๐ŸŒด', + 'data': '🌴', + 'tags': [ + 'beach', + 'palm', + 'plant', + 'tree', + 'tropical' + ], + 'shortcodes': [ + ':palm_tree:' + ] + }, + { + 'name': 'cactus', + 'unicode': '1F335', + 'emoji': '๐ŸŒต', + 'data': '🌵', + 'tags': [ + 'desert', + 'drought', + 'nature', + 'plant' + ], + 'shortcodes': [ + ':cactus:' + ] + }, + { + 'name': 'sheaf of rice', + 'unicode': '1F33E', + 'emoji': '๐ŸŒพ', + 'data': '🌾', + 'tags': [ + 'ear', + 'grain', + 'grains', + 'plant', + 'rice', + 'sheaf' + ], + 'shortcodes': [ + ':sheaf_of_rice:' + ] + }, + { + 'name': 'herb', + 'unicode': '1F33F', + 'emoji': '๐ŸŒฟ', + 'data': '🌿', + 'tags': [ + 'leaf', + 'plant' + ], + 'shortcodes': [ + ':herb:' + ] + }, + { + 'name': 'shamrock', + 'unicode': '2618', + 'emoji': 'โ˜˜', + 'data': '☘', + 'tags': [ + 'irish', + 'plant' + ], + 'shortcodes': [ + ':shamrock:' + ] + }, + { + 'name': 'four leaf clover', + 'unicode': '1F340', + 'emoji': '๐Ÿ€', + 'data': '🍀', + 'tags': [ + '4', + 'clover', + 'four', + 'four-leaf', + 'irish', + 'leaf', + 'lucky', + 'plant' + ], + 'shortcodes': [ + ':four_leaf_clover:' + ] + }, + { + 'name': 'maple leaf', + 'unicode': '1F341', + 'emoji': '๐Ÿ', + 'data': '🍁', + 'tags': [ + 'falling', + 'leaf', + 'maple' + ], + 'shortcodes': [ + ':maple_leaf:' + ] + }, + { + 'name': 'fallen leaf', + 'unicode': '1F342', + 'emoji': '๐Ÿ‚', + 'data': '🍂', + 'tags': [ + 'autumn', + 'fall', + 'fallen', + 'falling', + 'leaf' + ], + 'shortcodes': [ + ':fallen_leaf:' + ] + }, + { + 'name': 'leaf fluttering in wind', + 'unicode': '1F343', + 'emoji': '๐Ÿƒ', + 'data': '🍃', + 'tags': [ + 'blow', + 'flutter', + 'fluttering', + 'leaf', + 'wind' + ], + 'shortcodes': [ + ':leaf_fluttering_in_wind:' + ] + }, + { + 'name': 'empty nest', + 'unicode': '1FAB9', + 'emoji': '๐Ÿชน', + 'data': '🪹', + 'tags': [ + 'branch', + 'empty', + 'home', + 'nest', + 'nesting' + ], + 'shortcodes': [ + ':empty_nest:' + ] + }, + { + 'name': 'nest with eggs', + 'unicode': '1FABA', + 'emoji': '๐Ÿชบ', + 'data': '🪺', + 'tags': [ + 'bird', + 'branch', + 'egg', + 'eggs', + 'nest', + 'nesting' + ], + 'shortcodes': [ + ':nest_with_eggs:' + ] + }, + { + 'name': 'mushroom', + 'unicode': '1F344', + 'emoji': '๐Ÿ„', + 'data': '🍄', + 'tags': [ + 'fungus', + 'toadstool' + ], + 'shortcodes': [ + ':mushroom:' + ] + }, + { + 'name': 'leafless tree', + 'unicode': '1FABE', + 'emoji': '๐Ÿชพ', + 'data': '🪾', + 'tags': [ + 'bare', + 'barren', + 'branches', + 'dead', + 'drought', + 'leafless', + 'tree', + 'trunk', + 'winter', + 'wood' + ], + 'shortcodes': [ + ':leafless_tree:' + ] + } + ] + }, + { + 'name': 'food-drink', + 'iconClass': 'fas fa-utensils', + 'emojis': [ + { + 'name': 'grapes', + 'unicode': '1F347', + 'emoji': '๐Ÿ‡', + 'data': '🍇', + 'tags': [ + 'dionysus', + 'fruit', + 'grape' + ], + 'shortcodes': [ + ':grapes:' + ] + }, + { + 'name': 'melon', + 'unicode': '1F348', + 'emoji': '๐Ÿˆ', + 'data': '🍈', + 'tags': [ + 'cantaloupe', + 'fruit' + ], + 'shortcodes': [ + ':melon:' + ] + }, + { + 'name': 'watermelon', + 'unicode': '1F349', + 'emoji': '๐Ÿ‰', + 'data': '🍉', + 'tags': [ + 'fruit' + ], + 'shortcodes': [ + ':watermelon:' + ] + }, + { + 'name': 'tangerine', + 'unicode': '1F34A', + 'emoji': '๐ŸŠ', + 'data': '🍊', + 'tags': [ + 'c', + 'citrus', + 'fruit', + 'nectarine', + 'orange', + 'vitamin' + ], + 'shortcodes': [ + ':tangerine:' + ] + }, + { + 'name': 'lemon', + 'unicode': '1F34B', + 'emoji': '๐Ÿ‹', + 'data': '🍋', + 'tags': [ + 'citrus', + 'fruit', + 'sour' + ], + 'shortcodes': [ + ':lemon:' + ] + }, + { + 'name': 'lime', + 'unicode': '1F34B-200D-1F7E9', + 'emoji': '๐Ÿ‹โ€๐ŸŸฉ', + 'data': '🍋-200D-1F7E9;', + 'tags': [ + 'acidity', + 'citrus', + 'cocktail', + 'fruit', + 'garnish', + 'key', + 'margarita', + 'mojito', + 'refreshing', + 'salsa', + 'sour', + 'tangy', + 'tequila', + 'tropical', + 'zest' + ], + 'shortcodes': [ + ':lime:' + ] + }, + { + 'name': 'banana', + 'unicode': '1F34C', + 'emoji': '๐ŸŒ', + 'data': '🍌', + 'tags': [ + 'fruit', + 'potassium' + ], + 'shortcodes': [ + ':banana:' + ] + }, + { + 'name': 'pineapple', + 'unicode': '1F34D', + 'emoji': '๐Ÿ', + 'data': '🍍', + 'tags': [ + 'colada', + 'fruit', + 'pina', + 'tropical' + ], + 'shortcodes': [ + ':pineapple:' + ] + }, + { + 'name': 'mango', + 'unicode': '1F96D', + 'emoji': '๐Ÿฅญ', + 'data': '🥭', + 'tags': [ + 'food', + 'fruit', + 'tropical' + ], + 'shortcodes': [ + ':mango:' + ] + }, + { + 'name': 'red apple', + 'unicode': '1F34E', + 'emoji': '๐ŸŽ', + 'data': '🍎', + 'tags': [ + 'apple', + 'diet', + 'food', + 'fruit', + 'health', + 'red', + 'ripe' + ], + 'shortcodes': [ + ':red_apple:' + ] + }, + { + 'name': 'green apple', + 'unicode': '1F34F', + 'emoji': '๐Ÿ', + 'data': '🍏', + 'tags': [ + 'apple', + 'fruit', + 'green' + ], + 'shortcodes': [ + ':green_apple:' + ] + }, + { + 'name': 'pear', + 'unicode': '1F350', + 'emoji': '๐Ÿ', + 'data': '🍐', + 'tags': [ + 'fruit' + ], + 'shortcodes': [ + ':pear:' + ] + }, + { + 'name': 'peach', + 'unicode': '1F351', + 'emoji': '๐Ÿ‘', + 'data': '🍑', + 'tags': [ + 'fruit' + ], + 'shortcodes': [ + ':peach:' + ] + }, + { + 'name': 'cherries', + 'unicode': '1F352', + 'emoji': '๐Ÿ’', + 'data': '🍒', + 'tags': [ + 'berries', + 'cherry', + 'fruit', + 'red' + ], + 'shortcodes': [ + ':cherries:' + ] + }, + { + 'name': 'strawberry', + 'unicode': '1F353', + 'emoji': '๐Ÿ“', + 'data': '🍓', + 'tags': [ + 'berry', + 'fruit' + ], + 'shortcodes': [ + ':strawberry:' + ] + }, + { + 'name': 'blueberries', + 'unicode': '1FAD0', + 'emoji': '๐Ÿซ', + 'data': '🫐', + 'tags': [ + 'berries', + 'berry', + 'bilberry', + 'blue', + 'blueberry', + 'food', + 'fruit' + ], + 'shortcodes': [ + ':blueberries:' + ] + }, + { + 'name': 'kiwi fruit', + 'unicode': '1F95D', + 'emoji': '๐Ÿฅ', + 'data': '🥝', + 'tags': [ + 'food', + 'fruit', + 'kiwi' + ], + 'shortcodes': [ + ':kiwi_fruit:' + ] + }, + { + 'name': 'tomato', + 'unicode': '1F345', + 'emoji': '๐Ÿ…', + 'data': '🍅', + 'tags': [ + 'food', + 'fruit', + 'vegetable' + ], + 'shortcodes': [ + ':tomato:' + ] + }, + { + 'name': 'olive', + 'unicode': '1FAD2', + 'emoji': '๐Ÿซ’', + 'data': '🫒', + 'tags': [ + 'food' + ], + 'shortcodes': [ + ':olive:' + ] + }, + { + 'name': 'coconut', + 'unicode': '1F965', + 'emoji': '๐Ÿฅฅ', + 'data': '🥥', + 'tags': [ + 'colada', + 'palm', + 'piรฑa' + ], + 'shortcodes': [ + ':coconut:' + ] + }, + { + 'name': 'avocado', + 'unicode': '1F951', + 'emoji': '๐Ÿฅ‘', + 'data': '🥑', + 'tags': [ + 'food', + 'fruit' + ], + 'shortcodes': [ + ':avocado:' + ] + }, + { + 'name': 'eggplant', + 'unicode': '1F346', + 'emoji': '๐Ÿ†', + 'data': '🍆', + 'tags': [ + 'aubergine', + 'vegetable' + ], + 'shortcodes': [ + ':eggplant:' + ] + }, + { + 'name': 'potato', + 'unicode': '1F954', + 'emoji': '๐Ÿฅ”', + 'data': '🥔', + 'tags': [ + 'food', + 'vegetable' + ], + 'shortcodes': [ + ':potato:' + ] + }, + { + 'name': 'carrot', + 'unicode': '1F955', + 'emoji': '๐Ÿฅ•', + 'data': '🥕', + 'tags': [ + 'food', + 'vegetable' + ], + 'shortcodes': [ + ':carrot:' + ] + }, + { + 'name': 'ear of corn', + 'unicode': '1F33D', + 'emoji': '๐ŸŒฝ', + 'data': '🌽', + 'tags': [ + 'corn', + 'crops', + 'ear', + 'farm', + 'maize', + 'maze' + ], + 'shortcodes': [ + ':ear_of_corn:' + ] + }, + { + 'name': 'hot pepper', + 'unicode': '1F336', + 'emoji': '๐ŸŒถ', + 'data': '🌶', + 'tags': [ + 'hot', + 'pepper' + ], + 'shortcodes': [ + ':hot_pepper:' + ] + }, + { + 'name': 'bell pepper', + 'unicode': '1FAD1', + 'emoji': '๐Ÿซ‘', + 'data': '🫑', + 'tags': [ + 'bell', + 'capsicum', + 'food', + 'pepper', + 'vegetable' + ], + 'shortcodes': [ + ':bell_pepper:' + ] + }, + { + 'name': 'cucumber', + 'unicode': '1F952', + 'emoji': '๐Ÿฅ’', + 'data': '🥒', + 'tags': [ + 'food', + 'pickle', + 'vegetable' + ], + 'shortcodes': [ + ':cucumber:' + ] + }, + { + 'name': 'leafy green', + 'unicode': '1F96C', + 'emoji': '๐Ÿฅฌ', + 'data': '🥬', + 'tags': [ + 'bok', + 'burgers', + 'cabbage', + 'choy', + 'green', + 'kale', + 'leafy', + 'lettuce', + 'salad' + ], + 'shortcodes': [ + ':leafy_green:' + ] + }, + { + 'name': 'broccoli', + 'unicode': '1F966', + 'emoji': '๐Ÿฅฆ', + 'data': '🥦', + 'tags': [ + 'cabbage', + 'wild' + ], + 'shortcodes': [ + ':broccoli:' + ] + }, + { + 'name': 'garlic', + 'unicode': '1F9C4', + 'emoji': '๐Ÿง„', + 'data': '🧄', + 'tags': [ + 'flavoring' + ], + 'shortcodes': [ + ':garlic:' + ] + }, + { + 'name': 'onion', + 'unicode': '1F9C5', + 'emoji': '๐Ÿง…', + 'data': '🧅', + 'tags': [ + 'flavoring' + ], + 'shortcodes': [ + ':onion:' + ] + }, + { + 'name': 'peanuts', + 'unicode': '1F95C', + 'emoji': '๐Ÿฅœ', + 'data': '🥜', + 'tags': [ + 'food', + 'nut', + 'peanut', + 'vegetable' + ], + 'shortcodes': [ + ':peanuts:' + ] + }, + { + 'name': 'beans', + 'unicode': '1FAD8', + 'emoji': '๐Ÿซ˜', + 'data': '🫘', + 'tags': [ + 'food', + 'kidney', + 'legume', + 'small' + ], + 'shortcodes': [ + ':beans:' + ] + }, + { + 'name': 'chestnut', + 'unicode': '1F330', + 'emoji': '๐ŸŒฐ', + 'data': '🌰', + 'tags': [ + 'almond', + 'plant' + ], + 'shortcodes': [ + ':chestnut:' + ] + }, + { + 'name': 'ginger root', + 'unicode': '1FADA', + 'emoji': '๐Ÿซš', + 'data': '🫚', + 'tags': [ + 'beer', + 'ginger', + 'health', + 'herb', + 'natural', + 'root', + 'spice' + ], + 'shortcodes': [ + ':ginger_root:' + ] + }, + { + 'name': 'pea pod', + 'unicode': '1FADB', + 'emoji': '๐Ÿซ›', + 'data': '🫛', + 'tags': [ + 'beans', + 'beanstalk', + 'edamame', + 'legume', + 'pea', + 'pod', + 'soybean', + 'vegetable', + 'veggie' + ], + 'shortcodes': [ + ':pea_pod:' + ] + }, + { + 'name': 'brown mushroom', + 'unicode': '1F344-200D-1F7EB', + 'emoji': '๐Ÿ„โ€๐ŸŸซ', + 'data': '🍄-200D-1F7EB;', + 'tags': [ + 'food', + 'fungi', + 'fungus', + 'mushroom', + 'nature', + 'pizza', + 'portobello', + 'shiitake', + 'shroom', + 'spore', + 'sprout', + 'toppings', + 'truffle', + 'vegetable', + 'vegetarian', + 'veggie' + ], + 'shortcodes': [ + ':brown_mushroom:' + ] + }, + { + 'name': 'root vegetable', + 'unicode': '1FADC', + 'emoji': '๐Ÿซœ', + 'data': '🫜', + 'tags': [ + 'beet', + 'food', + 'garden', + 'radish', + 'root', + 'salad', + 'turnip', + 'vegetable', + 'vegetarian' + ], + 'shortcodes': [ + ':root_vegetable:' + ] + }, + { + 'name': 'bread', + 'unicode': '1F35E', + 'emoji': '๐Ÿž', + 'data': '🍞', + 'tags': [ + 'carbs', + 'food', + 'grain', + 'loaf', + 'restaurant', + 'toast', + 'wheat' + ], + 'shortcodes': [ + ':bread:' + ] + }, + { + 'name': 'croissant', + 'unicode': '1F950', + 'emoji': '๐Ÿฅ', + 'data': '🥐', + 'tags': [ + 'bread', + 'breakfast', + 'crescent', + 'food', + 'french', + 'roll' + ], + 'shortcodes': [ + ':croissant:' + ] + }, + { + 'name': 'baguette bread', + 'unicode': '1F956', + 'emoji': '๐Ÿฅ–', + 'data': '🥖', + 'tags': [ + 'baguette', + 'bread', + 'food', + 'french' + ], + 'shortcodes': [ + ':baguette_bread:' + ] + }, + { + 'name': 'flatbread', + 'unicode': '1FAD3', + 'emoji': '๐Ÿซ“', + 'data': '🫓', + 'tags': [ + 'arepa', + 'bread', + 'food', + 'gordita', + 'lavash', + 'naan', + 'pita' + ], + 'shortcodes': [ + ':flatbread:' + ] + }, + { + 'name': 'pretzel', + 'unicode': '1F968', + 'emoji': '๐Ÿฅจ', + 'data': '🥨', + 'tags': [ + 'convoluted', + 'twisted' + ], + 'shortcodes': [ + ':pretzel:' + ] + }, + { + 'name': 'bagel', + 'unicode': '1F96F', + 'emoji': '๐Ÿฅฏ', + 'data': '🥯', + 'tags': [ + 'bakery', + 'bread', + 'breakfast', + 'schmear' + ], + 'shortcodes': [ + ':bagel:' + ] + }, + { + 'name': 'pancakes', + 'unicode': '1F95E', + 'emoji': '๐Ÿฅž', + 'data': '🥞', + 'tags': [ + 'breakfast', + 'crรชpe', + 'food', + 'hotcake', + 'pancake' + ], + 'shortcodes': [ + ':pancakes:' + ] + }, + { + 'name': 'waffle', + 'unicode': '1F9C7', + 'emoji': '๐Ÿง‡', + 'data': '🧇', + 'tags': [ + 'breakfast', + 'indecisive', + 'iron' + ], + 'shortcodes': [ + ':waffle:' + ] + }, + { + 'name': 'cheese wedge', + 'unicode': '1F9C0', + 'emoji': '๐Ÿง€', + 'data': '🧀', + 'tags': [ + 'cheese', + 'wedge' + ], + 'shortcodes': [ + ':cheese_wedge:' + ] + }, + { + 'name': 'meat on bone', + 'unicode': '1F356', + 'emoji': '๐Ÿ–', + 'data': '🍖', + 'tags': [ + 'bone', + 'meat' + ], + 'shortcodes': [ + ':meat_on_bone:' + ] + }, + { + 'name': 'poultry leg', + 'unicode': '1F357', + 'emoji': '๐Ÿ—', + 'data': '🍗', + 'tags': [ + 'bone', + 'chicken', + 'drumstick', + 'hungry', + 'leg', + 'poultry', + 'turkey' + ], + 'shortcodes': [ + ':poultry_leg:' + ] + }, + { + 'name': 'cut of meat', + 'unicode': '1F969', + 'emoji': '๐Ÿฅฉ', + 'data': '🥩', + 'tags': [ + 'chop', + 'cut', + 'lambchop', + 'meat', + 'porkchop', + 'red', + 'steak' + ], + 'shortcodes': [ + ':cut_of_meat:' + ] + }, + { + 'name': 'bacon', + 'unicode': '1F953', + 'emoji': '๐Ÿฅ“', + 'data': '🥓', + 'tags': [ + 'breakfast', + 'food', + 'meat' + ], + 'shortcodes': [ + ':bacon:' + ] + }, + { + 'name': 'hamburger', + 'unicode': '1F354', + 'emoji': '๐Ÿ”', + 'data': '🍔', + 'tags': [ + 'burger', + 'eat', + 'fast', + 'food', + 'hungry' + ], + 'shortcodes': [ + ':hamburger:' + ] + }, + { + 'name': 'french fries', + 'unicode': '1F35F', + 'emoji': '๐ŸŸ', + 'data': '🍟', + 'tags': [ + 'fast', + 'food', + 'french', + 'fries' + ], + 'shortcodes': [ + ':french_fries:' + ] + }, + { + 'name': 'pizza', + 'unicode': '1F355', + 'emoji': '๐Ÿ•', + 'data': '🍕', + 'tags': [ + 'cheese', + 'food', + 'hungry', + 'pepperoni', + 'slice' + ], + 'shortcodes': [ + ':pizza:' + ] + }, + { + 'name': 'hot dog', + 'unicode': '1F32D', + 'emoji': '๐ŸŒญ', + 'data': '🌭', + 'tags': [ + 'dog', + 'frankfurter', + 'hot', + 'hotdog', + 'sausage' + ], + 'shortcodes': [ + ':hot_dog:' + ] + }, + { + 'name': 'sandwich', + 'unicode': '1F96A', + 'emoji': '๐Ÿฅช', + 'data': '🥪', + 'tags': [ + 'bread' + ], + 'shortcodes': [ + ':sandwich:' + ] + }, + { + 'name': 'taco', + 'unicode': '1F32E', + 'emoji': '๐ŸŒฎ', + 'data': '🌮', + 'tags': [ + 'mexican' + ], + 'shortcodes': [ + ':taco:' + ] + }, + { + 'name': 'burrito', + 'unicode': '1F32F', + 'emoji': '๐ŸŒฏ', + 'data': '🌯', + 'tags': [ + 'mexican', + 'wrap' + ], + 'shortcodes': [ + ':burrito:' + ] + }, + { + 'name': 'tamale', + 'unicode': '1FAD4', + 'emoji': '๐Ÿซ”', + 'data': '🫔', + 'tags': [ + 'food', + 'mexican', + 'pamonha', + 'wrapped' + ], + 'shortcodes': [ + ':tamale:' + ] + }, + { + 'name': 'stuffed flatbread', + 'unicode': '1F959', + 'emoji': '๐Ÿฅ™', + 'data': '🥙', + 'tags': [ + 'falafel', + 'flatbread', + 'food', + 'gyro', + 'kebab', + 'stuffed' + ], + 'shortcodes': [ + ':stuffed_flatbread:' + ] + }, + { + 'name': 'falafel', + 'unicode': '1F9C6', + 'emoji': '๐Ÿง†', + 'data': '🧆', + 'tags': [ + 'chickpea', + 'meatball' + ], + 'shortcodes': [ + ':falafel:' + ] + }, + { + 'name': 'egg', + 'unicode': '1F95A', + 'emoji': '๐Ÿฅš', + 'data': '🥚', + 'tags': [ + 'breakfast', + 'food' + ], + 'shortcodes': [ + ':egg:' + ] + }, + { + 'name': 'cooking', + 'unicode': '1F373', + 'emoji': '๐Ÿณ', + 'data': '🍳', + 'tags': [ + 'breakfast', + 'easy', + 'egg', + 'fry', + 'frying', + 'over', + 'pan', + 'restaurant', + 'side', + 'sunny', + 'up' + ], + 'shortcodes': [ + ':cooking:' + ] + }, + { + 'name': 'shallow pan of food', + 'unicode': '1F958', + 'emoji': '๐Ÿฅ˜', + 'data': '🥘', + 'tags': [ + 'casserole', + 'food', + 'paella', + 'pan', + 'shallow' + ], + 'shortcodes': [ + ':shallow_pan_of_food:' + ] + }, + { + 'name': 'pot of food', + 'unicode': '1F372', + 'emoji': '๐Ÿฒ', + 'data': '🍲', + 'tags': [ + 'food', + 'pot', + 'soup', + 'stew' + ], + 'shortcodes': [ + ':pot_of_food:' + ] + }, + { + 'name': 'fondue', + 'unicode': '1FAD5', + 'emoji': '๐Ÿซ•', + 'data': '🫕', + 'tags': [ + 'cheese', + 'chocolate', + 'food', + 'melted', + 'pot', + 'ski' + ], + 'shortcodes': [ + ':fondue:' + ] + }, + { + 'name': 'bowl with spoon', + 'unicode': '1F963', + 'emoji': '๐Ÿฅฃ', + 'data': '🥣', + 'tags': [ + 'bowl', + 'breakfast', + 'cereal', + 'congee', + 'oatmeal', + 'porridge', + 'spoon' + ], + 'shortcodes': [ + ':bowl_with_spoon:' + ] + }, + { + 'name': 'green salad', + 'unicode': '1F957', + 'emoji': '๐Ÿฅ—', + 'data': '🥗', + 'tags': [ + 'food', + 'green', + 'salad' + ], + 'shortcodes': [ + ':green_salad:' + ] + }, + { + 'name': 'popcorn', + 'unicode': '1F37F', + 'emoji': '๐Ÿฟ', + 'data': '🍿', + 'tags': [ + 'corn', + 'movie', + 'pop' + ], + 'shortcodes': [ + ':popcorn:' + ] + }, + { + 'name': 'butter', + 'unicode': '1F9C8', + 'emoji': '๐Ÿงˆ', + 'data': '🧈', + 'tags': [ + 'dairy' + ], + 'shortcodes': [ + ':butter:' + ] + }, + { + 'name': 'salt', + 'unicode': '1F9C2', + 'emoji': '๐Ÿง‚', + 'data': '🧂', + 'tags': [ + 'condiment', + 'flavor', + 'mad', + 'salty', + 'shaker', + 'taste', + 'upset' + ], + 'shortcodes': [ + ':salt:' + ] + }, + { + 'name': 'canned food', + 'unicode': '1F96B', + 'emoji': '๐Ÿฅซ', + 'data': '🥫', + 'tags': [ + 'can', + 'canned', + 'food' + ], + 'shortcodes': [ + ':canned_food:' + ] + }, + { + 'name': 'bento box', + 'unicode': '1F371', + 'emoji': '๐Ÿฑ', + 'data': '🍱', + 'tags': [ + 'bento', + 'box', + 'food' + ], + 'shortcodes': [ + ':bento_box:' + ] + }, + { + 'name': 'rice cracker', + 'unicode': '1F358', + 'emoji': '๐Ÿ˜', + 'data': '🍘', + 'tags': [ + 'cracker', + 'food', + 'rice' + ], + 'shortcodes': [ + ':rice_cracker:' + ] + }, + { + 'name': 'rice ball', + 'unicode': '1F359', + 'emoji': '๐Ÿ™', + 'data': '🍙', + 'tags': [ + 'ball', + 'food', + 'japanese', + 'rice' + ], + 'shortcodes': [ + ':rice_ball:' + ] + }, + { + 'name': 'cooked rice', + 'unicode': '1F35A', + 'emoji': '๐Ÿš', + 'data': '🍚', + 'tags': [ + 'cooked', + 'food', + 'rice' + ], + 'shortcodes': [ + ':cooked_rice:' + ] + }, + { + 'name': 'curry rice', + 'unicode': '1F35B', + 'emoji': '๐Ÿ›', + 'data': '🍛', + 'tags': [ + 'curry', + 'food', + 'rice' + ], + 'shortcodes': [ + ':curry_rice:' + ] + }, + { + 'name': 'steaming bowl', + 'unicode': '1F35C', + 'emoji': '๐Ÿœ', + 'data': '🍜', + 'tags': [ + 'bowl', + 'chopsticks', + 'food', + 'noodle', + 'pho', + 'ramen', + 'soup', + 'steaming' + ], + 'shortcodes': [ + ':steaming_bowl:' + ] + }, + { + 'name': 'spaghetti', + 'unicode': '1F35D', + 'emoji': '๐Ÿ', + 'data': '🍝', + 'tags': [ + 'food', + 'meatballs', + 'pasta', + 'restaurant' + ], + 'shortcodes': [ + ':spaghetti:' + ] + }, + { + 'name': 'roasted sweet potato', + 'unicode': '1F360', + 'emoji': '๐Ÿ ', + 'data': '🍠', + 'tags': [ + 'food', + 'potato', + 'roasted', + 'sweet' + ], + 'shortcodes': [ + ':roasted_sweet_potato:' + ] + }, + { + 'name': 'oden', + 'unicode': '1F362', + 'emoji': '๐Ÿข', + 'data': '🍢', + 'tags': [ + 'food', + 'kebab', + 'restaurant', + 'seafood', + 'skewer', + 'stick' + ], + 'shortcodes': [ + ':oden:' + ] + }, + { + 'name': 'sushi', + 'unicode': '1F363', + 'emoji': '๐Ÿฃ', + 'data': '🍣', + 'tags': [ + 'food' + ], + 'shortcodes': [ + ':sushi:' + ] + }, + { + 'name': 'fried shrimp', + 'unicode': '1F364', + 'emoji': '๐Ÿค', + 'data': '🍤', + 'tags': [ + 'fried', + 'prawn', + 'shrimp', + 'tempura' + ], + 'shortcodes': [ + ':fried_shrimp:' + ] + }, + { + 'name': 'fish cake with swirl', + 'unicode': '1F365', + 'emoji': '๐Ÿฅ', + 'data': '🍥', + 'tags': [ + 'cake', + 'fish', + 'food', + 'pastry', + 'restaurant', + 'swirl' + ], + 'shortcodes': [ + ':fish_cake_with_swirl:' + ] + }, + { + 'name': 'moon cake', + 'unicode': '1F96E', + 'emoji': '๐Ÿฅฎ', + 'data': '🥮', + 'tags': [ + 'autumn', + 'cake', + 'festival', + 'moon', + 'yuรจbวng' + ], + 'shortcodes': [ + ':moon_cake:' + ] + }, + { + 'name': 'dango', + 'unicode': '1F361', + 'emoji': '๐Ÿก', + 'data': '🍡', + 'tags': [ + 'dessert', + 'japanese', + 'skewer', + 'stick', + 'sweet' + ], + 'shortcodes': [ + ':dango:' + ] + }, + { + 'name': 'dumpling', + 'unicode': '1F95F', + 'emoji': '๐ŸฅŸ', + 'data': '🥟', + 'tags': [ + 'empanada', + 'gyลza', + 'jiaozi', + 'pierogi', + 'potsticker' + ], + 'shortcodes': [ + ':dumpling:' + ] + }, + { + 'name': 'fortune cookie', + 'unicode': '1F960', + 'emoji': '๐Ÿฅ ', + 'data': '🥠', + 'tags': [ + 'cookie', + 'fortune', + 'prophecy' + ], + 'shortcodes': [ + ':fortune_cookie:' + ] + }, + { + 'name': 'takeout box', + 'unicode': '1F961', + 'emoji': '๐Ÿฅก', + 'data': '🥡', + 'tags': [ + 'box', + 'chopsticks', + 'delivery', + 'food', + 'oyster', + 'pail', + 'takeout' + ], + 'shortcodes': [ + ':takeout_box:' + ] + }, + { + 'name': 'soft ice cream', + 'unicode': '1F366', + 'emoji': '๐Ÿฆ', + 'data': '🍦', + 'tags': [ + 'cream', + 'dessert', + 'food', + 'ice', + 'icecream', + 'restaurant', + 'serve', + 'soft', + 'sweet' + ], + 'shortcodes': [ + ':soft_ice_cream:' + ] + }, + { + 'name': 'shaved ice', + 'unicode': '1F367', + 'emoji': '๐Ÿง', + 'data': '🍧', + 'tags': [ + 'dessert', + 'ice', + 'restaurant', + 'shaved', + 'sweet' + ], + 'shortcodes': [ + ':shaved_ice:' + ] + }, + { + 'name': 'ice cream', + 'unicode': '1F368', + 'emoji': '๐Ÿจ', + 'data': '🍨', + 'tags': [ + 'cream', + 'dessert', + 'food', + 'ice', + 'restaurant', + 'sweet' + ], + 'shortcodes': [ + ':ice_cream:' + ] + }, + { + 'name': 'doughnut', + 'unicode': '1F369', + 'emoji': '๐Ÿฉ', + 'data': '🍩', + 'tags': [ + 'breakfast', + 'dessert', + 'donut', + 'food', + 'sweet' + ], + 'shortcodes': [ + ':doughnut:' + ] + }, + { + 'name': 'cookie', + 'unicode': '1F36A', + 'emoji': '๐Ÿช', + 'data': '🍪', + 'tags': [ + 'chip', + 'chocolate', + 'dessert', + 'sweet' + ], + 'shortcodes': [ + ':cookie:' + ] + }, + { + 'name': 'birthday cake', + 'unicode': '1F382', + 'emoji': '๐ŸŽ‚', + 'data': '🎂', + 'tags': [ + 'bday', + 'birthday', + 'cake', + 'celebration', + 'dessert', + 'happy', + 'pastry', + 'sweet' + ], + 'shortcodes': [ + ':birthday_cake:' + ] + }, + { + 'name': 'shortcake', + 'unicode': '1F370', + 'emoji': '๐Ÿฐ', + 'data': '🍰', + 'tags': [ + 'cake', + 'dessert', + 'pastry', + 'slice', + 'sweet' + ], + 'shortcodes': [ + ':shortcake:' + ] + }, + { + 'name': 'cupcake', + 'unicode': '1F9C1', + 'emoji': '๐Ÿง', + 'data': '🧁', + 'tags': [ + 'bakery', + 'dessert', + 'sprinkles', + 'sugar', + 'sweet', + 'treat' + ], + 'shortcodes': [ + ':cupcake:' + ] + }, + { + 'name': 'pie', + 'unicode': '1F967', + 'emoji': '๐Ÿฅง', + 'data': '🥧', + 'tags': [ + 'apple', + 'filling', + 'fruit', + 'meat', + 'pastry', + 'pumpkin', + 'slice' + ], + 'shortcodes': [ + ':pie:' + ] + }, + { + 'name': 'chocolate bar', + 'unicode': '1F36B', + 'emoji': '๐Ÿซ', + 'data': '🍫', + 'tags': [ + 'bar', + 'candy', + 'chocolate', + 'dessert', + 'halloween', + 'sweet', + 'tooth' + ], + 'shortcodes': [ + ':chocolate_bar:' + ] + }, + { + 'name': 'candy', + 'unicode': '1F36C', + 'emoji': '๐Ÿฌ', + 'data': '🍬', + 'tags': [ + 'cavities', + 'dessert', + 'halloween', + 'restaurant', + 'sweet', + 'tooth', + 'wrapper' + ], + 'shortcodes': [ + ':candy:' + ] + }, + { + 'name': 'lollipop', + 'unicode': '1F36D', + 'emoji': '๐Ÿญ', + 'data': '🍭', + 'tags': [ + 'candy', + 'dessert', + 'food', + 'restaurant', + 'sweet' + ], + 'shortcodes': [ + ':lollipop:' + ] + }, + { + 'name': 'custard', + 'unicode': '1F36E', + 'emoji': '๐Ÿฎ', + 'data': '🍮', + 'tags': [ + 'dessert', + 'pudding', + 'sweet' + ], + 'shortcodes': [ + ':custard:' + ] + }, + { + 'name': 'honey pot', + 'unicode': '1F36F', + 'emoji': '๐Ÿฏ', + 'data': '🍯', + 'tags': [ + 'barrel', + 'bear', + 'food', + 'honey', + 'honeypot', + 'jar', + 'pot', + 'sweet' + ], + 'shortcodes': [ + ':honey_pot:' + ] + }, + { + 'name': 'baby bottle', + 'unicode': '1F37C', + 'emoji': '๐Ÿผ', + 'data': '🍼', + 'tags': [ + 'babies', + 'baby', + 'birth', + 'born', + 'bottle', + 'drink', + 'infant', + 'milk', + 'newborn' + ], + 'shortcodes': [ + ':baby_bottle:' + ] + }, + { + 'name': 'glass of milk', + 'unicode': '1F95B', + 'emoji': '๐Ÿฅ›', + 'data': '🥛', + 'tags': [ + 'drink', + 'glass', + 'milk' + ], + 'shortcodes': [ + ':glass_of_milk:' + ] + }, + { + 'name': 'hot beverage', + 'unicode': '2615', + 'emoji': 'โ˜•', + 'data': '☕', + 'tags': [ + 'beverage', + 'cafe', + 'caffeine', + 'chai', + 'coffee', + 'drink', + 'hot', + 'morning', + 'steaming', + 'tea' + ], + 'shortcodes': [ + ':hot_beverage:' + ] + }, + { + 'name': 'teapot', + 'unicode': '1FAD6', + 'emoji': '๐Ÿซ–', + 'data': '🫖', + 'tags': [ + 'brew', + 'drink', + 'food', + 'pot', + 'tea' + ], + 'shortcodes': [ + ':teapot:' + ] + }, + { + 'name': 'teacup without handle', + 'unicode': '1F375', + 'emoji': '๐Ÿต', + 'data': '🍵', + 'tags': [ + 'beverage', + 'cup', + 'drink', + 'handle', + 'oolong', + 'tea', + 'teacup' + ], + 'shortcodes': [ + ':teacup_without_handle:' + ] + }, + { + 'name': 'sake', + 'unicode': '1F376', + 'emoji': '๐Ÿถ', + 'data': '🍶', + 'tags': [ + 'bar', + 'beverage', + 'bottle', + 'cup', + 'drink', + 'restaurant' + ], + 'shortcodes': [ + ':sake:' + ] + }, + { + 'name': 'bottle with popping cork', + 'unicode': '1F37E', + 'emoji': '๐Ÿพ', + 'data': '🍾', + 'tags': [ + 'bar', + 'bottle', + 'cork', + 'drink', + 'popping' + ], + 'shortcodes': [ + ':bottle_with_popping_cork:' + ] + }, + { + 'name': 'wine glass', + 'unicode': '1F377', + 'emoji': '๐Ÿท', + 'data': '🍷', + 'tags': [ + 'alcohol', + 'bar', + 'beverage', + 'booze', + 'club', + 'drink', + 'drinking', + 'drinks', + 'glass', + 'restaurant', + 'wine' + ], + 'shortcodes': [ + ':wine_glass:' + ] + }, + { + 'name': 'cocktail glass', + 'unicode': '1F378', + 'emoji': '๐Ÿธ', + 'data': '🍸', + 'tags': [ + 'alcohol', + 'bar', + 'booze', + 'club', + 'cocktail', + 'drink', + 'drinking', + 'drinks', + 'glass', + 'mad', + 'martini', + 'men' + ], + 'shortcodes': [ + ':cocktail_glass:' + ] + }, + { + 'name': 'tropical drink', + 'unicode': '1F379', + 'emoji': '๐Ÿน', + 'data': '🍹', + 'tags': [ + 'alcohol', + 'bar', + 'booze', + 'club', + 'cocktail', + 'drink', + 'drinking', + 'drinks', + 'drunk', + 'mai', + 'party', + 'tai', + 'tropical', + 'tropics' + ], + 'shortcodes': [ + ':tropical_drink:' + ] + }, + { + 'name': 'beer mug', + 'unicode': '1F37A', + 'emoji': '๐Ÿบ', + 'data': '🍺', + 'tags': [ + 'alcohol', + 'ale', + 'bar', + 'beer', + 'booze', + 'drink', + 'drinking', + 'drinks', + 'mug', + 'octoberfest', + 'oktoberfest', + 'pint', + 'stein', + 'summer' + ], + 'shortcodes': [ + ':beer_mug:' + ] + }, + { + 'name': 'clinking beer mugs', + 'unicode': '1F37B', + 'emoji': '๐Ÿป', + 'data': '🍻', + 'tags': [ + 'alcohol', + 'bar', + 'beer', + 'booze', + 'bottoms', + 'cheers', + 'clink', + 'clinking', + 'drinking', + 'drinks', + 'mugs' + ], + 'shortcodes': [ + ':clinking_beer_mugs:' + ] + }, + { + 'name': 'clinking glasses', + 'unicode': '1F942', + 'emoji': '๐Ÿฅ‚', + 'data': '🥂', + 'tags': [ + 'celebrate', + 'clink', + 'clinking', + 'drink', + 'glass', + 'glasses' + ], + 'shortcodes': [ + ':clinking_glasses:' + ] + }, + { + 'name': 'tumbler glass', + 'unicode': '1F943', + 'emoji': '๐Ÿฅƒ', + 'data': '🥃', + 'tags': [ + 'glass', + 'liquor', + 'scotch', + 'shot', + 'tumbler', + 'whiskey', + 'whisky' + ], + 'shortcodes': [ + ':tumbler_glass:' + ] + }, + { + 'name': 'pouring liquid', + 'unicode': '1FAD7', + 'emoji': '๐Ÿซ—', + 'data': '🫗', + 'tags': [ + 'accident', + 'drink', + 'empty', + 'glass', + 'liquid', + 'oops', + 'pour', + 'pouring', + 'spill', + 'water' + ], + 'shortcodes': [ + ':pouring_liquid:' + ] + }, + { + 'name': 'cup with straw', + 'unicode': '1F964', + 'emoji': '๐Ÿฅค', + 'data': '🥤', + 'tags': [ + 'cup', + 'drink', + 'juice', + 'malt', + 'soda', + 'soft', + 'straw', + 'water' + ], + 'shortcodes': [ + ':cup_with_straw:' + ] + }, + { + 'name': 'bubble tea', + 'unicode': '1F9CB', + 'emoji': '๐Ÿง‹', + 'data': '🧋', + 'tags': [ + 'boba', + 'bubble', + 'food', + 'milk', + 'pearl', + 'tea' + ], + 'shortcodes': [ + ':bubble_tea:' + ] + }, + { + 'name': 'beverage box', + 'unicode': '1F9C3', + 'emoji': '๐Ÿงƒ', + 'data': '🧃', + 'tags': [ + 'beverage', + 'box', + 'juice', + 'straw', + 'sweet' + ], + 'shortcodes': [ + ':beverage_box:' + ] + }, + { + 'name': 'mate', + 'unicode': '1F9C9', + 'emoji': '๐Ÿง‰', + 'data': '🧉', + 'tags': [ + 'drink' + ], + 'shortcodes': [ + ':mate:' + ] + }, + { + 'name': 'ice', + 'unicode': '1F9CA', + 'emoji': '๐ŸงŠ', + 'data': '🧊', + 'tags': [ + 'cold', + 'cube', + 'iceberg' + ], + 'shortcodes': [ + ':ice:' + ] + }, + { + 'name': 'chopsticks', + 'unicode': '1F962', + 'emoji': '๐Ÿฅข', + 'data': '🥢', + 'tags': [ + 'hashi', + 'jeotgarak', + 'kuaizi' + ], + 'shortcodes': [ + ':chopsticks:' + ] + }, + { + 'name': 'fork and knife with plate', + 'unicode': '1F37D', + 'emoji': '๐Ÿฝ', + 'data': '🍽', + 'tags': [ + 'cooking', + 'dinner', + 'eat', + 'fork', + 'knife', + 'plate' + ], + 'shortcodes': [ + ':fork_and_knife_with_plate:' + ] + }, + { + 'name': 'fork and knife', + 'unicode': '1F374', + 'emoji': '๐Ÿด', + 'data': '🍴', + 'tags': [ + 'breakfast', + 'breaky', + 'cooking', + 'cutlery', + 'delicious', + 'dinner', + 'eat', + 'feed', + 'food', + 'fork', + 'hungry', + 'knife', + 'lunch', + 'restaurant', + 'yum', + 'yummy' + ], + 'shortcodes': [ + ':fork_and_knife:' + ] + }, + { + 'name': 'spoon', + 'unicode': '1F944', + 'emoji': '๐Ÿฅ„', + 'data': '🥄', + 'tags': [ + 'eat', + 'tableware' + ], + 'shortcodes': [ + ':spoon:' + ] + }, + { + 'name': 'kitchen knife', + 'unicode': '1F52A', + 'emoji': '๐Ÿ”ช', + 'data': '🔪', + 'tags': [ + 'chef', + 'cooking', + 'hocho', + 'kitchen', + 'knife', + 'tool', + 'weapon' + ], + 'shortcodes': [ + ':kitchen_knife:' + ] + }, + { + 'name': 'jar', + 'unicode': '1FAD9', + 'emoji': '๐Ÿซ™', + 'data': '🫙', + 'tags': [ + 'condiment', + 'container', + 'empty', + 'nothing', + 'sauce', + 'store' + ], + 'shortcodes': [ + ':jar:' + ] + }, + { + 'name': 'amphora', + 'unicode': '1F3FA', + 'emoji': '๐Ÿบ', + 'data': '🏺', + 'tags': [ + 'aquarius', + 'cooking', + 'drink', + 'jug', + 'tool', + 'weapon', + 'zodiac' + ], + 'shortcodes': [ + ':amphora:' + ] + } + ] + }, + { + 'name': 'activities', + 'iconClass': 'fas fa-futbol', + 'emojis': [ + { + 'name': 'jack-o-lantern', + 'unicode': '1F383', + 'emoji': '๐ŸŽƒ', + 'data': '🎃', + 'tags': [ + 'celebration', + 'halloween', + 'jack', + 'lantern', + 'pumpkin' + ], + 'shortcodes': [ + ':jack-o-lantern:' + ] + }, + { + 'name': 'Christmas tree', + 'unicode': '1F384', + 'emoji': '๐ŸŽ„', + 'data': '🎄', + 'tags': [ + 'celebration', + 'christmas', + 'tree' + ], + 'shortcodes': [ + ':christmas_tree:' + ] + }, + { + 'name': 'fireworks', + 'unicode': '1F386', + 'emoji': '๐ŸŽ†', + 'data': '🎆', + 'tags': [ + 'boom', + 'celebration', + 'entertainment', + 'yolo' + ], + 'shortcodes': [ + ':fireworks:' + ] + }, + { + 'name': 'sparkler', + 'unicode': '1F387', + 'emoji': '๐ŸŽ‡', + 'data': '🎇', + 'tags': [ + 'boom', + 'celebration', + 'fireworks', + 'sparkle' + ], + 'shortcodes': [ + ':sparkler:' + ] + }, + { + 'name': 'firecracker', + 'unicode': '1F9E8', + 'emoji': '๐Ÿงจ', + 'data': '🧨', + 'tags': [ + 'dynamite', + 'explosive', + 'fire', + 'fireworks', + 'light', + 'pop', + 'popping', + 'spark' + ], + 'shortcodes': [ + ':firecracker:' + ] + }, + { + 'name': 'sparkles', + 'unicode': '2728', + 'emoji': 'โœจ', + 'data': '✨', + 'tags': [ + '*', + 'magic', + 'sparkle', + 'star' + ], + 'shortcodes': [ + ':sparkles:' + ] + }, + { + 'name': 'balloon', + 'unicode': '1F388', + 'emoji': '๐ŸŽˆ', + 'data': '🎈', + 'tags': [ + 'birthday', + 'celebrate', + 'celebration' + ], + 'shortcodes': [ + ':balloon:' + ] + }, + { + 'name': 'party popper', + 'unicode': '1F389', + 'emoji': '๐ŸŽ‰', + 'data': '🎉', + 'tags': [ + 'awesome', + 'birthday', + 'celebrate', + 'celebration', + 'excited', + 'hooray', + 'party', + 'popper', + 'tada', + 'woohoo' + ], + 'shortcodes': [ + ':party_popper:' + ] + }, + { + 'name': 'confetti ball', + 'unicode': '1F38A', + 'emoji': '๐ŸŽŠ', + 'data': '🎊', + 'tags': [ + 'ball', + 'celebrate', + 'celebration', + 'confetti', + 'party', + 'woohoo' + ], + 'shortcodes': [ + ':confetti_ball:' + ] + }, + { + 'name': 'tanabata tree', + 'unicode': '1F38B', + 'emoji': '๐ŸŽ‹', + 'data': '🎋', + 'tags': [ + 'banner', + 'celebration', + 'japanese', + 'tanabata', + 'tree' + ], + 'shortcodes': [ + ':tanabata_tree:' + ] + }, + { + 'name': 'pine decoration', + 'unicode': '1F38D', + 'emoji': '๐ŸŽ', + 'data': '🎍', + 'tags': [ + 'bamboo', + 'celebration', + 'decoration', + 'japanese', + 'pine', + 'plant' + ], + 'shortcodes': [ + ':pine_decoration:' + ] + }, + { + 'name': 'Japanese dolls', + 'unicode': '1F38E', + 'emoji': '๐ŸŽŽ', + 'data': '🎎', + 'tags': [ + 'celebration', + 'doll', + 'dolls', + 'festival', + 'japanese' + ], + 'shortcodes': [ + ':japanese_dolls:' + ] + }, + { + 'name': 'carp streamer', + 'unicode': '1F38F', + 'emoji': '๐ŸŽ', + 'data': '🎏', + 'tags': [ + 'carp', + 'celebration', + 'streamer' + ], + 'shortcodes': [ + ':carp_streamer:' + ] + }, + { + 'name': 'wind chime', + 'unicode': '1F390', + 'emoji': '๐ŸŽ', + 'data': '🎐', + 'tags': [ + 'bell', + 'celebration', + 'chime', + 'wind' + ], + 'shortcodes': [ + ':wind_chime:' + ] + }, + { + 'name': 'moon viewing ceremony', + 'unicode': '1F391', + 'emoji': '๐ŸŽ‘', + 'data': '🎑', + 'tags': [ + 'celebration', + 'ceremony', + 'moon', + 'viewing' + ], + 'shortcodes': [ + ':moon_viewing_ceremony:' + ] + }, + { + 'name': 'red envelope', + 'unicode': '1F9E7', + 'emoji': '๐Ÿงง', + 'data': '🧧', + 'tags': [ + 'envelope', + 'gift', + 'good', + 'hรณngbฤo', + 'lai', + 'luck', + 'money', + 'red', + 'see' + ], + 'shortcodes': [ + ':red_envelope:' + ] + }, + { + 'name': 'ribbon', + 'unicode': '1F380', + 'emoji': '๐ŸŽ€', + 'data': '🎀', + 'tags': [ + 'celebration' + ], + 'shortcodes': [ + ':ribbon:' + ] + }, + { + 'name': 'wrapped gift', + 'unicode': '1F381', + 'emoji': '๐ŸŽ', + 'data': '🎁', + 'tags': [ + 'birthday', + 'bow', + 'box', + 'celebration', + 'christmas', + 'gift', + 'present', + 'surprise', + 'wrapped' + ], + 'shortcodes': [ + ':wrapped_gift:' + ] + }, + { + 'name': 'reminder ribbon', + 'unicode': '1F397', + 'emoji': '๐ŸŽ—', + 'data': '🎗', + 'tags': [ + 'celebration', + 'reminder', + 'ribbon' + ], + 'shortcodes': [ + ':reminder_ribbon:' + ] + }, + { + 'name': 'admission tickets', + 'unicode': '1F39F', + 'emoji': '๐ŸŽŸ', + 'data': '🎟', + 'tags': [ + 'admission', + 'ticket', + 'tickets' + ], + 'shortcodes': [ + ':admission_tickets:' + ] + }, + { + 'name': 'ticket', + 'unicode': '1F3AB', + 'emoji': '๐ŸŽซ', + 'data': '🎫', + 'tags': [ + 'admission', + 'stub' + ], + 'shortcodes': [ + ':ticket:' + ] + }, + { + 'name': 'military medal', + 'unicode': '1F396', + 'emoji': '๐ŸŽ–', + 'data': '🎖', + 'tags': [ + 'award', + 'celebration', + 'medal', + 'military' + ], + 'shortcodes': [ + ':military_medal:' + ] + }, + { + 'name': 'trophy', + 'unicode': '1F3C6', + 'emoji': '๐Ÿ†', + 'data': '🏆', + 'tags': [ + 'champion', + 'champs', + 'prize', + 'slay', + 'sport', + 'victory', + 'win', + 'winning' + ], + 'shortcodes': [ + ':trophy:' + ] + }, + { + 'name': 'sports medal', + 'unicode': '1F3C5', + 'emoji': '๐Ÿ…', + 'data': '🏅', + 'tags': [ + 'award', + 'gold', + 'medal', + 'sports', + 'winner' + ], + 'shortcodes': [ + ':sports_medal:' + ] + }, + { + 'name': '1st place medal', + 'unicode': '1F947', + 'emoji': '๐Ÿฅ‡', + 'data': '🥇', + 'tags': [ + '1st', + 'first', + 'gold', + 'medal', + 'place' + ], + 'shortcodes': [ + ':1st_place_medal:' + ] + }, + { + 'name': '2nd place medal', + 'unicode': '1F948', + 'emoji': '๐Ÿฅˆ', + 'data': '🥈', + 'tags': [ + '2nd', + 'medal', + 'place', + 'second', + 'silver' + ], + 'shortcodes': [ + ':2nd_place_medal:' + ] + }, + { + 'name': '3rd place medal', + 'unicode': '1F949', + 'emoji': '๐Ÿฅ‰', + 'data': '🥉', + 'tags': [ + '3rd', + 'bronze', + 'medal', + 'place', + 'third' + ], + 'shortcodes': [ + ':3rd_place_medal:' + ] + }, + { + 'name': 'soccer ball', + 'unicode': '26BD', + 'emoji': 'โšฝ', + 'data': '⚽', + 'tags': [ + 'ball', + 'football', + 'futbol', + 'soccer', + 'sport' + ], + 'shortcodes': [ + ':soccer_ball:' + ] + }, + { + 'name': 'baseball', + 'unicode': '26BE', + 'emoji': 'โšพ', + 'data': '⚾', + 'tags': [ + 'ball', + 'sport' + ], + 'shortcodes': [ + ':baseball:' + ] + }, + { + 'name': 'softball', + 'unicode': '1F94E', + 'emoji': '๐ŸฅŽ', + 'data': '🥎', + 'tags': [ + 'ball', + 'glove', + 'sports', + 'underarm' + ], + 'shortcodes': [ + ':softball:' + ] + }, + { + 'name': 'basketball', + 'unicode': '1F3C0', + 'emoji': '๐Ÿ€', + 'data': '🏀', + 'tags': [ + 'ball', + 'hoop', + 'sport' + ], + 'shortcodes': [ + ':basketball:' + ] + }, + { + 'name': 'volleyball', + 'unicode': '1F3D0', + 'emoji': '๐Ÿ', + 'data': '🏐', + 'tags': [ + 'ball', + 'game' + ], + 'shortcodes': [ + ':volleyball:' + ] + }, + { + 'name': 'american football', + 'unicode': '1F3C8', + 'emoji': '๐Ÿˆ', + 'data': '🏈', + 'tags': [ + 'american', + 'ball', + 'bowl', + 'football', + 'sport', + 'super' + ], + 'shortcodes': [ + ':american_football:' + ] + }, + { + 'name': 'rugby football', + 'unicode': '1F3C9', + 'emoji': '๐Ÿ‰', + 'data': '🏉', + 'tags': [ + 'ball', + 'football', + 'rugby', + 'sport' + ], + 'shortcodes': [ + ':rugby_football:' + ] + }, + { + 'name': 'tennis', + 'unicode': '1F3BE', + 'emoji': '๐ŸŽพ', + 'data': '🎾', + 'tags': [ + 'ball', + 'racquet', + 'sport' + ], + 'shortcodes': [ + ':tennis:' + ] + }, + { + 'name': 'flying disc', + 'unicode': '1F94F', + 'emoji': '๐Ÿฅ', + 'data': '🥏', + 'tags': [ + 'disc', + 'flying', + 'ultimate' + ], + 'shortcodes': [ + ':flying_disc:' + ] + }, + { + 'name': 'bowling', + 'unicode': '1F3B3', + 'emoji': '๐ŸŽณ', + 'data': '🎳', + 'tags': [ + 'ball', + 'game', + 'sport', + 'strike' + ], + 'shortcodes': [ + ':bowling:' + ] + }, + { + 'name': 'cricket game', + 'unicode': '1F3CF', + 'emoji': '๐Ÿ', + 'data': '🏏', + 'tags': [ + 'ball', + 'bat', + 'cricket', + 'game' + ], + 'shortcodes': [ + ':cricket_game:' + ] + }, + { + 'name': 'field hockey', + 'unicode': '1F3D1', + 'emoji': '๐Ÿ‘', + 'data': '🏑', + 'tags': [ + 'ball', + 'field', + 'game', + 'hockey', + 'stick' + ], + 'shortcodes': [ + ':field_hockey:' + ] + }, + { + 'name': 'ice hockey', + 'unicode': '1F3D2', + 'emoji': '๐Ÿ’', + 'data': '🏒', + 'tags': [ + 'game', + 'hockey', + 'ice', + 'puck', + 'stick' + ], + 'shortcodes': [ + ':ice_hockey:' + ] + }, + { + 'name': 'lacrosse', + 'unicode': '1F94D', + 'emoji': '๐Ÿฅ', + 'data': '🥍', + 'tags': [ + 'ball', + 'goal', + 'sports', + 'stick' + ], + 'shortcodes': [ + ':lacrosse:' + ] + }, + { + 'name': 'ping pong', + 'unicode': '1F3D3', + 'emoji': '๐Ÿ“', + 'data': '🏓', + 'tags': [ + 'ball', + 'bat', + 'game', + 'paddle', + 'ping', + 'pingpong', + 'pong', + 'table', + 'tennis' + ], + 'shortcodes': [ + ':ping_pong:' + ] + }, + { + 'name': 'badminton', + 'unicode': '1F3F8', + 'emoji': '๐Ÿธ', + 'data': '🏸', + 'tags': [ + 'birdie', + 'game', + 'racquet', + 'shuttlecock' + ], + 'shortcodes': [ + ':badminton:' + ] + }, + { + 'name': 'boxing glove', + 'unicode': '1F94A', + 'emoji': '๐ŸฅŠ', + 'data': '🥊', + 'tags': [ + 'boxing', + 'glove' + ], + 'shortcodes': [ + ':boxing_glove:' + ] + }, + { + 'name': 'martial arts uniform', + 'unicode': '1F94B', + 'emoji': '๐Ÿฅ‹', + 'data': '🥋', + 'tags': [ + 'arts', + 'judo', + 'karate', + 'martial', + 'taekwondo', + 'uniform' + ], + 'shortcodes': [ + ':martial_arts_uniform:' + ] + }, + { + 'name': 'goal net', + 'unicode': '1F945', + 'emoji': '๐Ÿฅ…', + 'data': '🥅', + 'tags': [ + 'goal', + 'net' + ], + 'shortcodes': [ + ':goal_net:' + ] + }, + { + 'name': 'flag in hole', + 'unicode': '26F3', + 'emoji': 'โ›ณ', + 'data': '⛳', + 'tags': [ + 'flag', + 'golf', + 'hole', + 'sport' + ], + 'shortcodes': [ + ':flag_in_hole:' + ] + }, + { + 'name': 'ice skate', + 'unicode': '26F8', + 'emoji': 'โ›ธ', + 'data': '⛸', + 'tags': [ + 'ice', + 'skate', + 'skating' + ], + 'shortcodes': [ + ':ice_skate:' + ] + }, + { + 'name': 'fishing pole', + 'unicode': '1F3A3', + 'emoji': '๐ŸŽฃ', + 'data': '🎣', + 'tags': [ + 'entertainment', + 'fish', + 'fishing', + 'pole', + 'sport' + ], + 'shortcodes': [ + ':fishing_pole:' + ] + }, + { + 'name': 'diving mask', + 'unicode': '1F93F', + 'emoji': '๐Ÿคฟ', + 'data': '🤿', + 'tags': [ + 'diving', + 'mask', + 'scuba', + 'snorkeling' + ], + 'shortcodes': [ + ':diving_mask:' + ] + }, + { + 'name': 'running shirt', + 'unicode': '1F3BD', + 'emoji': '๐ŸŽฝ', + 'data': '🎽', + 'tags': [ + 'athletics', + 'running', + 'sash', + 'shirt' + ], + 'shortcodes': [ + ':running_shirt:' + ] + }, + { + 'name': 'skis', + 'unicode': '1F3BF', + 'emoji': '๐ŸŽฟ', + 'data': '🎿', + 'tags': [ + 'ski', + 'snow', + 'sport' + ], + 'shortcodes': [ + ':skis:' + ] + }, + { + 'name': 'sled', + 'unicode': '1F6F7', + 'emoji': '๐Ÿ›ท', + 'data': '🛷', + 'tags': [ + 'luge', + 'sledge', + 'sleigh', + 'snow', + 'toboggan' + ], + 'shortcodes': [ + ':sled:' + ] + }, + { + 'name': 'curling stone', + 'unicode': '1F94C', + 'emoji': '๐ŸฅŒ', + 'data': '🥌', + 'tags': [ + 'curling', + 'game', + 'rock', + 'stone' + ], + 'shortcodes': [ + ':curling_stone:' + ] + }, + { + 'name': 'bullseye', + 'unicode': '1F3AF', + 'emoji': '๐ŸŽฏ', + 'data': '🎯', + 'tags': [ + 'bull', + 'dart', + 'direct', + 'entertainment', + 'game', + 'hit', + 'target' + ], + 'shortcodes': [ + ':bullseye:' + ] + }, + { + 'name': 'yo-yo', + 'unicode': '1FA80', + 'emoji': '๐Ÿช€', + 'data': '🪀', + 'tags': [ + 'fluctuate', + 'toy' + ], + 'shortcodes': [ + ':yo-yo:' + ] + }, + { + 'name': 'kite', + 'unicode': '1FA81', + 'emoji': '๐Ÿช', + 'data': '🪁', + 'tags': [ + 'fly', + 'soar' + ], + 'shortcodes': [ + ':kite:' + ] + }, + { + 'name': 'water pistol', + 'unicode': '1F52B', + 'emoji': '๐Ÿ”ซ', + 'data': '🔫', + 'tags': [ + 'gun', + 'handgun', + 'pistol', + 'revolver', + 'tool', + 'water', + 'weapon' + ], + 'shortcodes': [ + ':water_pistol:' + ] + }, + { + 'name': 'pool 8 ball', + 'unicode': '1F3B1', + 'emoji': '๐ŸŽฑ', + 'data': '🎱', + 'tags': [ + '8', + '8ball', + 'ball', + 'billiard', + 'eight', + 'game', + 'pool' + ], + 'shortcodes': [ + ':pool_8_ball:' + ] + }, + { + 'name': 'crystal ball', + 'unicode': '1F52E', + 'emoji': '๐Ÿ”ฎ', + 'data': '🔮', + 'tags': [ + 'ball', + 'crystal', + 'fairy', + 'fairytale', + 'fantasy', + 'fortune', + 'future', + 'magic', + 'tale', + 'tool' + ], + 'shortcodes': [ + ':crystal_ball:' + ] + }, + { + 'name': 'magic wand', + 'unicode': '1FA84', + 'emoji': '๐Ÿช„', + 'data': '🪄', + 'tags': [ + 'magic', + 'magician', + 'wand', + 'witch', + 'wizard' + ], + 'shortcodes': [ + ':magic_wand:' + ] + }, + { + 'name': 'video game', + 'unicode': '1F3AE', + 'emoji': '๐ŸŽฎ', + 'data': '🎮', + 'tags': [ + 'controller', + 'entertainment', + 'game', + 'video' + ], + 'shortcodes': [ + ':video_game:' + ] + }, + { + 'name': 'joystick', + 'unicode': '1F579', + 'emoji': '๐Ÿ•น', + 'data': '🕹', + 'tags': [ + 'game', + 'video', + 'videogame' + ], + 'shortcodes': [ + ':joystick:' + ] + }, + { + 'name': 'slot machine', + 'unicode': '1F3B0', + 'emoji': '๐ŸŽฐ', + 'data': '🎰', + 'tags': [ + 'casino', + 'gamble', + 'gambling', + 'game', + 'machine', + 'slot', + 'slots' + ], + 'shortcodes': [ + ':slot_machine:' + ] + }, + { + 'name': 'game die', + 'unicode': '1F3B2', + 'emoji': '๐ŸŽฒ', + 'data': '🎲', + 'tags': [ + 'dice', + 'die', + 'entertainment', + 'game' + ], + 'shortcodes': [ + ':game_die:' + ] + }, + { + 'name': 'puzzle piece', + 'unicode': '1F9E9', + 'emoji': '๐Ÿงฉ', + 'data': '🧩', + 'tags': [ + 'clue', + 'interlocking', + 'jigsaw', + 'piece', + 'puzzle' + ], + 'shortcodes': [ + ':puzzle_piece:' + ] + }, + { + 'name': 'teddy bear', + 'unicode': '1F9F8', + 'emoji': '๐Ÿงธ', + 'data': '🧸', + 'tags': [ + 'bear', + 'plaything', + 'plush', + 'stuffed', + 'teddy', + 'toy' + ], + 'shortcodes': [ + ':teddy_bear:' + ] + }, + { + 'name': 'piรฑata', + 'unicode': '1FA85', + 'emoji': '๐Ÿช…', + 'data': '🪅', + 'tags': [ + 'candy', + 'celebrate', + 'celebration', + 'cinco', + 'de', + 'festive', + 'mayo', + 'party', + 'pinada', + 'pinata' + ], + 'shortcodes': [ + ':piรฑata:' + ] + }, + { + 'name': 'mirror ball', + 'unicode': '1FAA9', + 'emoji': '๐Ÿชฉ', + 'data': '🪩', + 'tags': [ + 'ball', + 'dance', + 'disco', + 'glitter', + 'mirror', + 'party' + ], + 'shortcodes': [ + ':mirror_ball:' + ] + }, + { + 'name': 'nesting dolls', + 'unicode': '1FA86', + 'emoji': '๐Ÿช†', + 'data': '🪆', + 'tags': [ + 'babooshka', + 'baboushka', + 'babushka', + 'doll', + 'dolls', + 'matryoshka', + 'nesting', + 'russia' + ], + 'shortcodes': [ + ':nesting_dolls:' + ] + }, + { + 'name': 'spade suit', + 'unicode': '2660', + 'emoji': 'โ™ ', + 'data': '♠', + 'tags': [ + 'card', + 'game', + 'spade', + 'suit' + ], + 'shortcodes': [ + ':spade_suit:' + ] + }, + { + 'name': 'heart suit', + 'unicode': '2665', + 'emoji': 'โ™ฅ', + 'data': '♥', + 'tags': [ + 'card', + 'emotion', + 'game', + 'heart', + 'hearts', + 'suit' + ], + 'shortcodes': [ + ':heart_suit:' + ] + }, + { + 'name': 'diamond suit', + 'unicode': '2666', + 'emoji': 'โ™ฆ', + 'data': '♦', + 'tags': [ + 'card', + 'diamond', + 'game', + 'suit' + ], + 'shortcodes': [ + ':diamond_suit:' + ] + }, + { + 'name': 'club suit', + 'unicode': '2663', + 'emoji': 'โ™ฃ', + 'data': '♣', + 'tags': [ + 'card', + 'club', + 'clubs', + 'game', + 'suit' + ], + 'shortcodes': [ + ':club_suit:' + ] + }, + { + 'name': 'chess pawn', + 'unicode': '265F', + 'emoji': 'โ™Ÿ', + 'data': '♟', + 'tags': [ + 'chess', + 'dupe', + 'expendable', + 'pawn' + ], + 'shortcodes': [ + ':chess_pawn:' + ] + }, + { + 'name': 'joker', + 'unicode': '1F0CF', + 'emoji': '๐Ÿƒ', + 'data': '🃏', + 'tags': [ + 'card', + 'game', + 'wildcard' + ], + 'shortcodes': [ + ':joker:' + ] + }, + { + 'name': 'mahjong red dragon', + 'unicode': '1F004', + 'emoji': '๐Ÿ€„', + 'data': '🀄', + 'tags': [ + 'dragon', + 'game', + 'mahjong', + 'red' + ], + 'shortcodes': [ + ':mahjong_red_dragon:' + ] + }, + { + 'name': 'flower playing cards', + 'unicode': '1F3B4', + 'emoji': '๐ŸŽด', + 'data': '🎴', + 'tags': [ + 'card', + 'cards', + 'flower', + 'game', + 'japanese', + 'playing' + ], + 'shortcodes': [ + ':flower_playing_cards:' + ] + }, + { + 'name': 'performing arts', + 'unicode': '1F3AD', + 'emoji': '๐ŸŽญ', + 'data': '🎭', + 'tags': [ + 'actor', + 'actress', + 'art', + 'arts', + 'entertainment', + 'mask', + 'performing', + 'theater', + 'theatre', + 'thespian' + ], + 'shortcodes': [ + ':performing_arts:' + ] + }, + { + 'name': 'framed picture', + 'unicode': '1F5BC', + 'emoji': '๐Ÿ–ผ', + 'data': '🖼', + 'tags': [ + 'art', + 'frame', + 'framed', + 'museum', + 'painting', + 'picture' + ], + 'shortcodes': [ + ':framed_picture:' + ] + }, + { + 'name': 'artist palette', + 'unicode': '1F3A8', + 'emoji': '๐ŸŽจ', + 'data': '🎨', + 'tags': [ + 'art', + 'artist', + 'artsy', + 'arty', + 'colorful', + 'creative', + 'entertainment', + 'museum', + 'painter', + 'painting', + 'palette' + ], + 'shortcodes': [ + ':artist_palette:' + ] + }, + { + 'name': 'thread', + 'unicode': '1F9F5', + 'emoji': '๐Ÿงต', + 'data': '🧵', + 'tags': [ + 'needle', + 'sewing', + 'spool', + 'string' + ], + 'shortcodes': [ + ':thread:' + ] + }, + { + 'name': 'sewing needle', + 'unicode': '1FAA1', + 'emoji': '๐Ÿชก', + 'data': '🪡', + 'tags': [ + 'embroidery', + 'needle', + 'sew', + 'sewing', + 'stitches', + 'sutures', + 'tailoring', + 'thread' + ], + 'shortcodes': [ + ':sewing_needle:' + ] + }, + { + 'name': 'yarn', + 'unicode': '1F9F6', + 'emoji': '๐Ÿงถ', + 'data': '🧶', + 'tags': [ + 'ball', + 'crochet', + 'knit' + ], + 'shortcodes': [ + ':yarn:' + ] + }, + { + 'name': 'knot', + 'unicode': '1FAA2', + 'emoji': '๐Ÿชข', + 'data': '🪢', + 'tags': [ + 'cord', + 'rope', + 'tangled', + 'tie', + 'twine', + 'twist' + ], + 'shortcodes': [ + ':knot:' + ] + } + ] + }, + { + 'name': 'travel-places', + 'iconClass': 'fas fa-globe-europe', + 'emojis': [ + { + 'name': 'globe showing Europe-Africa', + 'unicode': '1F30D', + 'emoji': '๐ŸŒ', + 'data': '🌍', + 'tags': [ + 'africa', + 'earth', + 'europe', + 'europe-africa', + 'globe', + 'showing', + 'world' + ], + 'shortcodes': [ + ':globe_showing_europe-africa:' + ] + }, + { + 'name': 'globe showing Americas', + 'unicode': '1F30E', + 'emoji': '๐ŸŒŽ', + 'data': '🌎', + 'tags': [ + 'americas', + 'earth', + 'globe', + 'showing', + 'world' + ], + 'shortcodes': [ + ':globe_showing_americas:' + ] + }, + { + 'name': 'globe showing Asia-Australia', + 'unicode': '1F30F', + 'emoji': '๐ŸŒ', + 'data': '🌏', + 'tags': [ + 'asia', + 'asia-australia', + 'australia', + 'earth', + 'globe', + 'showing', + 'world' + ], + 'shortcodes': [ + ':globe_showing_asia-australia:' + ] + }, + { + 'name': 'globe with meridians', + 'unicode': '1F310', + 'emoji': '๐ŸŒ', + 'data': '🌐', + 'tags': [ + 'earth', + 'globe', + 'internet', + 'meridians', + 'web', + 'world', + 'worldwide' + ], + 'shortcodes': [ + ':globe_with_meridians:' + ] + }, + { + 'name': 'world map', + 'unicode': '1F5FA', + 'emoji': '๐Ÿ—บ', + 'data': '🗺', + 'tags': [ + 'map', + 'world' + ], + 'shortcodes': [ + ':world_map:' + ] + }, + { + 'name': 'map of Japan', + 'unicode': '1F5FE', + 'emoji': '๐Ÿ—พ', + 'data': '🗾', + 'tags': [ + 'japan', + 'map' + ], + 'shortcodes': [ + ':map_of_japan:' + ] + }, + { + 'name': 'compass', + 'unicode': '1F9ED', + 'emoji': '๐Ÿงญ', + 'data': '🧭', + 'tags': [ + 'direction', + 'magnetic', + 'navigation', + 'orienteering' + ], + 'shortcodes': [ + ':compass:' + ] + }, + { + 'name': 'snow-capped mountain', + 'unicode': '1F3D4', + 'emoji': '๐Ÿ”', + 'data': '🏔', + 'tags': [ + 'cold', + 'mountain', + 'snow', + 'snow-capped' + ], + 'shortcodes': [ + ':snow-capped_mountain:' + ] + }, + { + 'name': 'mountain', + 'unicode': '26F0', + 'emoji': 'โ›ฐ', + 'data': '⛰', + 'tags': [ + 'mountain' + ], + 'shortcodes': [ + ':mountain:' + ] + }, + { + 'name': 'volcano', + 'unicode': '1F30B', + 'emoji': '๐ŸŒ‹', + 'data': '🌋', + 'tags': [ + 'eruption', + 'mountain', + 'nature' + ], + 'shortcodes': [ + ':volcano:' + ] + }, + { + 'name': 'mount fuji', + 'unicode': '1F5FB', + 'emoji': '๐Ÿ—ป', + 'data': '🗻', + 'tags': [ + 'fuji', + 'mount', + 'mountain', + 'nature' + ], + 'shortcodes': [ + ':mount_fuji:' + ] + }, + { + 'name': 'camping', + 'unicode': '1F3D5', + 'emoji': '๐Ÿ•', + 'data': '🏕', + 'tags': [ + 'camping' + ], + 'shortcodes': [ + ':camping:' + ] + }, + { + 'name': 'beach with umbrella', + 'unicode': '1F3D6', + 'emoji': '๐Ÿ–', + 'data': '🏖', + 'tags': [ + 'beach', + 'umbrella' + ], + 'shortcodes': [ + ':beach_with_umbrella:' + ] + }, + { + 'name': 'desert', + 'unicode': '1F3DC', + 'emoji': '๐Ÿœ', + 'data': '🏜', + 'tags': [ + 'desert' + ], + 'shortcodes': [ + ':desert:' + ] + }, + { + 'name': 'desert island', + 'unicode': '1F3DD', + 'emoji': '๐Ÿ', + 'data': '🏝', + 'tags': [ + 'desert', + 'island' + ], + 'shortcodes': [ + ':desert_island:' + ] + }, + { + 'name': 'national park', + 'unicode': '1F3DE', + 'emoji': '๐Ÿž', + 'data': '🏞', + 'tags': [ + 'national', + 'park' + ], + 'shortcodes': [ + ':national_park:' + ] + }, + { + 'name': 'stadium', + 'unicode': '1F3DF', + 'emoji': '๐ŸŸ', + 'data': '🏟', + 'tags': [ + 'stadium' + ], + 'shortcodes': [ + ':stadium:' + ] + }, + { + 'name': 'classical building', + 'unicode': '1F3DB', + 'emoji': '๐Ÿ›', + 'data': '🏛', + 'tags': [ + 'building', + 'classical' + ], + 'shortcodes': [ + ':classical_building:' + ] + }, + { + 'name': 'building construction', + 'unicode': '1F3D7', + 'emoji': '๐Ÿ—', + 'data': '🏗', + 'tags': [ + 'building', + 'construction', + 'crane' + ], + 'shortcodes': [ + ':building_construction:' + ] + }, + { + 'name': 'brick', + 'unicode': '1F9F1', + 'emoji': '๐Ÿงฑ', + 'data': '🧱', + 'tags': [ + 'bricks', + 'clay', + 'mortar', + 'wall' + ], + 'shortcodes': [ + ':brick:' + ] + }, + { + 'name': 'rock', + 'unicode': '1FAA8', + 'emoji': '๐Ÿชจ', + 'data': '🪨', + 'tags': [ + 'boulder', + 'heavy', + 'solid', + 'stone', + 'tough' + ], + 'shortcodes': [ + ':rock:' + ] + }, + { + 'name': 'wood', + 'unicode': '1FAB5', + 'emoji': '๐Ÿชต', + 'data': '🪵', + 'tags': [ + 'log', + 'lumber', + 'timber' + ], + 'shortcodes': [ + ':wood:' + ] + }, + { + 'name': 'hut', + 'unicode': '1F6D6', + 'emoji': '๐Ÿ›–', + 'data': '🛖', + 'tags': [ + 'home', + 'house', + 'roundhouse', + 'shelter', + 'yurt' + ], + 'shortcodes': [ + ':hut:' + ] + }, + { + 'name': 'houses', + 'unicode': '1F3D8', + 'emoji': '๐Ÿ˜', + 'data': '🏘', + 'tags': [ + 'house' + ], + 'shortcodes': [ + ':houses:' + ] + }, + { + 'name': 'derelict house', + 'unicode': '1F3DA', + 'emoji': '๐Ÿš', + 'data': '🏚', + 'tags': [ + 'derelict', + 'home', + 'house' + ], + 'shortcodes': [ + ':derelict_house:' + ] + }, + { + 'name': 'house', + 'unicode': '1F3E0', + 'emoji': '๐Ÿ ', + 'data': '🏠', + 'tags': [ + 'building', + 'country', + 'heart', + 'home', + 'ranch', + 'settle', + 'simple', + 'suburban', + 'suburbia', + 'where' + ], + 'shortcodes': [ + ':house:' + ] + }, + { + 'name': 'house with garden', + 'unicode': '1F3E1', + 'emoji': '๐Ÿก', + 'data': '🏡', + 'tags': [ + 'building', + 'country', + 'garden', + 'heart', + 'home', + 'house', + 'ranch', + 'settle', + 'simple', + 'suburban', + 'suburbia', + 'where' + ], + 'shortcodes': [ + ':house_with_garden:' + ] + }, + { + 'name': 'office building', + 'unicode': '1F3E2', + 'emoji': '๐Ÿข', + 'data': '🏢', + 'tags': [ + 'building', + 'city', + 'cubical', + 'job', + 'office' + ], + 'shortcodes': [ + ':office_building:' + ] + }, + { + 'name': 'Japanese post office', + 'unicode': '1F3E3', + 'emoji': '๐Ÿฃ', + 'data': '🏣', + 'tags': [ + 'building', + 'japanese', + 'office', + 'post' + ], + 'shortcodes': [ + ':japanese_post_office:' + ] + }, + { + 'name': 'post office', + 'unicode': '1F3E4', + 'emoji': '๐Ÿค', + 'data': '🏤', + 'tags': [ + 'building', + 'european', + 'office', + 'post' + ], + 'shortcodes': [ + ':post_office:' + ] + }, + { + 'name': 'hospital', + 'unicode': '1F3E5', + 'emoji': '๐Ÿฅ', + 'data': '🏥', + 'tags': [ + 'building', + 'doctor', + 'medicine' + ], + 'shortcodes': [ + ':hospital:' + ] + }, + { + 'name': 'bank', + 'unicode': '1F3E6', + 'emoji': '๐Ÿฆ', + 'data': '🏦', + 'tags': [ + 'building' + ], + 'shortcodes': [ + ':bank:' + ] + }, + { + 'name': 'hotel', + 'unicode': '1F3E8', + 'emoji': '๐Ÿจ', + 'data': '🏨', + 'tags': [ + 'building' + ], + 'shortcodes': [ + ':hotel:' + ] + }, + { + 'name': 'love hotel', + 'unicode': '1F3E9', + 'emoji': '๐Ÿฉ', + 'data': '🏩', + 'tags': [ + 'building', + 'hotel', + 'love' + ], + 'shortcodes': [ + ':love_hotel:' + ] + }, + { + 'name': 'convenience store', + 'unicode': '1F3EA', + 'emoji': '๐Ÿช', + 'data': '🏪', + 'tags': [ + '24', + 'building', + 'convenience', + 'hours', + 'store' + ], + 'shortcodes': [ + ':convenience_store:' + ] + }, + { + 'name': 'school', + 'unicode': '1F3EB', + 'emoji': '๐Ÿซ', + 'data': '🏫', + 'tags': [ + 'building' + ], + 'shortcodes': [ + ':school:' + ] + }, + { + 'name': 'department store', + 'unicode': '1F3EC', + 'emoji': '๐Ÿฌ', + 'data': '🏬', + 'tags': [ + 'building', + 'department', + 'store' + ], + 'shortcodes': [ + ':department_store:' + ] + }, + { + 'name': 'factory', + 'unicode': '1F3ED', + 'emoji': '๐Ÿญ', + 'data': '🏭', + 'tags': [ + 'building' + ], + 'shortcodes': [ + ':factory:' + ] + }, + { + 'name': 'Japanese castle', + 'unicode': '1F3EF', + 'emoji': '๐Ÿฏ', + 'data': '🏯', + 'tags': [ + 'building', + 'castle', + 'japanese' + ], + 'shortcodes': [ + ':japanese_castle:' + ] + }, + { + 'name': 'castle', + 'unicode': '1F3F0', + 'emoji': '๐Ÿฐ', + 'data': '🏰', + 'tags': [ + 'building', + 'european' + ], + 'shortcodes': [ + ':castle:' + ] + }, + { + 'name': 'wedding', + 'unicode': '1F492', + 'emoji': '๐Ÿ’’', + 'data': '💒', + 'tags': [ + 'chapel', + 'hitched', + 'nuptials', + 'romance' + ], + 'shortcodes': [ + ':wedding:' + ] + }, + { + 'name': 'Tokyo tower', + 'unicode': '1F5FC', + 'emoji': '๐Ÿ—ผ', + 'data': '🗼', + 'tags': [ + 'tokyo', + 'tower' + ], + 'shortcodes': [ + ':tokyo_tower:' + ] + }, + { + 'name': 'Statue of Liberty', + 'unicode': '1F5FD', + 'emoji': '๐Ÿ—ฝ', + 'data': '🗽', + 'tags': [ + 'liberty', + 'new', + 'ny', + 'nyc', + 'statue', + 'york' + ], + 'shortcodes': [ + ':statue_of_liberty:' + ] + }, + { + 'name': 'church', + 'unicode': '26EA', + 'emoji': 'โ›ช', + 'data': '⛪', + 'tags': [ + 'bless', + 'chapel', + 'christian', + 'cross', + 'religion' + ], + 'shortcodes': [ + ':church:' + ] + }, + { + 'name': 'mosque', + 'unicode': '1F54C', + 'emoji': '๐Ÿ•Œ', + 'data': '🕌', + 'tags': [ + 'islam', + 'masjid', + 'muslim', + 'religion' + ], + 'shortcodes': [ + ':mosque:' + ] + }, + { + 'name': 'hindu temple', + 'unicode': '1F6D5', + 'emoji': '๐Ÿ›•', + 'data': '🛕', + 'tags': [ + 'hindu', + 'temple' + ], + 'shortcodes': [ + ':hindu_temple:' + ] + }, + { + 'name': 'synagogue', + 'unicode': '1F54D', + 'emoji': '๐Ÿ•', + 'data': '🕍', + 'tags': [ + 'jew', + 'jewish', + 'judaism', + 'religion', + 'temple' + ], + 'shortcodes': [ + ':synagogue:' + ] + }, + { + 'name': 'shinto shrine', + 'unicode': '26E9', + 'emoji': 'โ›ฉ', + 'data': '⛩', + 'tags': [ + 'religion', + 'shinto', + 'shrine' + ], + 'shortcodes': [ + ':shinto_shrine:' + ] + }, + { + 'name': 'kaaba', + 'unicode': '1F54B', + 'emoji': '๐Ÿ•‹', + 'data': '🕋', + 'tags': [ + 'hajj', + 'islam', + 'muslim', + 'religion', + 'umrah' + ], + 'shortcodes': [ + ':kaaba:' + ] + }, + { + 'name': 'fountain', + 'unicode': '26F2', + 'emoji': 'โ›ฒ', + 'data': '⛲', + 'tags': [ + 'fountain' + ], + 'shortcodes': [ + ':fountain:' + ] + }, + { + 'name': 'tent', + 'unicode': '26FA', + 'emoji': 'โ›บ', + 'data': '⛺', + 'tags': [ + 'camping' + ], + 'shortcodes': [ + ':tent:' + ] + }, + { + 'name': 'foggy', + 'unicode': '1F301', + 'emoji': '๐ŸŒ', + 'data': '🌁', + 'tags': [ + 'fog' + ], + 'shortcodes': [ + ':foggy:' + ] + }, + { + 'name': 'night with stars', + 'unicode': '1F303', + 'emoji': '๐ŸŒƒ', + 'data': '🌃', + 'tags': [ + 'night', + 'star', + 'stars' + ], + 'shortcodes': [ + ':night_with_stars:' + ] + }, + { + 'name': 'cityscape', + 'unicode': '1F3D9', + 'emoji': '๐Ÿ™', + 'data': '🏙', + 'tags': [ + 'city' + ], + 'shortcodes': [ + ':cityscape:' + ] + }, + { + 'name': 'sunrise over mountains', + 'unicode': '1F304', + 'emoji': '๐ŸŒ„', + 'data': '🌄', + 'tags': [ + 'morning', + 'mountains', + 'over', + 'sun', + 'sunrise' + ], + 'shortcodes': [ + ':sunrise_over_mountains:' + ] + }, + { + 'name': 'sunrise', + 'unicode': '1F305', + 'emoji': '๐ŸŒ…', + 'data': '🌅', + 'tags': [ + 'morning', + 'nature', + 'sun' + ], + 'shortcodes': [ + ':sunrise:' + ] + }, + { + 'name': 'cityscape at dusk', + 'unicode': '1F306', + 'emoji': '๐ŸŒ†', + 'data': '🌆', + 'tags': [ + 'at', + 'building', + 'city', + 'cityscape', + 'dusk', + 'evening', + 'landscape', + 'sun', + 'sunset' + ], + 'shortcodes': [ + ':cityscape_at_dusk:' + ] + }, + { + 'name': 'sunset', + 'unicode': '1F307', + 'emoji': '๐ŸŒ‡', + 'data': '🌇', + 'tags': [ + 'building', + 'dusk', + 'sun' + ], + 'shortcodes': [ + ':sunset:' + ] + }, + { + 'name': 'bridge at night', + 'unicode': '1F309', + 'emoji': '๐ŸŒ‰', + 'data': '🌉', + 'tags': [ + 'at', + 'bridge', + 'night' + ], + 'shortcodes': [ + ':bridge_at_night:' + ] + }, + { + 'name': 'hot springs', + 'unicode': '2668', + 'emoji': 'โ™จ', + 'data': '♨', + 'tags': [ + 'hot', + 'hotsprings', + 'springs', + 'steaming' + ], + 'shortcodes': [ + ':hot_springs:' + ] + }, + { + 'name': 'carousel horse', + 'unicode': '1F3A0', + 'emoji': '๐ŸŽ ', + 'data': '🎠', + 'tags': [ + 'carousel', + 'entertainment', + 'horse' + ], + 'shortcodes': [ + ':carousel_horse:' + ] + }, + { + 'name': 'playground slide', + 'unicode': '1F6DD', + 'emoji': '๐Ÿ›', + 'data': '🛝', + 'tags': [ + 'amusement', + 'park', + 'play', + 'playground', + 'playing', + 'slide', + 'sliding', + 'theme' + ], + 'shortcodes': [ + ':playground_slide:' + ] + }, + { + 'name': 'ferris wheel', + 'unicode': '1F3A1', + 'emoji': '๐ŸŽก', + 'data': '🎡', + 'tags': [ + 'amusement', + 'ferris', + 'park', + 'theme', + 'wheel' + ], + 'shortcodes': [ + ':ferris_wheel:' + ] + }, + { + 'name': 'roller coaster', + 'unicode': '1F3A2', + 'emoji': '๐ŸŽข', + 'data': '🎢', + 'tags': [ + 'amusement', + 'coaster', + 'park', + 'roller', + 'theme' + ], + 'shortcodes': [ + ':roller_coaster:' + ] + }, + { + 'name': 'barber pole', + 'unicode': '1F488', + 'emoji': '๐Ÿ’ˆ', + 'data': '💈', + 'tags': [ + 'barber', + 'cut', + 'fresh', + 'haircut', + 'pole', + 'shave' + ], + 'shortcodes': [ + ':barber_pole:' + ] + }, + { + 'name': 'circus tent', + 'unicode': '1F3AA', + 'emoji': '๐ŸŽช', + 'data': '🎪', + 'tags': [ + 'circus', + 'tent' + ], + 'shortcodes': [ + ':circus_tent:' + ] + }, + { + 'name': 'locomotive', + 'unicode': '1F682', + 'emoji': '๐Ÿš‚', + 'data': '🚂', + 'tags': [ + 'caboose', + 'engine', + 'railway', + 'steam', + 'train', + 'trains', + 'travel' + ], + 'shortcodes': [ + ':locomotive:' + ] + }, + { + 'name': 'railway car', + 'unicode': '1F683', + 'emoji': '๐Ÿšƒ', + 'data': '🚃', + 'tags': [ + 'car', + 'electric', + 'railway', + 'train', + 'tram', + 'travel', + 'trolleybus' + ], + 'shortcodes': [ + ':railway_car:' + ] + }, + { + 'name': 'high-speed train', + 'unicode': '1F684', + 'emoji': '๐Ÿš„', + 'data': '🚄', + 'tags': [ + 'high-speed', + 'railway', + 'shinkansen', + 'speed', + 'train' + ], + 'shortcodes': [ + ':high-speed_train:' + ] + }, + { + 'name': 'bullet train', + 'unicode': '1F685', + 'emoji': '๐Ÿš…', + 'data': '🚅', + 'tags': [ + 'bullet', + 'high-speed', + 'nose', + 'railway', + 'shinkansen', + 'speed', + 'train', + 'travel' + ], + 'shortcodes': [ + ':bullet_train:' + ] + }, + { + 'name': 'train', + 'unicode': '1F686', + 'emoji': '๐Ÿš†', + 'data': '🚆', + 'tags': [ + 'arrived', + 'choo', + 'railway' + ], + 'shortcodes': [ + ':train:' + ] + }, + { + 'name': 'metro', + 'unicode': '1F687', + 'emoji': '๐Ÿš‡', + 'data': '🚇', + 'tags': [ + 'subway', + 'travel' + ], + 'shortcodes': [ + ':metro:' + ] + }, + { + 'name': 'light rail', + 'unicode': '1F688', + 'emoji': '๐Ÿšˆ', + 'data': '🚈', + 'tags': [ + 'arrived', + 'light', + 'monorail', + 'rail', + 'railway' + ], + 'shortcodes': [ + ':light_rail:' + ] + }, + { + 'name': 'station', + 'unicode': '1F689', + 'emoji': '๐Ÿš‰', + 'data': '🚉', + 'tags': [ + 'railway', + 'train' + ], + 'shortcodes': [ + ':station:' + ] + }, + { + 'name': 'tram', + 'unicode': '1F68A', + 'emoji': '๐ŸšŠ', + 'data': '🚊', + 'tags': [ + 'trolleybus' + ], + 'shortcodes': [ + ':tram:' + ] + }, + { + 'name': 'monorail', + 'unicode': '1F69D', + 'emoji': '๐Ÿš', + 'data': '🚝', + 'tags': [ + 'vehicle' + ], + 'shortcodes': [ + ':monorail:' + ] + }, + { + 'name': 'mountain railway', + 'unicode': '1F69E', + 'emoji': '๐Ÿšž', + 'data': '🚞', + 'tags': [ + 'car', + 'mountain', + 'railway', + 'trip' + ], + 'shortcodes': [ + ':mountain_railway:' + ] + }, + { + 'name': 'tram car', + 'unicode': '1F68B', + 'emoji': '๐Ÿš‹', + 'data': '🚋', + 'tags': [ + 'bus', + 'car', + 'tram', + 'trolley', + 'trolleybus' + ], + 'shortcodes': [ + ':tram_car:' + ] + }, + { + 'name': 'bus', + 'unicode': '1F68C', + 'emoji': '๐ŸšŒ', + 'data': '🚌', + 'tags': [ + 'school', + 'vehicle' + ], + 'shortcodes': [ + ':bus:' + ] + }, + { + 'name': 'oncoming bus', + 'unicode': '1F68D', + 'emoji': '๐Ÿš', + 'data': '🚍', + 'tags': [ + 'bus', + 'cars', + 'oncoming' + ], + 'shortcodes': [ + ':oncoming_bus:' + ] + }, + { + 'name': 'trolleybus', + 'unicode': '1F68E', + 'emoji': '๐ŸšŽ', + 'data': '🚎', + 'tags': [ + 'bus', + 'tram', + 'trolley' + ], + 'shortcodes': [ + ':trolleybus:' + ] + }, + { + 'name': 'minibus', + 'unicode': '1F690', + 'emoji': '๐Ÿš', + 'data': '🚐', + 'tags': [ + 'bus', + 'drive', + 'van', + 'vehicle' + ], + 'shortcodes': [ + ':minibus:' + ] + }, + { + 'name': 'ambulance', + 'unicode': '1F691', + 'emoji': '๐Ÿš‘', + 'data': '🚑', + 'tags': [ + 'emergency', + 'vehicle' + ], + 'shortcodes': [ + ':ambulance:' + ] + }, + { + 'name': 'fire engine', + 'unicode': '1F692', + 'emoji': '๐Ÿš’', + 'data': '🚒', + 'tags': [ + 'engine', + 'fire', + 'truck' + ], + 'shortcodes': [ + ':fire_engine:' + ] + }, + { + 'name': 'police car', + 'unicode': '1F693', + 'emoji': '๐Ÿš“', + 'data': '🚓', + 'tags': [ + '5โ€“0', + 'car', + 'cops', + 'patrol', + 'police' + ], + 'shortcodes': [ + ':police_car:' + ] + }, + { + 'name': 'oncoming police car', + 'unicode': '1F694', + 'emoji': '๐Ÿš”', + 'data': '🚔', + 'tags': [ + 'car', + 'oncoming', + 'police' + ], + 'shortcodes': [ + ':oncoming_police_car:' + ] + }, + { + 'name': 'taxi', + 'unicode': '1F695', + 'emoji': '๐Ÿš•', + 'data': '🚕', + 'tags': [ + 'cab', + 'cabbie', + 'car', + 'drive', + 'vehicle', + 'yellow' + ], + 'shortcodes': [ + ':taxi:' + ] + }, + { + 'name': 'oncoming taxi', + 'unicode': '1F696', + 'emoji': '๐Ÿš–', + 'data': '🚖', + 'tags': [ + 'cab', + 'cabbie', + 'cars', + 'drove', + 'hail', + 'oncoming', + 'taxi', + 'yellow' + ], + 'shortcodes': [ + ':oncoming_taxi:' + ] + }, + { + 'name': 'automobile', + 'unicode': '1F697', + 'emoji': '๐Ÿš—', + 'data': '🚗', + 'tags': [ + 'car', + 'driving', + 'vehicle' + ], + 'shortcodes': [ + ':automobile:' + ] + }, + { + 'name': 'oncoming automobile', + 'unicode': '1F698', + 'emoji': '๐Ÿš˜', + 'data': '🚘', + 'tags': [ + 'automobile', + 'car', + 'cars', + 'drove', + 'oncoming', + 'vehicle' + ], + 'shortcodes': [ + ':oncoming_automobile:' + ] + }, + { + 'name': 'sport utility vehicle', + 'unicode': '1F699', + 'emoji': '๐Ÿš™', + 'data': '🚙', + 'tags': [ + 'car', + 'drive', + 'recreational', + 'sport', + 'sportutility', + 'utility', + 'vehicle' + ], + 'shortcodes': [ + ':sport_utility_vehicle:' + ] + }, + { + 'name': 'pickup truck', + 'unicode': '1F6FB', + 'emoji': '๐Ÿ›ป', + 'data': '🛻', + 'tags': [ + 'automobile', + 'car', + 'flatbed', + 'pick-up', + 'pickup', + 'transportation', + 'truck' + ], + 'shortcodes': [ + ':pickup_truck:' + ] + }, + { + 'name': 'delivery truck', + 'unicode': '1F69A', + 'emoji': '๐Ÿšš', + 'data': '🚚', + 'tags': [ + 'car', + 'delivery', + 'drive', + 'truck', + 'vehicle' + ], + 'shortcodes': [ + ':delivery_truck:' + ] + }, + { + 'name': 'articulated lorry', + 'unicode': '1F69B', + 'emoji': '๐Ÿš›', + 'data': '🚛', + 'tags': [ + 'articulated', + 'car', + 'drive', + 'lorry', + 'move', + 'semi', + 'truck', + 'vehicle' + ], + 'shortcodes': [ + ':articulated_lorry:' + ] + }, + { + 'name': 'tractor', + 'unicode': '1F69C', + 'emoji': '๐Ÿšœ', + 'data': '🚜', + 'tags': [ + 'vehicle' + ], + 'shortcodes': [ + ':tractor:' + ] + }, + { + 'name': 'racing car', + 'unicode': '1F3CE', + 'emoji': '๐ŸŽ', + 'data': '🏎', + 'tags': [ + 'car', + 'racing', + 'zoom' + ], + 'shortcodes': [ + ':racing_car:' + ] + }, + { + 'name': 'motorcycle', + 'unicode': '1F3CD', + 'emoji': '๐Ÿ', + 'data': '🏍', + 'tags': [ + 'racing' + ], + 'shortcodes': [ + ':motorcycle:' + ] + }, + { + 'name': 'motor scooter', + 'unicode': '1F6F5', + 'emoji': '๐Ÿ›ต', + 'data': '🛵', + 'tags': [ + 'motor', + 'scooter' + ], + 'shortcodes': [ + ':motor_scooter:' + ] + }, + { + 'name': 'manual wheelchair', + 'unicode': '1F9BD', + 'emoji': '๐Ÿฆฝ', + 'data': '🦽', + 'tags': [ + 'accessibility', + 'manual', + 'wheelchair' + ], + 'shortcodes': [ + ':manual_wheelchair:' + ] + }, + { + 'name': 'motorized wheelchair', + 'unicode': '1F9BC', + 'emoji': '๐Ÿฆผ', + 'data': '🦼', + 'tags': [ + 'accessibility', + 'motorized', + 'wheelchair' + ], + 'shortcodes': [ + ':motorized_wheelchair:' + ] + }, + { + 'name': 'auto rickshaw', + 'unicode': '1F6FA', + 'emoji': '๐Ÿ›บ', + 'data': '🛺', + 'tags': [ + 'auto', + 'rickshaw', + 'tuk' + ], + 'shortcodes': [ + ':auto_rickshaw:' + ] + }, + { + 'name': 'bicycle', + 'unicode': '1F6B2', + 'emoji': '๐Ÿšฒ', + 'data': '🚲', + 'tags': [ + 'bike', + 'class', + 'cycle', + 'cycling', + 'cyclist', + 'gang', + 'ride', + 'spin', + 'spinning' + ], + 'shortcodes': [ + ':bicycle:' + ] + }, + { + 'name': 'kick scooter', + 'unicode': '1F6F4', + 'emoji': '๐Ÿ›ด', + 'data': '🛴', + 'tags': [ + 'kick', + 'scooter' + ], + 'shortcodes': [ + ':kick_scooter:' + ] + }, + { + 'name': 'skateboard', + 'unicode': '1F6F9', + 'emoji': '๐Ÿ›น', + 'data': '🛹', + 'tags': [ + 'board', + 'skate', + 'skater', + 'wheels' + ], + 'shortcodes': [ + ':skateboard:' + ] + }, + { + 'name': 'roller skate', + 'unicode': '1F6FC', + 'emoji': '๐Ÿ›ผ', + 'data': '🛼', + 'tags': [ + 'blades', + 'roller', + 'skate', + 'skates', + 'sport' + ], + 'shortcodes': [ + ':roller_skate:' + ] + }, + { + 'name': 'bus stop', + 'unicode': '1F68F', + 'emoji': '๐Ÿš', + 'data': '🚏', + 'tags': [ + 'bus', + 'busstop', + 'stop' + ], + 'shortcodes': [ + ':bus_stop:' + ] + }, + { + 'name': 'motorway', + 'unicode': '1F6E3', + 'emoji': '๐Ÿ›ฃ', + 'data': '🛣', + 'tags': [ + 'highway', + 'road' + ], + 'shortcodes': [ + ':motorway:' + ] + }, + { + 'name': 'railway track', + 'unicode': '1F6E4', + 'emoji': '๐Ÿ›ค', + 'data': '🛤', + 'tags': [ + 'railway', + 'track', + 'train' + ], + 'shortcodes': [ + ':railway_track:' + ] + }, + { + 'name': 'oil drum', + 'unicode': '1F6E2', + 'emoji': '๐Ÿ›ข', + 'data': '🛢', + 'tags': [ + 'drum', + 'oil' + ], + 'shortcodes': [ + ':oil_drum:' + ] + }, + { + 'name': 'fuel pump', + 'unicode': '26FD', + 'emoji': 'โ›ฝ', + 'data': '⛽', + 'tags': [ + 'diesel', + 'fuel', + 'fuelpump', + 'gas', + 'gasoline', + 'pump', + 'station' + ], + 'shortcodes': [ + ':fuel_pump:' + ] + }, + { + 'name': 'wheel', + 'unicode': '1F6DE', + 'emoji': '๐Ÿ›ž', + 'data': '🛞', + 'tags': [ + 'car', + 'circle', + 'tire', + 'turn', + 'vehicle' + ], + 'shortcodes': [ + ':wheel:' + ] + }, + { + 'name': 'police car light', + 'unicode': '1F6A8', + 'emoji': '๐Ÿšจ', + 'data': '🚨', + 'tags': [ + 'alarm', + 'alert', + 'beacon', + 'car', + 'emergency', + 'light', + 'police', + 'revolving', + 'siren' + ], + 'shortcodes': [ + ':police_car_light:' + ] + }, + { + 'name': 'horizontal traffic light', + 'unicode': '1F6A5', + 'emoji': '๐Ÿšฅ', + 'data': '🚥', + 'tags': [ + 'horizontal', + 'intersection', + 'light', + 'signal', + 'stop', + 'stoplight', + 'traffic' + ], + 'shortcodes': [ + ':horizontal_traffic_light:' + ] + }, + { + 'name': 'vertical traffic light', + 'unicode': '1F6A6', + 'emoji': '๐Ÿšฆ', + 'data': '🚦', + 'tags': [ + 'drove', + 'intersection', + 'light', + 'signal', + 'stop', + 'stoplight', + 'traffic', + 'vertical' + ], + 'shortcodes': [ + ':vertical_traffic_light:' + ] + }, + { + 'name': 'stop sign', + 'unicode': '1F6D1', + 'emoji': '๐Ÿ›‘', + 'data': '🛑', + 'tags': [ + 'octagonal', + 'sign', + 'stop' + ], + 'shortcodes': [ + ':stop_sign:' + ] + }, + { + 'name': 'construction', + 'unicode': '1F6A7', + 'emoji': '๐Ÿšง', + 'data': '🚧', + 'tags': [ + 'barrier' + ], + 'shortcodes': [ + ':construction:' + ] + }, + { + 'name': 'anchor', + 'unicode': '2693', + 'emoji': 'โš“', + 'data': '⚓', + 'tags': [ + 'ship', + 'tool' + ], + 'shortcodes': [ + ':anchor:' + ] + }, + { + 'name': 'ring buoy', + 'unicode': '1F6DF', + 'emoji': '๐Ÿ›Ÿ', + 'data': '🛟', + 'tags': [ + 'buoy', + 'float', + 'life', + 'lifesaver', + 'preserver', + 'rescue', + 'ring', + 'safety', + 'save', + 'saver', + 'swim' + ], + 'shortcodes': [ + ':ring_buoy:' + ] + }, + { + 'name': 'sailboat', + 'unicode': '26F5', + 'emoji': 'โ›ต', + 'data': '⛵', + 'tags': [ + 'boat', + 'resort', + 'sailing', + 'sea', + 'yacht' + ], + 'shortcodes': [ + ':sailboat:' + ] + }, + { + 'name': 'canoe', + 'unicode': '1F6F6', + 'emoji': '๐Ÿ›ถ', + 'data': '🛶', + 'tags': [ + 'boat' + ], + 'shortcodes': [ + ':canoe:' + ] + }, + { + 'name': 'speedboat', + 'unicode': '1F6A4', + 'emoji': '๐Ÿšค', + 'data': '🚤', + 'tags': [ + 'billionaire', + 'boat', + 'lake', + 'luxury', + 'millionaire', + 'summer', + 'travel' + ], + 'shortcodes': [ + ':speedboat:' + ] + }, + { + 'name': 'passenger ship', + 'unicode': '1F6F3', + 'emoji': '๐Ÿ›ณ', + 'data': '🛳', + 'tags': [ + 'passenger', + 'ship' + ], + 'shortcodes': [ + ':passenger_ship:' + ] + }, + { + 'name': 'ferry', + 'unicode': '26F4', + 'emoji': 'โ›ด', + 'data': '⛴', + 'tags': [ + 'boat', + 'passenger' + ], + 'shortcodes': [ + ':ferry:' + ] + }, + { + 'name': 'motor boat', + 'unicode': '1F6E5', + 'emoji': '๐Ÿ›ฅ', + 'data': '🛥', + 'tags': [ + 'boat', + 'motor', + 'motorboat' + ], + 'shortcodes': [ + ':motor_boat:' + ] + }, + { + 'name': 'ship', + 'unicode': '1F6A2', + 'emoji': '๐Ÿšข', + 'data': '🚢', + 'tags': [ + 'boat', + 'passenger', + 'travel' + ], + 'shortcodes': [ + ':ship:' + ] + }, + { + 'name': 'airplane', + 'unicode': '2708', + 'emoji': 'โœˆ', + 'data': '✈', + 'tags': [ + 'aeroplane', + 'fly', + 'flying', + 'jet', + 'plane', + 'travel' + ], + 'shortcodes': [ + ':airplane:' + ] + }, + { + 'name': 'small airplane', + 'unicode': '1F6E9', + 'emoji': '๐Ÿ›ฉ', + 'data': '🛩', + 'tags': [ + 'aeroplane', + 'airplane', + 'plane', + 'small' + ], + 'shortcodes': [ + ':small_airplane:' + ] + }, + { + 'name': 'airplane departure', + 'unicode': '1F6EB', + 'emoji': '๐Ÿ›ซ', + 'data': '🛫', + 'tags': [ + 'aeroplane', + 'airplane', + 'check-in', + 'departure', + 'departures', + 'plane' + ], + 'shortcodes': [ + ':airplane_departure:' + ] + }, + { + 'name': 'airplane arrival', + 'unicode': '1F6EC', + 'emoji': '๐Ÿ›ฌ', + 'data': '🛬', + 'tags': [ + 'aeroplane', + 'airplane', + 'arrival', + 'arrivals', + 'arriving', + 'landing', + 'plane' + ], + 'shortcodes': [ + ':airplane_arrival:' + ] + }, + { + 'name': 'parachute', + 'unicode': '1FA82', + 'emoji': '๐Ÿช‚', + 'data': '🪂', + 'tags': [ + 'hang-glide', + 'parasail', + 'skydive' + ], + 'shortcodes': [ + ':parachute:' + ] + }, + { + 'name': 'seat', + 'unicode': '1F4BA', + 'emoji': '๐Ÿ’บ', + 'data': '💺', + 'tags': [ + 'chair' + ], + 'shortcodes': [ + ':seat:' + ] + }, + { + 'name': 'helicopter', + 'unicode': '1F681', + 'emoji': '๐Ÿš', + 'data': '🚁', + 'tags': [ + 'copter', + 'roflcopter', + 'travel', + 'vehicle' + ], + 'shortcodes': [ + ':helicopter:' + ] + }, + { + 'name': 'suspension railway', + 'unicode': '1F69F', + 'emoji': '๐ŸšŸ', + 'data': '🚟', + 'tags': [ + 'railway', + 'suspension' + ], + 'shortcodes': [ + ':suspension_railway:' + ] + }, + { + 'name': 'mountain cableway', + 'unicode': '1F6A0', + 'emoji': '๐Ÿš ', + 'data': '🚠', + 'tags': [ + 'cable', + 'cableway', + 'gondola', + 'lift', + 'mountain', + 'ski' + ], + 'shortcodes': [ + ':mountain_cableway:' + ] + }, + { + 'name': 'aerial tramway', + 'unicode': '1F6A1', + 'emoji': '๐Ÿšก', + 'data': '🚡', + 'tags': [ + 'aerial', + 'cable', + 'car', + 'gondola', + 'ropeway', + 'tramway' + ], + 'shortcodes': [ + ':aerial_tramway:' + ] + }, + { + 'name': 'satellite', + 'unicode': '1F6F0', + 'emoji': '๐Ÿ›ฐ', + 'data': '🛰', + 'tags': [ + 'space' + ], + 'shortcodes': [ + ':satellite:' + ] + }, + { + 'name': 'rocket', + 'unicode': '1F680', + 'emoji': '๐Ÿš€', + 'data': '🚀', + 'tags': [ + 'launch', + 'rockets', + 'space', + 'travel' + ], + 'shortcodes': [ + ':rocket:' + ] + }, + { + 'name': 'flying saucer', + 'unicode': '1F6F8', + 'emoji': '๐Ÿ›ธ', + 'data': '🛸', + 'tags': [ + 'aliens', + 'extra', + 'flying', + 'saucer', + 'terrestrial', + 'ufo' + ], + 'shortcodes': [ + ':flying_saucer:' + ] + }, + { + 'name': 'bellhop bell', + 'unicode': '1F6CE', + 'emoji': '๐Ÿ›Ž', + 'data': '🛎', + 'tags': [ + 'bell', + 'bellhop', + 'hotel' + ], + 'shortcodes': [ + ':bellhop_bell:' + ] + }, + { + 'name': 'luggage', + 'unicode': '1F9F3', + 'emoji': '๐Ÿงณ', + 'data': '🧳', + 'tags': [ + 'bag', + 'packing', + 'roller', + 'suitcase', + 'travel' + ], + 'shortcodes': [ + ':luggage:' + ] + }, + { + 'name': 'hourglass done', + 'unicode': '231B', + 'emoji': 'โŒ›', + 'data': '⌛', + 'tags': [ + 'done', + 'hourglass', + 'sand', + 'time', + 'timer' + ], + 'shortcodes': [ + ':hourglass_done:' + ] + }, + { + 'name': 'hourglass not done', + 'unicode': '23F3', + 'emoji': 'โณ', + 'data': '⏳', + 'tags': [ + 'done', + 'flowing', + 'hourglass', + 'hours', + 'not', + 'sand', + 'timer', + 'waiting', + 'yolo' + ], + 'shortcodes': [ + ':hourglass_not_done:' + ] + }, + { + 'name': 'watch', + 'unicode': '231A', + 'emoji': 'โŒš', + 'data': '⌚', + 'tags': [ + 'clock', + 'time' + ], + 'shortcodes': [ + ':watch:' + ] + }, + { + 'name': 'alarm clock', + 'unicode': '23F0', + 'emoji': 'โฐ', + 'data': '⏰', + 'tags': [ + 'alarm', + 'clock', + 'hours', + 'hrs', + 'late', + 'time', + 'waiting' + ], + 'shortcodes': [ + ':alarm_clock:' + ] + }, + { + 'name': 'stopwatch', + 'unicode': '23F1', + 'emoji': 'โฑ', + 'data': '⏱', + 'tags': [ + 'clock', + 'time' + ], + 'shortcodes': [ + ':stopwatch:' + ] + }, + { + 'name': 'timer clock', + 'unicode': '23F2', + 'emoji': 'โฒ', + 'data': '⏲', + 'tags': [ + 'clock', + 'timer' + ], + 'shortcodes': [ + ':timer_clock:' + ] + }, + { + 'name': 'mantelpiece clock', + 'unicode': '1F570', + 'emoji': '๐Ÿ•ฐ', + 'data': '🕰', + 'tags': [ + 'clock', + 'mantelpiece', + 'time' + ], + 'shortcodes': [ + ':mantelpiece_clock:' + ] + }, + { + 'name': 'twelve oโ€™clock', + 'unicode': '1F55B', + 'emoji': '๐Ÿ•›', + 'data': '🕛', + 'tags': [ + '12', + '12:00', + 'clock', + 'oโ€™clock', + 'time', + 'twelve' + ], + 'shortcodes': [ + ':twelve_oโ€™clock:' + ] + }, + { + 'name': 'twelve-thirty', + 'unicode': '1F567', + 'emoji': '๐Ÿ•ง', + 'data': '🕧', + 'tags': [ + '12', + '12:30', + '30', + 'clock', + 'thirty', + 'time', + 'twelve' + ], + 'shortcodes': [ + ':twelve-thirty:' + ] + }, + { + 'name': 'one oโ€™clock', + 'unicode': '1F550', + 'emoji': '๐Ÿ•', + 'data': '🕐', + 'tags': [ + '1', + '1:00', + 'clock', + 'one', + 'oโ€™clock', + 'time' + ], + 'shortcodes': [ + ':one_oโ€™clock:' + ] + }, + { + 'name': 'one-thirty', + 'unicode': '1F55C', + 'emoji': '๐Ÿ•œ', + 'data': '🕜', + 'tags': [ + '1', + '1:30', + '30', + 'clock', + 'one', + 'thirty', + 'time' + ], + 'shortcodes': [ + ':one-thirty:' + ] + }, + { + 'name': 'two oโ€™clock', + 'unicode': '1F551', + 'emoji': '๐Ÿ•‘', + 'data': '🕑', + 'tags': [ + '2', + '2:00', + 'clock', + 'oโ€™clock', + 'time', + 'two' + ], + 'shortcodes': [ + ':two_oโ€™clock:' + ] + }, + { + 'name': 'two-thirty', + 'unicode': '1F55D', + 'emoji': '๐Ÿ•', + 'data': '🕝', + 'tags': [ + '2', + '2:30', + '30', + 'clock', + 'thirty', + 'time', + 'two' + ], + 'shortcodes': [ + ':two-thirty:' + ] + }, + { + 'name': 'three oโ€™clock', + 'unicode': '1F552', + 'emoji': '๐Ÿ•’', + 'data': '🕒', + 'tags': [ + '3', + '3:00', + 'clock', + 'oโ€™clock', + 'three', + 'time' + ], + 'shortcodes': [ + ':three_oโ€™clock:' + ] + }, + { + 'name': 'three-thirty', + 'unicode': '1F55E', + 'emoji': '๐Ÿ•ž', + 'data': '🕞', + 'tags': [ + '3', + '30', + '3:30', + 'clock', + 'thirty', + 'three', + 'time' + ], + 'shortcodes': [ + ':three-thirty:' + ] + }, + { + 'name': 'four oโ€™clock', + 'unicode': '1F553', + 'emoji': '๐Ÿ•“', + 'data': '🕓', + 'tags': [ + '4', + '4:00', + 'clock', + 'four', + 'oโ€™clock', + 'time' + ], + 'shortcodes': [ + ':four_oโ€™clock:' + ] + }, + { + 'name': 'four-thirty', + 'unicode': '1F55F', + 'emoji': '๐Ÿ•Ÿ', + 'data': '🕟', + 'tags': [ + '30', + '4', + '4:30', + 'clock', + 'four', + 'thirty', + 'time' + ], + 'shortcodes': [ + ':four-thirty:' + ] + }, + { + 'name': 'five oโ€™clock', + 'unicode': '1F554', + 'emoji': '๐Ÿ•”', + 'data': '🕔', + 'tags': [ + '5', + '5:00', + 'clock', + 'five', + 'oโ€™clock', + 'time' + ], + 'shortcodes': [ + ':five_oโ€™clock:' + ] + }, + { + 'name': 'five-thirty', + 'unicode': '1F560', + 'emoji': '๐Ÿ• ', + 'data': '🕠', + 'tags': [ + '30', + '5', + '5:30', + 'clock', + 'five', + 'thirty', + 'time' + ], + 'shortcodes': [ + ':five-thirty:' + ] + }, + { + 'name': 'six oโ€™clock', + 'unicode': '1F555', + 'emoji': '๐Ÿ••', + 'data': '🕕', + 'tags': [ + '6', + '6:00', + 'clock', + 'oโ€™clock', + 'six', + 'time' + ], + 'shortcodes': [ + ':six_oโ€™clock:' + ] + }, + { + 'name': 'six-thirty', + 'unicode': '1F561', + 'emoji': '๐Ÿ•ก', + 'data': '🕡', + 'tags': [ + '30', + '6', + '6:30', + 'clock', + 'six', + 'thirty' + ], + 'shortcodes': [ + ':six-thirty:' + ] + }, + { + 'name': 'seven oโ€™clock', + 'unicode': '1F556', + 'emoji': '๐Ÿ•–', + 'data': '🕖', + 'tags': [ + '0', + '7', + '7:00', + 'clock', + 'oโ€™clock', + 'seven' + ], + 'shortcodes': [ + ':seven_oโ€™clock:' + ] + }, + { + 'name': 'seven-thirty', + 'unicode': '1F562', + 'emoji': '๐Ÿ•ข', + 'data': '🕢', + 'tags': [ + '30', + '7', + '7:30', + 'clock', + 'seven', + 'thirty' + ], + 'shortcodes': [ + ':seven-thirty:' + ] + }, + { + 'name': 'eight oโ€™clock', + 'unicode': '1F557', + 'emoji': '๐Ÿ•—', + 'data': '🕗', + 'tags': [ + '8', + '8:00', + 'clock', + 'eight', + 'oโ€™clock', + 'time' + ], + 'shortcodes': [ + ':eight_oโ€™clock:' + ] + }, + { + 'name': 'eight-thirty', + 'unicode': '1F563', + 'emoji': '๐Ÿ•ฃ', + 'data': '🕣', + 'tags': [ + '30', + '8', + '8:30', + 'clock', + 'eight', + 'thirty', + 'time' + ], + 'shortcodes': [ + ':eight-thirty:' + ] + }, + { + 'name': 'nine oโ€™clock', + 'unicode': '1F558', + 'emoji': '๐Ÿ•˜', + 'data': '🕘', + 'tags': [ + '9', + '9:00', + 'clock', + 'nine', + 'oโ€™clock', + 'time' + ], + 'shortcodes': [ + ':nine_oโ€™clock:' + ] + }, + { + 'name': 'nine-thirty', + 'unicode': '1F564', + 'emoji': '๐Ÿ•ค', + 'data': '🕤', + 'tags': [ + '30', + '9', + '9:30', + 'clock', + 'nine', + 'thirty', + 'time' + ], + 'shortcodes': [ + ':nine-thirty:' + ] + }, + { + 'name': 'ten oโ€™clock', + 'unicode': '1F559', + 'emoji': '๐Ÿ•™', + 'data': '🕙', + 'tags': [ + '0', + '10', + '10:00', + 'clock', + 'oโ€™clock', + 'ten' + ], + 'shortcodes': [ + ':ten_oโ€™clock:' + ] + }, + { + 'name': 'ten-thirty', + 'unicode': '1F565', + 'emoji': '๐Ÿ•ฅ', + 'data': '🕥', + 'tags': [ + '10', + '10:30', + '30', + 'clock', + 'ten', + 'thirty', + 'time' + ], + 'shortcodes': [ + ':ten-thirty:' + ] + }, + { + 'name': 'eleven oโ€™clock', + 'unicode': '1F55A', + 'emoji': '๐Ÿ•š', + 'data': '🕚', + 'tags': [ + '11', + '11:00', + 'clock', + 'eleven', + 'oโ€™clock', + 'time' + ], + 'shortcodes': [ + ':eleven_oโ€™clock:' + ] + }, + { + 'name': 'eleven-thirty', + 'unicode': '1F566', + 'emoji': '๐Ÿ•ฆ', + 'data': '🕦', + 'tags': [ + '11', + '11:30', + '30', + 'clock', + 'eleven', + 'thirty', + 'time' + ], + 'shortcodes': [ + ':eleven-thirty:' + ] + }, + { + 'name': 'new moon', + 'unicode': '1F311', + 'emoji': '๐ŸŒ‘', + 'data': '🌑', + 'tags': [ + 'dark', + 'moon', + 'new', + 'space' + ], + 'shortcodes': [ + ':new_moon:' + ] + }, + { + 'name': 'waxing crescent moon', + 'unicode': '1F312', + 'emoji': '๐ŸŒ’', + 'data': '🌒', + 'tags': [ + 'crescent', + 'dreams', + 'moon', + 'space', + 'waxing' + ], + 'shortcodes': [ + ':waxing_crescent_moon:' + ] + }, + { + 'name': 'first quarter moon', + 'unicode': '1F313', + 'emoji': '๐ŸŒ“', + 'data': '🌓', + 'tags': [ + 'first', + 'moon', + 'quarter', + 'space' + ], + 'shortcodes': [ + ':first_quarter_moon:' + ] + }, + { + 'name': 'waxing gibbous moon', + 'unicode': '1F314', + 'emoji': '๐ŸŒ”', + 'data': '🌔', + 'tags': [ + 'gibbous', + 'moon', + 'space', + 'waxing' + ], + 'shortcodes': [ + ':waxing_gibbous_moon:' + ] + }, + { + 'name': 'full moon', + 'unicode': '1F315', + 'emoji': '๐ŸŒ•', + 'data': '🌕', + 'tags': [ + 'full', + 'moon', + 'space' + ], + 'shortcodes': [ + ':full_moon:' + ] + }, + { + 'name': 'waning gibbous moon', + 'unicode': '1F316', + 'emoji': '๐ŸŒ–', + 'data': '🌖', + 'tags': [ + 'gibbous', + 'moon', + 'space', + 'waning' + ], + 'shortcodes': [ + ':waning_gibbous_moon:' + ] + }, + { + 'name': 'last quarter moon', + 'unicode': '1F317', + 'emoji': '๐ŸŒ—', + 'data': '🌗', + 'tags': [ + 'last', + 'moon', + 'quarter', + 'space' + ], + 'shortcodes': [ + ':last_quarter_moon:' + ] + }, + { + 'name': 'waning crescent moon', + 'unicode': '1F318', + 'emoji': '๐ŸŒ˜', + 'data': '🌘', + 'tags': [ + 'crescent', + 'moon', + 'space', + 'waning' + ], + 'shortcodes': [ + ':waning_crescent_moon:' + ] + }, + { + 'name': 'crescent moon', + 'unicode': '1F319', + 'emoji': '๐ŸŒ™', + 'data': '🌙', + 'tags': [ + 'crescent', + 'moon', + 'ramadan', + 'space' + ], + 'shortcodes': [ + ':crescent_moon:' + ] + }, + { + 'name': 'new moon face', + 'unicode': '1F31A', + 'emoji': '๐ŸŒš', + 'data': '🌚', + 'tags': [ + 'face', + 'moon', + 'new', + 'space' + ], + 'shortcodes': [ + ':new_moon_face:' + ] + }, + { + 'name': 'first quarter moon face', + 'unicode': '1F31B', + 'emoji': '๐ŸŒ›', + 'data': '🌛', + 'tags': [ + 'face', + 'first', + 'moon', + 'quarter', + 'space' + ], + 'shortcodes': [ + ':first_quarter_moon_face:' + ] + }, + { + 'name': 'last quarter moon face', + 'unicode': '1F31C', + 'emoji': '๐ŸŒœ', + 'data': '🌜', + 'tags': [ + 'dreams', + 'face', + 'last', + 'moon', + 'quarter' + ], + 'shortcodes': [ + ':last_quarter_moon_face:' + ] + }, + { + 'name': 'thermometer', + 'unicode': '1F321', + 'emoji': '๐ŸŒก', + 'data': '🌡', + 'tags': [ + 'weather' + ], + 'shortcodes': [ + ':thermometer:' + ] + }, + { + 'name': 'sun', + 'unicode': '2600', + 'emoji': 'โ˜€', + 'data': '☀', + 'tags': [ + 'bright', + 'rays', + 'space', + 'sunny', + 'weather' + ], + 'shortcodes': [ + ':sun:' + ] + }, + { + 'name': 'full moon face', + 'unicode': '1F31D', + 'emoji': '๐ŸŒ', + 'data': '🌝', + 'tags': [ + 'bright', + 'face', + 'full', + 'moon' + ], + 'shortcodes': [ + ':full_moon_face:' + ] + }, + { + 'name': 'sun with face', + 'unicode': '1F31E', + 'emoji': '๐ŸŒž', + 'data': '🌞', + 'tags': [ + 'beach', + 'bright', + 'day', + 'face', + 'heat', + 'shine', + 'sun', + 'sunny', + 'sunshine', + 'weather' + ], + 'shortcodes': [ + ':sun_with_face:' + ] + }, + { + 'name': 'ringed planet', + 'unicode': '1FA90', + 'emoji': '๐Ÿช', + 'data': '🪐', + 'tags': [ + 'planet', + 'ringed', + 'saturn', + 'saturnine' + ], + 'shortcodes': [ + ':ringed_planet:' + ] + }, + { + 'name': 'star', + 'unicode': '2B50', + 'emoji': 'โญ', + 'data': '⭐', + 'tags': [ + 'astronomy', + 'medium', + 'stars', + 'white' + ], + 'shortcodes': [ + ':star:' + ] + }, + { + 'name': 'glowing star', + 'unicode': '1F31F', + 'emoji': '๐ŸŒŸ', + 'data': '🌟', + 'tags': [ + 'glittery', + 'glow', + 'glowing', + 'night', + 'shining', + 'sparkle', + 'star', + 'win' + ], + 'shortcodes': [ + ':glowing_star:' + ] + }, + { + 'name': 'shooting star', + 'unicode': '1F320', + 'emoji': '๐ŸŒ ', + 'data': '🌠', + 'tags': [ + 'falling', + 'night', + 'shooting', + 'space', + 'star' + ], + 'shortcodes': [ + ':shooting_star:' + ] + }, + { + 'name': 'milky way', + 'unicode': '1F30C', + 'emoji': '๐ŸŒŒ', + 'data': '🌌', + 'tags': [ + 'milky', + 'space', + 'way' + ], + 'shortcodes': [ + ':milky_way:' + ] + }, + { + 'name': 'cloud', + 'unicode': '2601', + 'emoji': 'โ˜', + 'data': '☁', + 'tags': [ + 'weather' + ], + 'shortcodes': [ + ':cloud:' + ] + }, + { + 'name': 'sun behind cloud', + 'unicode': '26C5', + 'emoji': 'โ›…', + 'data': '⛅', + 'tags': [ + 'behind', + 'cloud', + 'cloudy', + 'sun', + 'weather' + ], + 'shortcodes': [ + ':sun_behind_cloud:' + ] + }, + { + 'name': 'cloud with lightning and rain', + 'unicode': '26C8', + 'emoji': 'โ›ˆ', + 'data': '⛈', + 'tags': [ + 'cloud', + 'lightning', + 'rain', + 'thunder', + 'thunderstorm' + ], + 'shortcodes': [ + ':cloud_with_lightning_and_rain:' + ] + }, + { + 'name': 'sun behind small cloud', + 'unicode': '1F324', + 'emoji': '๐ŸŒค', + 'data': '🌤', + 'tags': [ + 'behind', + 'cloud', + 'sun', + 'weather' + ], + 'shortcodes': [ + ':sun_behind_small_cloud:' + ] + }, + { + 'name': 'sun behind large cloud', + 'unicode': '1F325', + 'emoji': '๐ŸŒฅ', + 'data': '🌥', + 'tags': [ + 'behind', + 'cloud', + 'sun', + 'weather' + ], + 'shortcodes': [ + ':sun_behind_large_cloud:' + ] + }, + { + 'name': 'sun behind rain cloud', + 'unicode': '1F326', + 'emoji': '๐ŸŒฆ', + 'data': '🌦', + 'tags': [ + 'behind', + 'cloud', + 'rain', + 'sun', + 'weather' + ], + 'shortcodes': [ + ':sun_behind_rain_cloud:' + ] + }, + { + 'name': 'cloud with rain', + 'unicode': '1F327', + 'emoji': '๐ŸŒง', + 'data': '🌧', + 'tags': [ + 'cloud', + 'rain', + 'weather' + ], + 'shortcodes': [ + ':cloud_with_rain:' + ] + }, + { + 'name': 'cloud with snow', + 'unicode': '1F328', + 'emoji': '๐ŸŒจ', + 'data': '🌨', + 'tags': [ + 'cloud', + 'cold', + 'snow', + 'weather' + ], + 'shortcodes': [ + ':cloud_with_snow:' + ] + }, + { + 'name': 'cloud with lightning', + 'unicode': '1F329', + 'emoji': '๐ŸŒฉ', + 'data': '🌩', + 'tags': [ + 'cloud', + 'lightning', + 'weather' + ], + 'shortcodes': [ + ':cloud_with_lightning:' + ] + }, + { + 'name': 'tornado', + 'unicode': '1F32A', + 'emoji': '๐ŸŒช', + 'data': '🌪', + 'tags': [ + 'cloud', + 'weather', + 'whirlwind' + ], + 'shortcodes': [ + ':tornado:' + ] + }, + { + 'name': 'fog', + 'unicode': '1F32B', + 'emoji': '๐ŸŒซ', + 'data': '🌫', + 'tags': [ + 'cloud', + 'weather' + ], + 'shortcodes': [ + ':fog:' + ] + }, + { + 'name': 'wind face', + 'unicode': '1F32C', + 'emoji': '๐ŸŒฌ', + 'data': '🌬', + 'tags': [ + 'blow', + 'cloud', + 'face', + 'wind' + ], + 'shortcodes': [ + ':wind_face:' + ] + }, + { + 'name': 'cyclone', + 'unicode': '1F300', + 'emoji': '๐ŸŒ€', + 'data': '🌀', + 'tags': [ + 'dizzy', + 'hurricane', + 'twister', + 'typhoon', + 'weather' + ], + 'shortcodes': [ + ':cyclone:' + ] + }, + { + 'name': 'rainbow', + 'unicode': '1F308', + 'emoji': '๐ŸŒˆ', + 'data': '🌈', + 'tags': [ + 'gay', + 'genderqueer', + 'glbt', + 'glbtq', + 'lesbian', + 'lgbt', + 'lgbtq', + 'lgbtqia', + 'nature', + 'pride', + 'queer', + 'rain', + 'trans', + 'transgender', + 'weather' + ], + 'shortcodes': [ + ':rainbow:' + ] + }, + { + 'name': 'closed umbrella', + 'unicode': '1F302', + 'emoji': '๐ŸŒ‚', + 'data': '🌂', + 'tags': [ + 'closed', + 'clothing', + 'rain', + 'umbrella' + ], + 'shortcodes': [ + ':closed_umbrella:' + ] + }, + { + 'name': 'umbrella', + 'unicode': '2602', + 'emoji': 'โ˜‚', + 'data': '☂', + 'tags': [ + 'clothing', + 'rain' + ], + 'shortcodes': [ + ':umbrella:' + ] + }, + { + 'name': 'umbrella with rain drops', + 'unicode': '2614', + 'emoji': 'โ˜”', + 'data': '☔', + 'tags': [ + 'clothing', + 'drop', + 'drops', + 'rain', + 'umbrella', + 'weather' + ], + 'shortcodes': [ + ':umbrella_with_rain_drops:' + ] + }, + { + 'name': 'umbrella on ground', + 'unicode': '26F1', + 'emoji': 'โ›ฑ', + 'data': '⛱', + 'tags': [ + 'ground', + 'rain', + 'sun', + 'umbrella' + ], + 'shortcodes': [ + ':umbrella_on_ground:' + ] + }, + { + 'name': 'high voltage', + 'unicode': '26A1', + 'emoji': 'โšก', + 'data': '⚡', + 'tags': [ + 'danger', + 'electric', + 'electricity', + 'high', + 'lightning', + 'nature', + 'thunder', + 'thunderbolt', + 'voltage', + 'zap' + ], + 'shortcodes': [ + ':high_voltage:' + ] + }, + { + 'name': 'snowflake', + 'unicode': '2744', + 'emoji': 'โ„', + 'data': '❄', + 'tags': [ + 'cold', + 'snow', + 'weather' + ], + 'shortcodes': [ + ':snowflake:' + ] + }, + { + 'name': 'snowman', + 'unicode': '2603', + 'emoji': 'โ˜ƒ', + 'data': '☃', + 'tags': [ + 'cold', + 'man', + 'snow' + ], + 'shortcodes': [ + ':snowman:' + ] + }, + { + 'name': 'snowman without snow', + 'unicode': '26C4', + 'emoji': 'โ›„', + 'data': '⛄', + 'tags': [ + 'cold', + 'man', + 'snow', + 'snowman' + ], + 'shortcodes': [ + ':snowman_without_snow:' + ] + }, + { + 'name': 'comet', + 'unicode': '2604', + 'emoji': 'โ˜„', + 'data': '☄', + 'tags': [ + 'space' + ], + 'shortcodes': [ + ':comet:' + ] + }, + { + 'name': 'fire', + 'unicode': '1F525', + 'emoji': '๐Ÿ”ฅ', + 'data': '🔥', + 'tags': [ + 'af', + 'burn', + 'flame', + 'hot', + 'lit', + 'litaf', + 'tool' + ], + 'shortcodes': [ + ':fire:' + ] + }, + { + 'name': 'droplet', + 'unicode': '1F4A7', + 'emoji': '๐Ÿ’ง', + 'data': '💧', + 'tags': [ + 'cold', + 'comic', + 'drop', + 'nature', + 'sad', + 'sweat', + 'tear', + 'water', + 'weather' + ], + 'shortcodes': [ + ':droplet:' + ] + }, + { + 'name': 'water wave', + 'unicode': '1F30A', + 'emoji': '๐ŸŒŠ', + 'data': '🌊', + 'tags': [ + 'nature', + 'ocean', + 'surf', + 'surfer', + 'surfing', + 'water', + 'wave' + ], + 'shortcodes': [ + ':water_wave:' + ] + } + ] + }, + { + 'name': 'objects', + 'iconClass': 'fas fa-lightbulb', + 'emojis': [ + { + 'name': 'glasses', + 'unicode': '1F453', + 'emoji': '๐Ÿ‘“', + 'data': '👓', + 'tags': [ + 'clothing', + 'eye', + 'eyeglasses', + 'eyewear' + ], + 'shortcodes': [ + ':glasses:' + ] + }, + { + 'name': 'sunglasses', + 'unicode': '1F576', + 'emoji': '๐Ÿ•ถ', + 'data': '🕶', + 'tags': [ + 'dark', + 'eye', + 'eyewear', + 'glasses' + ], + 'shortcodes': [ + ':sunglasses:' + ] + }, + { + 'name': 'goggles', + 'unicode': '1F97D', + 'emoji': '๐Ÿฅฝ', + 'data': '🥽', + 'tags': [ + 'dive', + 'eye', + 'protection', + 'scuba', + 'swimming', + 'welding' + ], + 'shortcodes': [ + ':goggles:' + ] + }, + { + 'name': 'lab coat', + 'unicode': '1F97C', + 'emoji': '๐Ÿฅผ', + 'data': '🥼', + 'tags': [ + 'clothes', + 'coat', + 'doctor', + 'dr', + 'experiment', + 'jacket', + 'lab', + 'scientist', + 'white' + ], + 'shortcodes': [ + ':lab_coat:' + ] + }, + { + 'name': 'safety vest', + 'unicode': '1F9BA', + 'emoji': '๐Ÿฆบ', + 'data': '🦺', + 'tags': [ + 'emergency', + 'safety', + 'vest' + ], + 'shortcodes': [ + ':safety_vest:' + ] + }, + { + 'name': 'necktie', + 'unicode': '1F454', + 'emoji': '๐Ÿ‘”', + 'data': '👔', + 'tags': [ + 'clothing', + 'employed', + 'serious', + 'shirt', + 'tie' + ], + 'shortcodes': [ + ':necktie:' + ] + }, + { + 'name': 't-shirt', + 'unicode': '1F455', + 'emoji': '๐Ÿ‘•', + 'data': '👕', + 'tags': [ + 'blue', + 'casual', + 'clothes', + 'clothing', + 'collar', + 'dressed', + 'shirt', + 'shopping', + 'tshirt', + 'weekend' + ], + 'shortcodes': [ + ':t-shirt:' + ] + }, + { + 'name': 'jeans', + 'unicode': '1F456', + 'emoji': '๐Ÿ‘–', + 'data': '👖', + 'tags': [ + 'blue', + 'casual', + 'clothes', + 'clothing', + 'denim', + 'dressed', + 'pants', + 'shopping', + 'trousers', + 'weekend' + ], + 'shortcodes': [ + ':jeans:' + ] + }, + { + 'name': 'scarf', + 'unicode': '1F9E3', + 'emoji': '๐Ÿงฃ', + 'data': '🧣', + 'tags': [ + 'bundle', + 'cold', + 'neck', + 'up' + ], + 'shortcodes': [ + ':scarf:' + ] + }, + { + 'name': 'gloves', + 'unicode': '1F9E4', + 'emoji': '๐Ÿงค', + 'data': '🧤', + 'tags': [ + 'hand' + ], + 'shortcodes': [ + ':gloves:' + ] + }, + { + 'name': 'coat', + 'unicode': '1F9E5', + 'emoji': '๐Ÿงฅ', + 'data': '🧥', + 'tags': [ + 'brr', + 'bundle', + 'cold', + 'jacket', + 'up' + ], + 'shortcodes': [ + ':coat:' + ] + }, + { + 'name': 'socks', + 'unicode': '1F9E6', + 'emoji': '๐Ÿงฆ', + 'data': '🧦', + 'tags': [ + 'stocking' + ], + 'shortcodes': [ + ':socks:' + ] + }, + { + 'name': 'dress', + 'unicode': '1F457', + 'emoji': '๐Ÿ‘—', + 'data': '👗', + 'tags': [ + 'clothes', + 'clothing', + 'dressed', + 'fancy', + 'shopping' + ], + 'shortcodes': [ + ':dress:' + ] + }, + { + 'name': 'kimono', + 'unicode': '1F458', + 'emoji': '๐Ÿ‘˜', + 'data': '👘', + 'tags': [ + 'clothing', + 'comfortable' + ], + 'shortcodes': [ + ':kimono:' + ] + }, + { + 'name': 'sari', + 'unicode': '1F97B', + 'emoji': '๐Ÿฅป', + 'data': '🥻', + 'tags': [ + 'clothing', + 'dress' + ], + 'shortcodes': [ + ':sari:' + ] + }, + { + 'name': 'one-piece swimsuit', + 'unicode': '1FA71', + 'emoji': '๐Ÿฉฑ', + 'data': '🩱', + 'tags': [ + 'bathing', + 'one-piece', + 'suit', + 'swimsuit' + ], + 'shortcodes': [ + ':one-piece_swimsuit:' + ] + }, + { + 'name': 'briefs', + 'unicode': '1FA72', + 'emoji': '๐Ÿฉฒ', + 'data': '🩲', + 'tags': [ + 'bathing', + 'one-piece', + 'suit', + 'swimsuit', + 'underwear' + ], + 'shortcodes': [ + ':briefs:' + ] + }, + { + 'name': 'shorts', + 'unicode': '1FA73', + 'emoji': '๐Ÿฉณ', + 'data': '🩳', + 'tags': [ + 'bathing', + 'pants', + 'suit', + 'swimsuit', + 'underwear' + ], + 'shortcodes': [ + ':shorts:' + ] + }, + { + 'name': 'bikini', + 'unicode': '1F459', + 'emoji': '๐Ÿ‘™', + 'data': '👙', + 'tags': [ + 'bathing', + 'beach', + 'clothing', + 'pool', + 'suit', + 'swim' + ], + 'shortcodes': [ + ':bikini:' + ] + }, + { + 'name': 'womanโ€™s clothes', + 'unicode': '1F45A', + 'emoji': '๐Ÿ‘š', + 'data': '👚', + 'tags': [ + 'blouse', + 'clothes', + 'clothing', + 'collar', + 'dress', + 'dressed', + 'lady', + 'shirt', + 'shopping', + 'woman', + 'womanโ€™s' + ], + 'shortcodes': [ + ':womanโ€™s_clothes:' + ] + }, + { + 'name': 'folding hand fan', + 'unicode': '1FAAD', + 'emoji': '๐Ÿชญ', + 'data': '🪭', + 'tags': [ + 'clack', + 'clap', + 'cool', + 'cooling', + 'dance', + 'fan', + 'flirt', + 'flutter', + 'folding', + 'hand', + 'hot', + 'shy' + ], + 'shortcodes': [ + ':folding_hand_fan:' + ] + }, + { + 'name': 'purse', + 'unicode': '1F45B', + 'emoji': '๐Ÿ‘›', + 'data': '👛', + 'tags': [ + 'clothes', + 'clothing', + 'coin', + 'dress', + 'fancy', + 'handbag', + 'shopping' + ], + 'shortcodes': [ + ':purse:' + ] + }, + { + 'name': 'handbag', + 'unicode': '1F45C', + 'emoji': '๐Ÿ‘œ', + 'data': '👜', + 'tags': [ + 'bag', + 'clothes', + 'clothing', + 'dress', + 'lady', + 'purse', + 'shopping' + ], + 'shortcodes': [ + ':handbag:' + ] + }, + { + 'name': 'clutch bag', + 'unicode': '1F45D', + 'emoji': '๐Ÿ‘', + 'data': '👝', + 'tags': [ + 'bag', + 'clothes', + 'clothing', + 'clutch', + 'dress', + 'handbag', + 'pouch', + 'purse' + ], + 'shortcodes': [ + ':clutch_bag:' + ] + }, + { + 'name': 'shopping bags', + 'unicode': '1F6CD', + 'emoji': '๐Ÿ›', + 'data': '🛍', + 'tags': [ + 'bag', + 'bags', + 'hotel', + 'shopping' + ], + 'shortcodes': [ + ':shopping_bags:' + ] + }, + { + 'name': 'backpack', + 'unicode': '1F392', + 'emoji': '๐ŸŽ’', + 'data': '🎒', + 'tags': [ + 'backpacking', + 'bag', + 'bookbag', + 'education', + 'rucksack', + 'satchel', + 'school' + ], + 'shortcodes': [ + ':backpack:' + ] + }, + { + 'name': 'thong sandal', + 'unicode': '1FA74', + 'emoji': '๐Ÿฉด', + 'data': '🩴', + 'tags': [ + 'beach', + 'flip', + 'flop', + 'sandal', + 'sandals', + 'shoe', + 'thong', + 'thongs', + 'zลri' + ], + 'shortcodes': [ + ':thong_sandal:' + ] + }, + { + 'name': 'manโ€™s shoe', + 'unicode': '1F45E', + 'emoji': '๐Ÿ‘ž', + 'data': '👞', + 'tags': [ + 'brown', + 'clothes', + 'clothing', + 'feet', + 'foot', + 'kick', + 'man', + 'manโ€™s', + 'shoe', + 'shoes', + 'shopping' + ], + 'shortcodes': [ + ':manโ€™s_shoe:' + ] + }, + { + 'name': 'running shoe', + 'unicode': '1F45F', + 'emoji': '๐Ÿ‘Ÿ', + 'data': '👟', + 'tags': [ + 'athletic', + 'clothes', + 'clothing', + 'fast', + 'kick', + 'running', + 'shoe', + 'shoes', + 'shopping', + 'sneaker', + 'tennis' + ], + 'shortcodes': [ + ':running_shoe:' + ] + }, + { + 'name': 'hiking boot', + 'unicode': '1F97E', + 'emoji': '๐Ÿฅพ', + 'data': '🥾', + 'tags': [ + 'backpacking', + 'boot', + 'brown', + 'camping', + 'hiking', + 'outdoors', + 'shoe' + ], + 'shortcodes': [ + ':hiking_boot:' + ] + }, + { + 'name': 'flat shoe', + 'unicode': '1F97F', + 'emoji': '๐Ÿฅฟ', + 'data': '🥿', + 'tags': [ + 'ballet', + 'comfy', + 'flat', + 'flats', + 'shoe', + 'slip-on', + 'slipper' + ], + 'shortcodes': [ + ':flat_shoe:' + ] + }, + { + 'name': 'high-heeled shoe', + 'unicode': '1F460', + 'emoji': '๐Ÿ‘ ', + 'data': '👠', + 'tags': [ + 'clothes', + 'clothing', + 'dress', + 'fashion', + 'heel', + 'heels', + 'high-heeled', + 'shoe', + 'shoes', + 'shopping', + 'stiletto', + 'woman' + ], + 'shortcodes': [ + ':high-heeled_shoe:' + ] + }, + { + 'name': 'womanโ€™s sandal', + 'unicode': '1F461', + 'emoji': '๐Ÿ‘ก', + 'data': '👡', + 'tags': [ + 'clothing', + 'sandal', + 'shoe', + 'woman', + 'womanโ€™s' + ], + 'shortcodes': [ + ':womanโ€™s_sandal:' + ] + }, + { + 'name': 'ballet shoes', + 'unicode': '1FA70', + 'emoji': '๐Ÿฉฐ', + 'data': '🩰', + 'tags': [ + 'ballet', + 'dance', + 'shoes' + ], + 'shortcodes': [ + ':ballet_shoes:' + ] + }, + { + 'name': 'womanโ€™s boot', + 'unicode': '1F462', + 'emoji': '๐Ÿ‘ข', + 'data': '👢', + 'tags': [ + 'boot', + 'clothes', + 'clothing', + 'dress', + 'shoe', + 'shoes', + 'shopping', + 'woman', + 'womanโ€™s' + ], + 'shortcodes': [ + ':womanโ€™s_boot:' + ] + }, + { + 'name': 'hair pick', + 'unicode': '1FAAE', + 'emoji': '๐Ÿชฎ', + 'data': '🪮', + 'tags': [ + 'afro', + 'comb', + 'groom', + 'hair', + 'pick' + ], + 'shortcodes': [ + ':hair_pick:' + ] + }, + { + 'name': 'crown', + 'unicode': '1F451', + 'emoji': '๐Ÿ‘‘', + 'data': '👑', + 'tags': [ + 'clothing', + 'family', + 'king', + 'medieval', + 'queen', + 'royal', + 'royalty', + 'win' + ], + 'shortcodes': [ + ':crown:' + ] + }, + { + 'name': 'womanโ€™s hat', + 'unicode': '1F452', + 'emoji': '๐Ÿ‘’', + 'data': '👒', + 'tags': [ + 'clothes', + 'clothing', + 'garden', + 'hat', + 'hats', + 'party', + 'woman', + 'womanโ€™s' + ], + 'shortcodes': [ + ':womanโ€™s_hat:' + ] + }, + { + 'name': 'top hat', + 'unicode': '1F3A9', + 'emoji': '๐ŸŽฉ', + 'data': '🎩', + 'tags': [ + 'clothes', + 'clothing', + 'fancy', + 'formal', + 'hat', + 'magic', + 'top', + 'tophat' + ], + 'shortcodes': [ + ':top_hat:' + ] + }, + { + 'name': 'graduation cap', + 'unicode': '1F393', + 'emoji': '๐ŸŽ“', + 'data': '🎓', + 'tags': [ + 'cap', + 'celebration', + 'clothing', + 'education', + 'graduation', + 'hat', + 'scholar' + ], + 'shortcodes': [ + ':graduation_cap:' + ] + }, + { + 'name': 'billed cap', + 'unicode': '1F9E2', + 'emoji': '๐Ÿงข', + 'data': '🧢', + 'tags': [ + 'baseball', + 'bent', + 'billed', + 'cap', + 'dad', + 'hat' + ], + 'shortcodes': [ + ':billed_cap:' + ] + }, + { + 'name': 'military helmet', + 'unicode': '1FA96', + 'emoji': '๐Ÿช–', + 'data': '🪖', + 'tags': [ + 'army', + 'helmet', + 'military', + 'soldier', + 'war', + 'warrior' + ], + 'shortcodes': [ + ':military_helmet:' + ] + }, + { + 'name': 'rescue workerโ€™s helmet', + 'unicode': '26D1', + 'emoji': 'โ›‘', + 'data': '⛑', + 'tags': [ + 'aid', + 'cross', + 'face', + 'hat', + 'helmet', + 'rescue', + 'workerโ€™s' + ], + 'shortcodes': [ + ':rescue_workerโ€™s_helmet:' + ] + }, + { + 'name': 'prayer beads', + 'unicode': '1F4FF', + 'emoji': '๐Ÿ“ฟ', + 'data': '📿', + 'tags': [ + 'beads', + 'clothing', + 'necklace', + 'prayer', + 'religion' + ], + 'shortcodes': [ + ':prayer_beads:' + ] + }, + { + 'name': 'lipstick', + 'unicode': '1F484', + 'emoji': '๐Ÿ’„', + 'data': '💄', + 'tags': [ + 'cosmetics', + 'date', + 'makeup' + ], + 'shortcodes': [ + ':lipstick:' + ] + }, + { + 'name': 'ring', + 'unicode': '1F48D', + 'emoji': '๐Ÿ’', + 'data': '💍', + 'tags': [ + 'diamond', + 'engaged', + 'engagement', + 'married', + 'romance', + 'shiny', + 'sparkling', + 'wedding' + ], + 'shortcodes': [ + ':ring:' + ] + }, + { + 'name': 'gem stone', + 'unicode': '1F48E', + 'emoji': '๐Ÿ’Ž', + 'data': '💎', + 'tags': [ + 'diamond', + 'engagement', + 'gem', + 'jewel', + 'money', + 'romance', + 'stone', + 'wedding' + ], + 'shortcodes': [ + ':gem_stone:' + ] + }, + { + 'name': 'muted speaker', + 'unicode': '1F507', + 'emoji': '๐Ÿ”‡', + 'data': '🔇', + 'tags': [ + 'mute', + 'muted', + 'quiet', + 'silent', + 'sound', + 'speaker' + ], + 'shortcodes': [ + ':muted_speaker:' + ] + }, + { + 'name': 'speaker low volume', + 'unicode': '1F508', + 'emoji': '๐Ÿ”ˆ', + 'data': '🔈', + 'tags': [ + 'low', + 'soft', + 'sound', + 'speaker', + 'volume' + ], + 'shortcodes': [ + ':speaker_low_volume:' + ] + }, + { + 'name': 'speaker medium volume', + 'unicode': '1F509', + 'emoji': '๐Ÿ”‰', + 'data': '🔉', + 'tags': [ + 'medium', + 'sound', + 'speaker', + 'volume' + ], + 'shortcodes': [ + ':speaker_medium_volume:' + ] + }, + { + 'name': 'speaker high volume', + 'unicode': '1F50A', + 'emoji': '๐Ÿ”Š', + 'data': '🔊', + 'tags': [ + 'high', + 'loud', + 'music', + 'sound', + 'speaker', + 'volume' + ], + 'shortcodes': [ + ':speaker_high_volume:' + ] + }, + { + 'name': 'loudspeaker', + 'unicode': '1F4E2', + 'emoji': '๐Ÿ“ข', + 'data': '📢', + 'tags': [ + 'address', + 'communication', + 'loud', + 'public', + 'sound' + ], + 'shortcodes': [ + ':loudspeaker:' + ] + }, + { + 'name': 'megaphone', + 'unicode': '1F4E3', + 'emoji': '๐Ÿ“ฃ', + 'data': '📣', + 'tags': [ + 'cheering', + 'sound' + ], + 'shortcodes': [ + ':megaphone:' + ] + }, + { + 'name': 'postal horn', + 'unicode': '1F4EF', + 'emoji': '๐Ÿ“ฏ', + 'data': '📯', + 'tags': [ + 'horn', + 'post', + 'postal' + ], + 'shortcodes': [ + ':postal_horn:' + ] + }, + { + 'name': 'bell', + 'unicode': '1F514', + 'emoji': '๐Ÿ””', + 'data': '🔔', + 'tags': [ + 'break', + 'church', + 'sound' + ], + 'shortcodes': [ + ':bell:' + ] + }, + { + 'name': 'bell with slash', + 'unicode': '1F515', + 'emoji': '๐Ÿ”•', + 'data': '🔕', + 'tags': [ + 'bell', + 'forbidden', + 'mute', + 'no', + 'not', + 'prohibited', + 'quiet', + 'silent', + 'slash', + 'sound' + ], + 'shortcodes': [ + ':bell_with_slash:' + ] + }, + { + 'name': 'musical score', + 'unicode': '1F3BC', + 'emoji': '๐ŸŽผ', + 'data': '🎼', + 'tags': [ + 'music', + 'musical', + 'note', + 'score' + ], + 'shortcodes': [ + ':musical_score:' + ] + }, + { + 'name': 'musical note', + 'unicode': '1F3B5', + 'emoji': '๐ŸŽต', + 'data': '🎵', + 'tags': [ + 'music', + 'musical', + 'note', + 'sound' + ], + 'shortcodes': [ + ':musical_note:' + ] + }, + { + 'name': 'musical notes', + 'unicode': '1F3B6', + 'emoji': '๐ŸŽถ', + 'data': '🎶', + 'tags': [ + 'music', + 'musical', + 'note', + 'notes', + 'sound' + ], + 'shortcodes': [ + ':musical_notes:' + ] + }, + { + 'name': 'studio microphone', + 'unicode': '1F399', + 'emoji': '๐ŸŽ™', + 'data': '🎙', + 'tags': [ + 'mic', + 'microphone', + 'music', + 'studio' + ], + 'shortcodes': [ + ':studio_microphone:' + ] + }, + { + 'name': 'level slider', + 'unicode': '1F39A', + 'emoji': '๐ŸŽš', + 'data': '🎚', + 'tags': [ + 'level', + 'music', + 'slider' + ], + 'shortcodes': [ + ':level_slider:' + ] + }, + { + 'name': 'control knobs', + 'unicode': '1F39B', + 'emoji': '๐ŸŽ›', + 'data': '🎛', + 'tags': [ + 'control', + 'knobs', + 'music' + ], + 'shortcodes': [ + ':control_knobs:' + ] + }, + { + 'name': 'microphone', + 'unicode': '1F3A4', + 'emoji': '๐ŸŽค', + 'data': '🎤', + 'tags': [ + 'karaoke', + 'mic', + 'music', + 'sing', + 'sound' + ], + 'shortcodes': [ + ':microphone:' + ] + }, + { + 'name': 'headphone', + 'unicode': '1F3A7', + 'emoji': '๐ŸŽง', + 'data': '🎧', + 'tags': [ + 'earbud', + 'sound' + ], + 'shortcodes': [ + ':headphone:' + ] + }, + { + 'name': 'radio', + 'unicode': '1F4FB', + 'emoji': '๐Ÿ“ป', + 'data': '📻', + 'tags': [ + 'entertainment', + 'tbt', + 'video' + ], + 'shortcodes': [ + ':radio:' + ] + }, + { + 'name': 'saxophone', + 'unicode': '1F3B7', + 'emoji': '๐ŸŽท', + 'data': '🎷', + 'tags': [ + 'instrument', + 'music', + 'sax' + ], + 'shortcodes': [ + ':saxophone:' + ] + }, + { + 'name': 'accordion', + 'unicode': '1FA97', + 'emoji': '๐Ÿช—', + 'data': '🪗', + 'tags': [ + 'box', + 'concertina', + 'instrument', + 'music', + 'squeeze', + 'squeezebox' + ], + 'shortcodes': [ + ':accordion:' + ] + }, + { + 'name': 'guitar', + 'unicode': '1F3B8', + 'emoji': '๐ŸŽธ', + 'data': '🎸', + 'tags': [ + 'instrument', + 'music', + 'strat' + ], + 'shortcodes': [ + ':guitar:' + ] + }, + { + 'name': 'musical keyboard', + 'unicode': '1F3B9', + 'emoji': '๐ŸŽน', + 'data': '🎹', + 'tags': [ + 'instrument', + 'keyboard', + 'music', + 'musical', + 'piano' + ], + 'shortcodes': [ + ':musical_keyboard:' + ] + }, + { + 'name': 'trumpet', + 'unicode': '1F3BA', + 'emoji': '๐ŸŽบ', + 'data': '🎺', + 'tags': [ + 'instrument', + 'music' + ], + 'shortcodes': [ + ':trumpet:' + ] + }, + { + 'name': 'violin', + 'unicode': '1F3BB', + 'emoji': '๐ŸŽป', + 'data': '🎻', + 'tags': [ + 'instrument', + 'music' + ], + 'shortcodes': [ + ':violin:' + ] + }, + { + 'name': 'banjo', + 'unicode': '1FA95', + 'emoji': '๐Ÿช•', + 'data': '🪕', + 'tags': [ + 'music', + 'stringed' + ], + 'shortcodes': [ + ':banjo:' + ] + }, + { + 'name': 'drum', + 'unicode': '1F941', + 'emoji': '๐Ÿฅ', + 'data': '🥁', + 'tags': [ + 'drumsticks', + 'music' + ], + 'shortcodes': [ + ':drum:' + ] + }, + { + 'name': 'long drum', + 'unicode': '1FA98', + 'emoji': '๐Ÿช˜', + 'data': '🪘', + 'tags': [ + 'beat', + 'conga', + 'drum', + 'instrument', + 'long', + 'rhythm' + ], + 'shortcodes': [ + ':long_drum:' + ] + }, + { + 'name': 'maracas', + 'unicode': '1FA87', + 'emoji': '๐Ÿช‡', + 'data': '🪇', + 'tags': [ + 'cha', + 'dance', + 'instrument', + 'music', + 'party', + 'percussion', + 'rattle', + 'shake', + 'shaker' + ], + 'shortcodes': [ + ':maracas:' + ] + }, + { + 'name': 'flute', + 'unicode': '1FA88', + 'emoji': '๐Ÿชˆ', + 'data': '🪈', + 'tags': [ + 'band', + 'fife', + 'flautist', + 'instrument', + 'marching', + 'music', + 'orchestra', + 'piccolo', + 'pipe', + 'recorder', + 'woodwind' + ], + 'shortcodes': [ + ':flute:' + ] + }, + { + 'name': 'harp', + 'unicode': '1FA89', + 'emoji': '๐Ÿช‰', + 'data': '🪉', + 'tags': [ + 'cupid', + 'instrument', + 'love', + 'music', + 'orchestra' + ], + 'shortcodes': [ + ':harp:' + ] + }, + { + 'name': 'mobile phone', + 'unicode': '1F4F1', + 'emoji': '๐Ÿ“ฑ', + 'data': '📱', + 'tags': [ + 'cell', + 'communication', + 'mobile', + 'phone', + 'telephone' + ], + 'shortcodes': [ + ':mobile_phone:' + ] + }, + { + 'name': 'mobile phone with arrow', + 'unicode': '1F4F2', + 'emoji': '๐Ÿ“ฒ', + 'data': '📲', + 'tags': [ + 'arrow', + 'build', + 'call', + 'cell', + 'communication', + 'mobile', + 'phone', + 'receive', + 'telephone' + ], + 'shortcodes': [ + ':mobile_phone_with_arrow:' + ] + }, + { + 'name': 'telephone', + 'unicode': '260E', + 'emoji': 'โ˜Ž', + 'data': '☎', + 'tags': [ + 'phone' + ], + 'shortcodes': [ + ':telephone:' + ] + }, + { + 'name': 'telephone receiver', + 'unicode': '1F4DE', + 'emoji': '๐Ÿ“ž', + 'data': '📞', + 'tags': [ + 'communication', + 'phone', + 'receiver', + 'telephone', + 'voip' + ], + 'shortcodes': [ + ':telephone_receiver:' + ] + }, + { + 'name': 'pager', + 'unicode': '1F4DF', + 'emoji': '๐Ÿ“Ÿ', + 'data': '📟', + 'tags': [ + 'communication' + ], + 'shortcodes': [ + ':pager:' + ] + }, + { + 'name': 'fax machine', + 'unicode': '1F4E0', + 'emoji': '๐Ÿ“ ', + 'data': '📠', + 'tags': [ + 'communication', + 'fax', + 'machine' + ], + 'shortcodes': [ + ':fax_machine:' + ] + }, + { + 'name': 'battery', + 'unicode': '1F50B', + 'emoji': '๐Ÿ”‹', + 'data': '🔋', + 'tags': [ + 'battery' + ], + 'shortcodes': [ + ':battery:' + ] + }, + { + 'name': 'low battery', + 'unicode': '1FAAB', + 'emoji': '๐Ÿชซ', + 'data': '🪫', + 'tags': [ + 'battery', + 'drained', + 'electronic', + 'energy', + 'low', + 'power' + ], + 'shortcodes': [ + ':low_battery:' + ] + }, + { + 'name': 'electric plug', + 'unicode': '1F50C', + 'emoji': '๐Ÿ”Œ', + 'data': '🔌', + 'tags': [ + 'electric', + 'electricity', + 'plug' + ], + 'shortcodes': [ + ':electric_plug:' + ] + }, + { + 'name': 'laptop', + 'unicode': '1F4BB', + 'emoji': '๐Ÿ’ป', + 'data': '💻', + 'tags': [ + 'computer', + 'office', + 'pc', + 'personal' + ], + 'shortcodes': [ + ':laptop:' + ] + }, + { + 'name': 'desktop computer', + 'unicode': '1F5A5', + 'emoji': '๐Ÿ–ฅ', + 'data': '🖥', + 'tags': [ + 'computer', + 'desktop', + 'monitor' + ], + 'shortcodes': [ + ':desktop_computer:' + ] + }, + { + 'name': 'printer', + 'unicode': '1F5A8', + 'emoji': '๐Ÿ–จ', + 'data': '🖨', + 'tags': [ + 'computer' + ], + 'shortcodes': [ + ':printer:' + ] + }, + { + 'name': 'keyboard', + 'unicode': '2328', + 'emoji': 'โŒจ', + 'data': '⌨', + 'tags': [ + 'computer' + ], + 'shortcodes': [ + ':keyboard:' + ] + }, + { + 'name': 'computer mouse', + 'unicode': '1F5B1', + 'emoji': '๐Ÿ–ฑ', + 'data': '🖱', + 'tags': [ + 'computer', + 'mouse' + ], + 'shortcodes': [ + ':computer_mouse:' + ] + }, + { + 'name': 'trackball', + 'unicode': '1F5B2', + 'emoji': '๐Ÿ–ฒ', + 'data': '🖲', + 'tags': [ + 'computer' + ], + 'shortcodes': [ + ':trackball:' + ] + }, + { + 'name': 'computer disk', + 'unicode': '1F4BD', + 'emoji': '๐Ÿ’ฝ', + 'data': '💽', + 'tags': [ + 'computer', + 'disk', + 'minidisk', + 'optical' + ], + 'shortcodes': [ + ':computer_disk:' + ] + }, + { + 'name': 'floppy disk', + 'unicode': '1F4BE', + 'emoji': '๐Ÿ’พ', + 'data': '💾', + 'tags': [ + 'computer', + 'disk', + 'floppy' + ], + 'shortcodes': [ + ':floppy_disk:' + ] + }, + { + 'name': 'optical disk', + 'unicode': '1F4BF', + 'emoji': '๐Ÿ’ฟ', + 'data': '💿', + 'tags': [ + 'blu-ray', + 'cd', + 'computer', + 'disk', + 'dvd', + 'optical' + ], + 'shortcodes': [ + ':optical_disk:' + ] + }, + { + 'name': 'dvd', + 'unicode': '1F4C0', + 'emoji': '๐Ÿ“€', + 'data': '📀', + 'tags': [ + 'blu-ray', + 'cd', + 'computer', + 'disk', + 'optical' + ], + 'shortcodes': [ + ':dvd:' + ] + }, + { + 'name': 'abacus', + 'unicode': '1F9EE', + 'emoji': '๐Ÿงฎ', + 'data': '🧮', + 'tags': [ + 'calculation', + 'calculator' + ], + 'shortcodes': [ + ':abacus:' + ] + }, + { + 'name': 'movie camera', + 'unicode': '1F3A5', + 'emoji': '๐ŸŽฅ', + 'data': '🎥', + 'tags': [ + 'bollywood', + 'camera', + 'cinema', + 'film', + 'hollywood', + 'movie', + 'record' + ], + 'shortcodes': [ + ':movie_camera:' + ] + }, + { + 'name': 'film frames', + 'unicode': '1F39E', + 'emoji': '๐ŸŽž', + 'data': '🎞', + 'tags': [ + 'cinema', + 'film', + 'frames', + 'movie' + ], + 'shortcodes': [ + ':film_frames:' + ] + }, + { + 'name': 'film projector', + 'unicode': '1F4FD', + 'emoji': '๐Ÿ“ฝ', + 'data': '📽', + 'tags': [ + 'cinema', + 'film', + 'movie', + 'projector', + 'video' + ], + 'shortcodes': [ + ':film_projector:' + ] + }, + { + 'name': 'clapper board', + 'unicode': '1F3AC', + 'emoji': '๐ŸŽฌ', + 'data': '🎬', + 'tags': [ + 'action', + 'board', + 'clapper', + 'movie' + ], + 'shortcodes': [ + ':clapper_board:' + ] + }, + { + 'name': 'television', + 'unicode': '1F4FA', + 'emoji': '๐Ÿ“บ', + 'data': '📺', + 'tags': [ + 'tv', + 'video' + ], + 'shortcodes': [ + ':television:' + ] + }, + { + 'name': 'camera', + 'unicode': '1F4F7', + 'emoji': '๐Ÿ“ท', + 'data': '📷', + 'tags': [ + 'photo', + 'selfie', + 'snap', + 'tbt', + 'trip', + 'video' + ], + 'shortcodes': [ + ':camera:' + ] + }, + { + 'name': 'camera with flash', + 'unicode': '1F4F8', + 'emoji': '๐Ÿ“ธ', + 'data': '📸', + 'tags': [ + 'camera', + 'flash', + 'video' + ], + 'shortcodes': [ + ':camera_with_flash:' + ] + }, + { + 'name': 'video camera', + 'unicode': '1F4F9', + 'emoji': '๐Ÿ“น', + 'data': '📹', + 'tags': [ + 'camcorder', + 'camera', + 'tbt', + 'video' + ], + 'shortcodes': [ + ':video_camera:' + ] + }, + { + 'name': 'videocassette', + 'unicode': '1F4FC', + 'emoji': '๐Ÿ“ผ', + 'data': '📼', + 'tags': [ + 'old', + 'school', + 'tape', + 'vcr', + 'vhs', + 'video' + ], + 'shortcodes': [ + ':videocassette:' + ] + }, + { + 'name': 'magnifying glass tilted left', + 'unicode': '1F50D', + 'emoji': '๐Ÿ”', + 'data': '🔍', + 'tags': [ + 'glass', + 'lab', + 'left', + 'left-pointing', + 'magnifying', + 'science', + 'search', + 'tilted', + 'tool' + ], + 'shortcodes': [ + ':magnifying_glass_tilted_left:' + ] + }, + { + 'name': 'magnifying glass tilted right', + 'unicode': '1F50E', + 'emoji': '๐Ÿ”Ž', + 'data': '🔎', + 'tags': [ + 'contact', + 'glass', + 'lab', + 'magnifying', + 'right', + 'right-pointing', + 'science', + 'search', + 'tilted', + 'tool' + ], + 'shortcodes': [ + ':magnifying_glass_tilted_right:' + ] + }, + { + 'name': 'candle', + 'unicode': '1F56F', + 'emoji': '๐Ÿ•ฏ', + 'data': '🕯', + 'tags': [ + 'light' + ], + 'shortcodes': [ + ':candle:' + ] + }, + { + 'name': 'light bulb', + 'unicode': '1F4A1', + 'emoji': '๐Ÿ’ก', + 'data': '💡', + 'tags': [ + 'bulb', + 'comic', + 'electric', + 'idea', + 'light' + ], + 'shortcodes': [ + ':light_bulb:' + ] + }, + { + 'name': 'flashlight', + 'unicode': '1F526', + 'emoji': '๐Ÿ”ฆ', + 'data': '🔦', + 'tags': [ + 'electric', + 'light', + 'tool', + 'torch' + ], + 'shortcodes': [ + ':flashlight:' + ] + }, + { + 'name': 'red paper lantern', + 'unicode': '1F3EE', + 'emoji': '๐Ÿฎ', + 'data': '🏮', + 'tags': [ + 'bar', + 'lantern', + 'light', + 'paper', + 'red', + 'restaurant' + ], + 'shortcodes': [ + ':red_paper_lantern:' + ] + }, + { + 'name': 'diya lamp', + 'unicode': '1FA94', + 'emoji': '๐Ÿช”', + 'data': '🪔', + 'tags': [ + 'diya', + 'lamp', + 'light', + 'oil' + ], + 'shortcodes': [ + ':diya_lamp:' + ] + }, + { + 'name': 'notebook with decorative cover', + 'unicode': '1F4D4', + 'emoji': '๐Ÿ“”', + 'data': '📔', + 'tags': [ + 'book', + 'cover', + 'decorated', + 'decorative', + 'education', + 'notebook', + 'school', + 'writing' + ], + 'shortcodes': [ + ':notebook_with_decorative_cover:' + ] + }, + { + 'name': 'closed book', + 'unicode': '1F4D5', + 'emoji': '๐Ÿ“•', + 'data': '📕', + 'tags': [ + 'book', + 'closed', + 'education' + ], + 'shortcodes': [ + ':closed_book:' + ] + }, + { + 'name': 'open book', + 'unicode': '1F4D6', + 'emoji': '๐Ÿ“–', + 'data': '📖', + 'tags': [ + 'book', + 'education', + 'fantasy', + 'knowledge', + 'library', + 'novels', + 'open', + 'reading' + ], + 'shortcodes': [ + ':open_book:' + ] + }, + { + 'name': 'green book', + 'unicode': '1F4D7', + 'emoji': '๐Ÿ“—', + 'data': '📗', + 'tags': [ + 'book', + 'education', + 'fantasy', + 'green', + 'library', + 'reading' + ], + 'shortcodes': [ + ':green_book:' + ] + }, + { + 'name': 'blue book', + 'unicode': '1F4D8', + 'emoji': '๐Ÿ“˜', + 'data': '📘', + 'tags': [ + 'blue', + 'book', + 'education', + 'fantasy', + 'library', + 'reading' + ], + 'shortcodes': [ + ':blue_book:' + ] + }, + { + 'name': 'orange book', + 'unicode': '1F4D9', + 'emoji': '๐Ÿ“™', + 'data': '📙', + 'tags': [ + 'book', + 'education', + 'fantasy', + 'library', + 'orange', + 'reading' + ], + 'shortcodes': [ + ':orange_book:' + ] + }, + { + 'name': 'books', + 'unicode': '1F4DA', + 'emoji': '๐Ÿ“š', + 'data': '📚', + 'tags': [ + 'book', + 'education', + 'fantasy', + 'knowledge', + 'library', + 'novels', + 'reading', + 'school', + 'study' + ], + 'shortcodes': [ + ':books:' + ] + }, + { + 'name': 'notebook', + 'unicode': '1F4D3', + 'emoji': '๐Ÿ““', + 'data': '📓', + 'tags': [ + 'notebook' + ], + 'shortcodes': [ + ':notebook:' + ] + }, + { + 'name': 'ledger', + 'unicode': '1F4D2', + 'emoji': '๐Ÿ“’', + 'data': '📒', + 'tags': [ + 'notebook' + ], + 'shortcodes': [ + ':ledger:' + ] + }, + { + 'name': 'page with curl', + 'unicode': '1F4C3', + 'emoji': '๐Ÿ“ƒ', + 'data': '📃', + 'tags': [ + 'curl', + 'document', + 'page', + 'paper' + ], + 'shortcodes': [ + ':page_with_curl:' + ] + }, + { + 'name': 'scroll', + 'unicode': '1F4DC', + 'emoji': '๐Ÿ“œ', + 'data': '📜', + 'tags': [ + 'paper' + ], + 'shortcodes': [ + ':scroll:' + ] + }, + { + 'name': 'page facing up', + 'unicode': '1F4C4', + 'emoji': '๐Ÿ“„', + 'data': '📄', + 'tags': [ + 'document', + 'facing', + 'page', + 'paper', + 'up' + ], + 'shortcodes': [ + ':page_facing_up:' + ] + }, + { + 'name': 'newspaper', + 'unicode': '1F4F0', + 'emoji': '๐Ÿ“ฐ', + 'data': '📰', + 'tags': [ + 'communication', + 'news', + 'paper' + ], + 'shortcodes': [ + ':newspaper:' + ] + }, + { + 'name': 'rolled-up newspaper', + 'unicode': '1F5DE', + 'emoji': '๐Ÿ—ž', + 'data': '🗞', + 'tags': [ + 'news', + 'newspaper', + 'paper', + 'rolled', + 'rolled-up' + ], + 'shortcodes': [ + ':rolled-up_newspaper:' + ] + }, + { + 'name': 'bookmark tabs', + 'unicode': '1F4D1', + 'emoji': '๐Ÿ“‘', + 'data': '📑', + 'tags': [ + 'bookmark', + 'mark', + 'marker', + 'tabs' + ], + 'shortcodes': [ + ':bookmark_tabs:' + ] + }, + { + 'name': 'bookmark', + 'unicode': '1F516', + 'emoji': '๐Ÿ”–', + 'data': '🔖', + 'tags': [ + 'mark' + ], + 'shortcodes': [ + ':bookmark:' + ] + }, + { + 'name': 'label', + 'unicode': '1F3F7', + 'emoji': '๐Ÿท', + 'data': '🏷', + 'tags': [ + 'tag' + ], + 'shortcodes': [ + ':label:' + ] + }, + { + 'name': 'money bag', + 'unicode': '1F4B0', + 'emoji': '๐Ÿ’ฐ', + 'data': '💰', + 'tags': [ + 'bag', + 'bank', + 'bet', + 'billion', + 'cash', + 'cost', + 'dollar', + 'gold', + 'million', + 'money', + 'moneybag', + 'paid', + 'paying', + 'pot', + 'rich', + 'win' + ], + 'shortcodes': [ + ':money_bag:' + ] + }, + { + 'name': 'coin', + 'unicode': '1FA99', + 'emoji': '๐Ÿช™', + 'data': '🪙', + 'tags': [ + 'dollar', + 'euro', + 'gold', + 'metal', + 'money', + 'rich', + 'silver', + 'treasure' + ], + 'shortcodes': [ + ':coin:' + ] + }, + { + 'name': 'yen banknote', + 'unicode': '1F4B4', + 'emoji': '๐Ÿ’ด', + 'data': '💴', + 'tags': [ + 'bank', + 'banknote', + 'bill', + 'currency', + 'money', + 'note', + 'yen' + ], + 'shortcodes': [ + ':yen_banknote:' + ] + }, + { + 'name': 'dollar banknote', + 'unicode': '1F4B5', + 'emoji': '๐Ÿ’ต', + 'data': '💵', + 'tags': [ + 'bank', + 'banknote', + 'bill', + 'currency', + 'dollar', + 'money', + 'note' + ], + 'shortcodes': [ + ':dollar_banknote:' + ] + }, + { + 'name': 'euro banknote', + 'unicode': '1F4B6', + 'emoji': '๐Ÿ’ถ', + 'data': '💶', + 'tags': [ + '100', + 'bank', + 'banknote', + 'bill', + 'currency', + 'euro', + 'money', + 'note', + 'rich' + ], + 'shortcodes': [ + ':euro_banknote:' + ] + }, + { + 'name': 'pound banknote', + 'unicode': '1F4B7', + 'emoji': '๐Ÿ’ท', + 'data': '💷', + 'tags': [ + 'bank', + 'banknote', + 'bill', + 'billion', + 'cash', + 'currency', + 'money', + 'note', + 'pound', + 'pounds' + ], + 'shortcodes': [ + ':pound_banknote:' + ] + }, + { + 'name': 'money with wings', + 'unicode': '1F4B8', + 'emoji': '๐Ÿ’ธ', + 'data': '💸', + 'tags': [ + 'bank', + 'banknote', + 'bill', + 'billion', + 'cash', + 'dollar', + 'fly', + 'million', + 'money', + 'note', + 'pay', + 'wings' + ], + 'shortcodes': [ + ':money_with_wings:' + ] + }, + { + 'name': 'credit card', + 'unicode': '1F4B3', + 'emoji': '๐Ÿ’ณ', + 'data': '💳', + 'tags': [ + 'bank', + 'card', + 'cash', + 'charge', + 'credit', + 'money', + 'pay' + ], + 'shortcodes': [ + ':credit_card:' + ] + }, + { + 'name': 'receipt', + 'unicode': '1F9FE', + 'emoji': '๐Ÿงพ', + 'data': '🧾', + 'tags': [ + 'accounting', + 'bookkeeping', + 'evidence', + 'invoice', + 'proof' + ], + 'shortcodes': [ + ':receipt:' + ] + }, + { + 'name': 'chart increasing with yen', + 'unicode': '1F4B9', + 'emoji': '๐Ÿ’น', + 'data': '💹', + 'tags': [ + 'bank', + 'chart', + 'currency', + 'graph', + 'growth', + 'increasing', + 'market', + 'money', + 'rise', + 'trend', + 'upward', + 'yen' + ], + 'shortcodes': [ + ':chart_increasing_with_yen:' + ] + }, + { + 'name': 'envelope', + 'unicode': '2709', + 'emoji': 'โœ‰', + 'data': '✉', + 'tags': [ + 'e-mail', + 'email', + 'letter' + ], + 'shortcodes': [ + ':envelope:' + ] + }, + { + 'name': 'e-mail', + 'unicode': '1F4E7', + 'emoji': '๐Ÿ“ง', + 'data': '📧', + 'tags': [ + 'email', + 'letter', + 'mail' + ], + 'shortcodes': [ + ':e-mail:' + ] + }, + { + 'name': 'incoming envelope', + 'unicode': '1F4E8', + 'emoji': '๐Ÿ“จ', + 'data': '📨', + 'tags': [ + 'delivering', + 'e-mail', + 'email', + 'envelope', + 'incoming', + 'letter', + 'mail', + 'receive', + 'sent' + ], + 'shortcodes': [ + ':incoming_envelope:' + ] + }, + { + 'name': 'envelope with arrow', + 'unicode': '1F4E9', + 'emoji': '๐Ÿ“ฉ', + 'data': '📩', + 'tags': [ + 'arrow', + 'communication', + 'down', + 'e-mail', + 'email', + 'envelope', + 'letter', + 'mail', + 'outgoing', + 'send', + 'sent' + ], + 'shortcodes': [ + ':envelope_with_arrow:' + ] + }, + { + 'name': 'outbox tray', + 'unicode': '1F4E4', + 'emoji': '๐Ÿ“ค', + 'data': '📤', + 'tags': [ + 'box', + 'email', + 'letter', + 'mail', + 'outbox', + 'sent', + 'tray' + ], + 'shortcodes': [ + ':outbox_tray:' + ] + }, + { + 'name': 'inbox tray', + 'unicode': '1F4E5', + 'emoji': '๐Ÿ“ฅ', + 'data': '📥', + 'tags': [ + 'box', + 'email', + 'inbox', + 'letter', + 'mail', + 'receive', + 'tray', + 'zero' + ], + 'shortcodes': [ + ':inbox_tray:' + ] + }, + { + 'name': 'package', + 'unicode': '1F4E6', + 'emoji': '๐Ÿ“ฆ', + 'data': '📦', + 'tags': [ + 'box', + 'communication', + 'delivery', + 'parcel', + 'shipping' + ], + 'shortcodes': [ + ':package:' + ] + }, + { + 'name': 'closed mailbox with raised flag', + 'unicode': '1F4EB', + 'emoji': '๐Ÿ“ซ', + 'data': '📫', + 'tags': [ + 'closed', + 'communication', + 'flag', + 'mail', + 'mailbox', + 'postbox', + 'raised' + ], + 'shortcodes': [ + ':closed_mailbox_with_raised_flag:' + ] + }, + { + 'name': 'closed mailbox with lowered flag', + 'unicode': '1F4EA', + 'emoji': '๐Ÿ“ช', + 'data': '📪', + 'tags': [ + 'closed', + 'flag', + 'lowered', + 'mail', + 'mailbox', + 'postbox' + ], + 'shortcodes': [ + ':closed_mailbox_with_lowered_flag:' + ] + }, + { + 'name': 'open mailbox with raised flag', + 'unicode': '1F4EC', + 'emoji': '๐Ÿ“ฌ', + 'data': '📬', + 'tags': [ + 'flag', + 'mail', + 'mailbox', + 'open', + 'postbox', + 'raised' + ], + 'shortcodes': [ + ':open_mailbox_with_raised_flag:' + ] + }, + { + 'name': 'open mailbox with lowered flag', + 'unicode': '1F4ED', + 'emoji': '๐Ÿ“ญ', + 'data': '📭', + 'tags': [ + 'flag', + 'lowered', + 'mail', + 'mailbox', + 'open', + 'postbox' + ], + 'shortcodes': [ + ':open_mailbox_with_lowered_flag:' + ] + }, + { + 'name': 'postbox', + 'unicode': '1F4EE', + 'emoji': '๐Ÿ“ฎ', + 'data': '📮', + 'tags': [ + 'mail', + 'mailbox' + ], + 'shortcodes': [ + ':postbox:' + ] + }, + { + 'name': 'ballot box with ballot', + 'unicode': '1F5F3', + 'emoji': '๐Ÿ—ณ', + 'data': '🗳', + 'tags': [ + 'ballot', + 'box' + ], + 'shortcodes': [ + ':ballot_box_with_ballot:' + ] + }, + { + 'name': 'pencil', + 'unicode': '270F', + 'emoji': 'โœ', + 'data': '✏', + 'tags': [ + 'pencil' + ], + 'shortcodes': [ + ':pencil:' + ] + }, + { + 'name': 'black nib', + 'unicode': '2712', + 'emoji': 'โœ’', + 'data': '✒', + 'tags': [ + 'black', + 'nib', + 'pen' + ], + 'shortcodes': [ + ':black_nib:' + ] + }, + { + 'name': 'fountain pen', + 'unicode': '1F58B', + 'emoji': '๐Ÿ–‹', + 'data': '🖋', + 'tags': [ + 'fountain', + 'pen' + ], + 'shortcodes': [ + ':fountain_pen:' + ] + }, + { + 'name': 'pen', + 'unicode': '1F58A', + 'emoji': '๐Ÿ–Š', + 'data': '🖊', + 'tags': [ + 'ballpoint' + ], + 'shortcodes': [ + ':pen:' + ] + }, + { + 'name': 'paintbrush', + 'unicode': '1F58C', + 'emoji': '๐Ÿ–Œ', + 'data': '🖌', + 'tags': [ + 'painting' + ], + 'shortcodes': [ + ':paintbrush:' + ] + }, + { + 'name': 'crayon', + 'unicode': '1F58D', + 'emoji': '๐Ÿ–', + 'data': '🖍', + 'tags': [ + 'crayon' + ], + 'shortcodes': [ + ':crayon:' + ] + }, + { + 'name': 'memo', + 'unicode': '1F4DD', + 'emoji': '๐Ÿ“', + 'data': '📝', + 'tags': [ + 'communication', + 'media', + 'notes', + 'pencil' + ], + 'shortcodes': [ + ':memo:' + ] + }, + { + 'name': 'briefcase', + 'unicode': '1F4BC', + 'emoji': '๐Ÿ’ผ', + 'data': '💼', + 'tags': [ + 'office' + ], + 'shortcodes': [ + ':briefcase:' + ] + }, + { + 'name': 'file folder', + 'unicode': '1F4C1', + 'emoji': '๐Ÿ“', + 'data': '📁', + 'tags': [ + 'file', + 'folder' + ], + 'shortcodes': [ + ':file_folder:' + ] + }, + { + 'name': 'open file folder', + 'unicode': '1F4C2', + 'emoji': '๐Ÿ“‚', + 'data': '📂', + 'tags': [ + 'file', + 'folder', + 'open' + ], + 'shortcodes': [ + ':open_file_folder:' + ] + }, + { + 'name': 'card index dividers', + 'unicode': '1F5C2', + 'emoji': '๐Ÿ—‚', + 'data': '🗂', + 'tags': [ + 'card', + 'dividers', + 'index' + ], + 'shortcodes': [ + ':card_index_dividers:' + ] + }, + { + 'name': 'calendar', + 'unicode': '1F4C5', + 'emoji': '๐Ÿ“…', + 'data': '📅', + 'tags': [ + 'date' + ], + 'shortcodes': [ + ':calendar:' + ] + }, + { + 'name': 'tear-off calendar', + 'unicode': '1F4C6', + 'emoji': '๐Ÿ“†', + 'data': '📆', + 'tags': [ + 'calendar', + 'tear-off' + ], + 'shortcodes': [ + ':tear-off_calendar:' + ] + }, + { + 'name': 'spiral notepad', + 'unicode': '1F5D2', + 'emoji': '๐Ÿ—’', + 'data': '🗒', + 'tags': [ + 'note', + 'notepad', + 'pad', + 'spiral' + ], + 'shortcodes': [ + ':spiral_notepad:' + ] + }, + { + 'name': 'spiral calendar', + 'unicode': '1F5D3', + 'emoji': '๐Ÿ—“', + 'data': '🗓', + 'tags': [ + 'calendar', + 'pad', + 'spiral' + ], + 'shortcodes': [ + ':spiral_calendar:' + ] + }, + { + 'name': 'card index', + 'unicode': '1F4C7', + 'emoji': '๐Ÿ“‡', + 'data': '📇', + 'tags': [ + 'card', + 'index', + 'old', + 'rolodex', + 'school' + ], + 'shortcodes': [ + ':card_index:' + ] + }, + { + 'name': 'chart increasing', + 'unicode': '1F4C8', + 'emoji': '๐Ÿ“ˆ', + 'data': '📈', + 'tags': [ + 'chart', + 'data', + 'graph', + 'growth', + 'increasing', + 'right', + 'trend', + 'up', + 'upward' + ], + 'shortcodes': [ + ':chart_increasing:' + ] + }, + { + 'name': 'chart decreasing', + 'unicode': '1F4C9', + 'emoji': '๐Ÿ“‰', + 'data': '📉', + 'tags': [ + 'chart', + 'data', + 'decreasing', + 'down', + 'downward', + 'graph', + 'negative', + 'trend' + ], + 'shortcodes': [ + ':chart_decreasing:' + ] + }, + { + 'name': 'bar chart', + 'unicode': '1F4CA', + 'emoji': '๐Ÿ“Š', + 'data': '📊', + 'tags': [ + 'bar', + 'chart', + 'data', + 'graph' + ], + 'shortcodes': [ + ':bar_chart:' + ] + }, + { + 'name': 'clipboard', + 'unicode': '1F4CB', + 'emoji': '๐Ÿ“‹', + 'data': '📋', + 'tags': [ + 'do', + 'list', + 'notes' + ], + 'shortcodes': [ + ':clipboard:' + ] + }, + { + 'name': 'pushpin', + 'unicode': '1F4CC', + 'emoji': '๐Ÿ“Œ', + 'data': '📌', + 'tags': [ + 'collage', + 'pin' + ], + 'shortcodes': [ + ':pushpin:' + ] + }, + { + 'name': 'round pushpin', + 'unicode': '1F4CD', + 'emoji': '๐Ÿ“', + 'data': '📍', + 'tags': [ + 'location', + 'map', + 'pin', + 'pushpin', + 'round' + ], + 'shortcodes': [ + ':round_pushpin:' + ] + }, + { + 'name': 'paperclip', + 'unicode': '1F4CE', + 'emoji': '๐Ÿ“Ž', + 'data': '📎', + 'tags': [ + 'paperclip' + ], + 'shortcodes': [ + ':paperclip:' + ] + }, + { + 'name': 'linked paperclips', + 'unicode': '1F587', + 'emoji': '๐Ÿ–‡', + 'data': '🖇', + 'tags': [ + 'link', + 'linked', + 'paperclip', + 'paperclips' + ], + 'shortcodes': [ + ':linked_paperclips:' + ] + }, + { + 'name': 'straight ruler', + 'unicode': '1F4CF', + 'emoji': '๐Ÿ“', + 'data': '📏', + 'tags': [ + 'angle', + 'edge', + 'math', + 'ruler', + 'straight', + 'straightedge' + ], + 'shortcodes': [ + ':straight_ruler:' + ] + }, + { + 'name': 'triangular ruler', + 'unicode': '1F4D0', + 'emoji': '๐Ÿ“', + 'data': '📐', + 'tags': [ + 'angle', + 'math', + 'rule', + 'ruler', + 'set', + 'slide', + 'triangle', + 'triangular' + ], + 'shortcodes': [ + ':triangular_ruler:' + ] + }, + { + 'name': 'scissors', + 'unicode': '2702', + 'emoji': 'โœ‚', + 'data': '✂', + 'tags': [ + 'cut', + 'cutting', + 'paper', + 'tool' + ], + 'shortcodes': [ + ':scissors:' + ] + }, + { + 'name': 'card file box', + 'unicode': '1F5C3', + 'emoji': '๐Ÿ—ƒ', + 'data': '🗃', + 'tags': [ + 'box', + 'card', + 'file' + ], + 'shortcodes': [ + ':card_file_box:' + ] + }, + { + 'name': 'file cabinet', + 'unicode': '1F5C4', + 'emoji': '๐Ÿ—„', + 'data': '🗄', + 'tags': [ + 'cabinet', + 'file', + 'filing', + 'paper' + ], + 'shortcodes': [ + ':file_cabinet:' + ] + }, + { + 'name': 'wastebasket', + 'unicode': '1F5D1', + 'emoji': '๐Ÿ—‘', + 'data': '🗑', + 'tags': [ + 'can', + 'garbage', + 'trash', + 'waste' + ], + 'shortcodes': [ + ':wastebasket:' + ] + }, + { + 'name': 'locked', + 'unicode': '1F512', + 'emoji': '๐Ÿ”’', + 'data': '🔒', + 'tags': [ + 'closed', + 'lock', + 'private' + ], + 'shortcodes': [ + ':locked:' + ] + }, + { + 'name': 'unlocked', + 'unicode': '1F513', + 'emoji': '๐Ÿ”“', + 'data': '🔓', + 'tags': [ + 'cracked', + 'lock', + 'open', + 'unlock' + ], + 'shortcodes': [ + ':unlocked:' + ] + }, + { + 'name': 'locked with pen', + 'unicode': '1F50F', + 'emoji': '๐Ÿ”', + 'data': '🔏', + 'tags': [ + 'ink', + 'lock', + 'locked', + 'nib', + 'pen', + 'privacy' + ], + 'shortcodes': [ + ':locked_with_pen:' + ] + }, + { + 'name': 'locked with key', + 'unicode': '1F510', + 'emoji': '๐Ÿ”', + 'data': '🔐', + 'tags': [ + 'bike', + 'closed', + 'key', + 'lock', + 'locked', + 'secure' + ], + 'shortcodes': [ + ':locked_with_key:' + ] + }, + { + 'name': 'key', + 'unicode': '1F511', + 'emoji': '๐Ÿ”‘', + 'data': '🔑', + 'tags': [ + 'keys', + 'lock', + 'major', + 'password', + 'unlock' + ], + 'shortcodes': [ + ':key:' + ] + }, + { + 'name': 'old key', + 'unicode': '1F5DD', + 'emoji': '๐Ÿ—', + 'data': '🗝', + 'tags': [ + 'clue', + 'key', + 'lock', + 'old' + ], + 'shortcodes': [ + ':old_key:' + ] + }, + { + 'name': 'hammer', + 'unicode': '1F528', + 'emoji': '๐Ÿ”จ', + 'data': '🔨', + 'tags': [ + 'home', + 'improvement', + 'repairs', + 'tool' + ], + 'shortcodes': [ + ':hammer:' + ] + }, + { + 'name': 'axe', + 'unicode': '1FA93', + 'emoji': '๐Ÿช“', + 'data': '🪓', + 'tags': [ + 'ax', + 'chop', + 'hatchet', + 'split', + 'wood' + ], + 'shortcodes': [ + ':axe:' + ] + }, + { + 'name': 'pick', + 'unicode': '26CF', + 'emoji': 'โ›', + 'data': '⛏', + 'tags': [ + 'hammer', + 'mining', + 'tool' + ], + 'shortcodes': [ + ':pick:' + ] + }, + { + 'name': 'hammer and pick', + 'unicode': '2692', + 'emoji': 'โš’', + 'data': '⚒', + 'tags': [ + 'hammer', + 'pick', + 'tool' + ], + 'shortcodes': [ + ':hammer_and_pick:' + ] + }, + { + 'name': 'hammer and wrench', + 'unicode': '1F6E0', + 'emoji': '๐Ÿ› ', + 'data': '🛠', + 'tags': [ + 'hammer', + 'spanner', + 'tool', + 'wrench' + ], + 'shortcodes': [ + ':hammer_and_wrench:' + ] + }, + { + 'name': 'dagger', + 'unicode': '1F5E1', + 'emoji': '๐Ÿ—ก', + 'data': '🗡', + 'tags': [ + 'knife', + 'weapon' + ], + 'shortcodes': [ + ':dagger:' + ] + }, + { + 'name': 'crossed swords', + 'unicode': '2694', + 'emoji': 'โš”', + 'data': '⚔', + 'tags': [ + 'crossed', + 'swords', + 'weapon' + ], + 'shortcodes': [ + ':crossed_swords:' + ] + }, + { + 'name': 'bomb', + 'unicode': '1F4A3', + 'emoji': '๐Ÿ’ฃ', + 'data': '💣', + 'tags': [ + 'boom', + 'comic', + 'dangerous', + 'explosion', + 'hot' + ], + 'shortcodes': [ + ':bomb:' + ] + }, + { + 'name': 'boomerang', + 'unicode': '1FA83', + 'emoji': '๐Ÿชƒ', + 'data': '🪃', + 'tags': [ + 'rebound', + 'repercussion', + 'weapon' + ], + 'shortcodes': [ + ':boomerang:' + ] + }, + { + 'name': 'bow and arrow', + 'unicode': '1F3F9', + 'emoji': '๐Ÿน', + 'data': '🏹', + 'tags': [ + 'archer', + 'archery', + 'arrow', + 'bow', + 'sagittarius', + 'tool', + 'weapon', + 'zodiac' + ], + 'shortcodes': [ + ':bow_and_arrow:' + ] + }, + { + 'name': 'shield', + 'unicode': '1F6E1', + 'emoji': '๐Ÿ›ก', + 'data': '🛡', + 'tags': [ + 'weapon' + ], + 'shortcodes': [ + ':shield:' + ] + }, + { + 'name': 'carpentry saw', + 'unicode': '1FA9A', + 'emoji': '๐Ÿชš', + 'data': '🪚', + 'tags': [ + 'carpenter', + 'carpentry', + 'cut', + 'lumber', + 'saw', + 'tool', + 'trim' + ], + 'shortcodes': [ + ':carpentry_saw:' + ] + }, + { + 'name': 'wrench', + 'unicode': '1F527', + 'emoji': '๐Ÿ”ง', + 'data': '🔧', + 'tags': [ + 'home', + 'improvement', + 'spanner', + 'tool' + ], + 'shortcodes': [ + ':wrench:' + ] + }, + { + 'name': 'screwdriver', + 'unicode': '1FA9B', + 'emoji': '๐Ÿช›', + 'data': '🪛', + 'tags': [ + 'flathead', + 'handy', + 'screw', + 'tool' + ], + 'shortcodes': [ + ':screwdriver:' + ] + }, + { + 'name': 'nut and bolt', + 'unicode': '1F529', + 'emoji': '๐Ÿ”ฉ', + 'data': '🔩', + 'tags': [ + 'bolt', + 'home', + 'improvement', + 'nut', + 'tool' + ], + 'shortcodes': [ + ':nut_and_bolt:' + ] + }, + { + 'name': 'gear', + 'unicode': '2699', + 'emoji': 'โš™', + 'data': '⚙', + 'tags': [ + 'cog', + 'cogwheel', + 'tool' + ], + 'shortcodes': [ + ':gear:' + ] + }, + { + 'name': 'clamp', + 'unicode': '1F5DC', + 'emoji': '๐Ÿ—œ', + 'data': '🗜', + 'tags': [ + 'compress', + 'tool', + 'vice' + ], + 'shortcodes': [ + ':clamp:' + ] + }, + { + 'name': 'balance scale', + 'unicode': '2696', + 'emoji': 'โš–', + 'data': '⚖', + 'tags': [ + 'balance', + 'justice', + 'libra', + 'scale', + 'scales', + 'tool', + 'weight', + 'zodiac' + ], + 'shortcodes': [ + ':balance_scale:' + ] + }, + { + 'name': 'white cane', + 'unicode': '1F9AF', + 'emoji': '๐Ÿฆฏ', + 'data': '🦯', + 'tags': [ + 'accessibility', + 'blind', + 'cane', + 'probing', + 'white' + ], + 'shortcodes': [ + ':white_cane:' + ] + }, + { + 'name': 'link', + 'unicode': '1F517', + 'emoji': '๐Ÿ”—', + 'data': '🔗', + 'tags': [ + 'links' + ], + 'shortcodes': [ + ':link:' + ] + }, + { + 'name': 'broken chain', + 'unicode': '26D3-FE0F-200D-1F4A5', + 'emoji': 'โ›“๏ธโ€๐Ÿ’ฅ', + 'data': '⛓-FE0F-200D-1F4A5;', + 'tags': [ + 'break', + 'breaking', + 'broken', + 'chain', + 'cuffs', + 'freedom' + ], + 'shortcodes': [ + ':broken_chain:' + ] + }, + { + 'name': 'chains', + 'unicode': '26D3', + 'emoji': 'โ›“', + 'data': '⛓', + 'tags': [ + 'chain' + ], + 'shortcodes': [ + ':chains:' + ] + }, + { + 'name': 'hook', + 'unicode': '1FA9D', + 'emoji': '๐Ÿช', + 'data': '🪝', + 'tags': [ + 'catch', + 'crook', + 'curve', + 'ensnare', + 'point', + 'selling' + ], + 'shortcodes': [ + ':hook:' + ] + }, + { + 'name': 'toolbox', + 'unicode': '1F9F0', + 'emoji': '๐Ÿงฐ', + 'data': '🧰', + 'tags': [ + 'box', + 'chest', + 'mechanic', + 'red', + 'tool' + ], + 'shortcodes': [ + ':toolbox:' + ] + }, + { + 'name': 'magnet', + 'unicode': '1F9F2', + 'emoji': '๐Ÿงฒ', + 'data': '🧲', + 'tags': [ + 'attraction', + 'horseshoe', + 'magnetic', + 'negative', + 'positive', + 'shape', + 'u' + ], + 'shortcodes': [ + ':magnet:' + ] + }, + { + 'name': 'ladder', + 'unicode': '1FA9C', + 'emoji': '๐Ÿชœ', + 'data': '🪜', + 'tags': [ + 'climb', + 'rung', + 'step' + ], + 'shortcodes': [ + ':ladder:' + ] + }, + { + 'name': 'shovel', + 'unicode': '1FA8F', + 'emoji': '๐Ÿช', + 'data': '🪏', + 'tags': [ + 'bury', + 'dig', + 'garden', + 'hole', + 'plant', + 'scoop', + 'snow', + 'spade' + ], + 'shortcodes': [ + ':shovel:' + ] + }, + { + 'name': 'alembic', + 'unicode': '2697', + 'emoji': 'โš—', + 'data': '⚗', + 'tags': [ + 'chemistry', + 'tool' + ], + 'shortcodes': [ + ':alembic:' + ] + }, + { + 'name': 'test tube', + 'unicode': '1F9EA', + 'emoji': '๐Ÿงช', + 'data': '🧪', + 'tags': [ + 'chemist', + 'chemistry', + 'experiment', + 'lab', + 'science', + 'test', + 'tube' + ], + 'shortcodes': [ + ':test_tube:' + ] + }, + { + 'name': 'petri dish', + 'unicode': '1F9EB', + 'emoji': '๐Ÿงซ', + 'data': '🧫', + 'tags': [ + 'bacteria', + 'biologist', + 'biology', + 'culture', + 'dish', + 'lab', + 'petri' + ], + 'shortcodes': [ + ':petri_dish:' + ] + }, + { + 'name': 'dna', + 'unicode': '1F9EC', + 'emoji': '๐Ÿงฌ', + 'data': '🧬', + 'tags': [ + 'biologist', + 'evolution', + 'gene', + 'genetics', + 'life' + ], + 'shortcodes': [ + ':dna:' + ] + }, + { + 'name': 'microscope', + 'unicode': '1F52C', + 'emoji': '๐Ÿ”ฌ', + 'data': '🔬', + 'tags': [ + 'experiment', + 'lab', + 'science', + 'tool' + ], + 'shortcodes': [ + ':microscope:' + ] + }, + { + 'name': 'telescope', + 'unicode': '1F52D', + 'emoji': '๐Ÿ”ญ', + 'data': '🔭', + 'tags': [ + 'contact', + 'extraterrestrial', + 'science', + 'tool' + ], + 'shortcodes': [ + ':telescope:' + ] + }, + { + 'name': 'satellite antenna', + 'unicode': '1F4E1', + 'emoji': '๐Ÿ“ก', + 'data': '📡', + 'tags': [ + 'aliens', + 'antenna', + 'contact', + 'dish', + 'satellite', + 'science' + ], + 'shortcodes': [ + ':satellite_antenna:' + ] + }, + { + 'name': 'syringe', + 'unicode': '1F489', + 'emoji': '๐Ÿ’‰', + 'data': '💉', + 'tags': [ + 'doctor', + 'flu', + 'medicine', + 'needle', + 'shot', + 'sick', + 'tool', + 'vaccination' + ], + 'shortcodes': [ + ':syringe:' + ] + }, + { + 'name': 'drop of blood', + 'unicode': '1FA78', + 'emoji': '๐Ÿฉธ', + 'data': '🩸', + 'tags': [ + 'bleed', + 'blood', + 'donation', + 'drop', + 'injury', + 'medicine', + 'menstruation' + ], + 'shortcodes': [ + ':drop_of_blood:' + ] + }, + { + 'name': 'pill', + 'unicode': '1F48A', + 'emoji': '๐Ÿ’Š', + 'data': '💊', + 'tags': [ + 'doctor', + 'drugs', + 'medicated', + 'medicine', + 'pills', + 'sick', + 'vitamin' + ], + 'shortcodes': [ + ':pill:' + ] + }, + { + 'name': 'adhesive bandage', + 'unicode': '1FA79', + 'emoji': '๐Ÿฉน', + 'data': '🩹', + 'tags': [ + 'adhesive', + 'bandage' + ], + 'shortcodes': [ + ':adhesive_bandage:' + ] + }, + { + 'name': 'crutch', + 'unicode': '1FA7C', + 'emoji': '๐Ÿฉผ', + 'data': '🩼', + 'tags': [ + 'aid', + 'cane', + 'disability', + 'help', + 'hurt', + 'injured', + 'mobility', + 'stick' + ], + 'shortcodes': [ + ':crutch:' + ] + }, + { + 'name': 'stethoscope', + 'unicode': '1FA7A', + 'emoji': '๐Ÿฉบ', + 'data': '🩺', + 'tags': [ + 'doctor', + 'heart', + 'medicine' + ], + 'shortcodes': [ + ':stethoscope:' + ] + }, + { + 'name': 'x-ray', + 'unicode': '1FA7B', + 'emoji': '๐Ÿฉป', + 'data': '🩻', + 'tags': [ + 'bones', + 'doctor', + 'medical', + 'skeleton', + 'skull', + 'xray' + ], + 'shortcodes': [ + ':x-ray:' + ] + }, + { + 'name': 'door', + 'unicode': '1F6AA', + 'emoji': '๐Ÿšช', + 'data': '🚪', + 'tags': [ + 'back', + 'closet', + 'front' + ], + 'shortcodes': [ + ':door:' + ] + }, + { + 'name': 'elevator', + 'unicode': '1F6D7', + 'emoji': '๐Ÿ›—', + 'data': '🛗', + 'tags': [ + 'accessibility', + 'hoist', + 'lift' + ], + 'shortcodes': [ + ':elevator:' + ] + }, + { + 'name': 'mirror', + 'unicode': '1FA9E', + 'emoji': '๐Ÿชž', + 'data': '🪞', + 'tags': [ + 'makeup', + 'reflection', + 'reflector', + 'speculum' + ], + 'shortcodes': [ + ':mirror:' + ] + }, + { + 'name': 'window', + 'unicode': '1FA9F', + 'emoji': '๐ŸชŸ', + 'data': '🪟', + 'tags': [ + 'air', + 'frame', + 'fresh', + 'opening', + 'transparent', + 'view' + ], + 'shortcodes': [ + ':window:' + ] + }, + { + 'name': 'bed', + 'unicode': '1F6CF', + 'emoji': '๐Ÿ›', + 'data': '🛏', + 'tags': [ + 'hotel', + 'sleep' + ], + 'shortcodes': [ + ':bed:' + ] + }, + { + 'name': 'couch and lamp', + 'unicode': '1F6CB', + 'emoji': '๐Ÿ›‹', + 'data': '🛋', + 'tags': [ + 'couch', + 'hotel', + 'lamp' + ], + 'shortcodes': [ + ':couch_and_lamp:' + ] + }, + { + 'name': 'chair', + 'unicode': '1FA91', + 'emoji': '๐Ÿช‘', + 'data': '🪑', + 'tags': [ + 'seat', + 'sit' + ], + 'shortcodes': [ + ':chair:' + ] + }, + { + 'name': 'toilet', + 'unicode': '1F6BD', + 'emoji': '๐Ÿšฝ', + 'data': '🚽', + 'tags': [ + 'bathroom' + ], + 'shortcodes': [ + ':toilet:' + ] + }, + { + 'name': 'plunger', + 'unicode': '1FAA0', + 'emoji': '๐Ÿช ', + 'data': '🪠', + 'tags': [ + 'cup', + 'force', + 'plumber', + 'poop', + 'suction', + 'toilet' + ], + 'shortcodes': [ + ':plunger:' + ] + }, + { + 'name': 'shower', + 'unicode': '1F6BF', + 'emoji': '๐Ÿšฟ', + 'data': '🚿', + 'tags': [ + 'water' + ], + 'shortcodes': [ + ':shower:' + ] + }, + { + 'name': 'bathtub', + 'unicode': '1F6C1', + 'emoji': '๐Ÿ›', + 'data': '🛁', + 'tags': [ + 'bath' + ], + 'shortcodes': [ + ':bathtub:' + ] + }, + { + 'name': 'mouse trap', + 'unicode': '1FAA4', + 'emoji': '๐Ÿชค', + 'data': '🪤', + 'tags': [ + 'bait', + 'cheese', + 'lure', + 'mouse', + 'mousetrap', + 'snare', + 'trap' + ], + 'shortcodes': [ + ':mouse_trap:' + ] + }, + { + 'name': 'razor', + 'unicode': '1FA92', + 'emoji': '๐Ÿช’', + 'data': '🪒', + 'tags': [ + 'sharp', + 'shave' + ], + 'shortcodes': [ + ':razor:' + ] + }, + { + 'name': 'lotion bottle', + 'unicode': '1F9F4', + 'emoji': '๐Ÿงด', + 'data': '🧴', + 'tags': [ + 'bottle', + 'lotion', + 'moisturizer', + 'shampoo', + 'sunscreen' + ], + 'shortcodes': [ + ':lotion_bottle:' + ] + }, + { + 'name': 'safety pin', + 'unicode': '1F9F7', + 'emoji': '๐Ÿงท', + 'data': '🧷', + 'tags': [ + 'diaper', + 'pin', + 'punk', + 'rock', + 'safety' + ], + 'shortcodes': [ + ':safety_pin:' + ] + }, + { + 'name': 'broom', + 'unicode': '1F9F9', + 'emoji': '๐Ÿงน', + 'data': '🧹', + 'tags': [ + 'cleaning', + 'sweeping', + 'witch' + ], + 'shortcodes': [ + ':broom:' + ] + }, + { + 'name': 'basket', + 'unicode': '1F9FA', + 'emoji': '๐Ÿงบ', + 'data': '🧺', + 'tags': [ + 'farming', + 'laundry', + 'picnic' + ], + 'shortcodes': [ + ':basket:' + ] + }, + { + 'name': 'roll of paper', + 'unicode': '1F9FB', + 'emoji': '๐Ÿงป', + 'data': '🧻', + 'tags': [ + 'paper', + 'roll', + 'toilet', + 'towels' + ], + 'shortcodes': [ + ':roll_of_paper:' + ] + }, + { + 'name': 'bucket', + 'unicode': '1FAA3', + 'emoji': '๐Ÿชฃ', + 'data': '🪣', + 'tags': [ + 'cask', + 'pail', + 'vat' + ], + 'shortcodes': [ + ':bucket:' + ] + }, + { + 'name': 'soap', + 'unicode': '1F9FC', + 'emoji': '๐Ÿงผ', + 'data': '🧼', + 'tags': [ + 'bar', + 'bathing', + 'clean', + 'cleaning', + 'lather', + 'soapdish' + ], + 'shortcodes': [ + ':soap:' + ] + }, + { + 'name': 'bubbles', + 'unicode': '1FAE7', + 'emoji': '๐Ÿซง', + 'data': '🫧', + 'tags': [ + 'bubble', + 'burp', + 'clean', + 'floating', + 'pearl', + 'soap', + 'underwater' + ], + 'shortcodes': [ + ':bubbles:' + ] + }, + { + 'name': 'toothbrush', + 'unicode': '1FAA5', + 'emoji': '๐Ÿชฅ', + 'data': '🪥', + 'tags': [ + 'bathroom', + 'brush', + 'clean', + 'dental', + 'hygiene', + 'teeth', + 'toiletry' + ], + 'shortcodes': [ + ':toothbrush:' + ] + }, + { + 'name': 'sponge', + 'unicode': '1F9FD', + 'emoji': '๐Ÿงฝ', + 'data': '🧽', + 'tags': [ + 'absorbing', + 'cleaning', + 'porous', + 'soak' + ], + 'shortcodes': [ + ':sponge:' + ] + }, + { + 'name': 'fire extinguisher', + 'unicode': '1F9EF', + 'emoji': '๐Ÿงฏ', + 'data': '🧯', + 'tags': [ + 'extinguish', + 'extinguisher', + 'fire', + 'quench' + ], + 'shortcodes': [ + ':fire_extinguisher:' + ] + }, + { + 'name': 'shopping cart', + 'unicode': '1F6D2', + 'emoji': '๐Ÿ›’', + 'data': '🛒', + 'tags': [ + 'cart', + 'shopping', + 'trolley' + ], + 'shortcodes': [ + ':shopping_cart:' + ] + }, + { + 'name': 'cigarette', + 'unicode': '1F6AC', + 'emoji': '๐Ÿšฌ', + 'data': '🚬', + 'tags': [ + 'smoking' + ], + 'shortcodes': [ + ':cigarette:' + ] + }, + { + 'name': 'coffin', + 'unicode': '26B0', + 'emoji': 'โšฐ', + 'data': '⚰', + 'tags': [ + 'dead', + 'death', + 'vampire' + ], + 'shortcodes': [ + ':coffin:' + ] + }, + { + 'name': 'headstone', + 'unicode': '1FAA6', + 'emoji': '๐Ÿชฆ', + 'data': '🪦', + 'tags': [ + 'cemetery', + 'dead', + 'grave', + 'graveyard', + 'memorial', + 'rip', + 'tomb', + 'tombstone' + ], + 'shortcodes': [ + ':headstone:' + ] + }, + { + 'name': 'funeral urn', + 'unicode': '26B1', + 'emoji': 'โšฑ', + 'data': '⚱', + 'tags': [ + 'ashes', + 'death', + 'funeral', + 'urn' + ], + 'shortcodes': [ + ':funeral_urn:' + ] + }, + { + 'name': 'nazar amulet', + 'unicode': '1F9FF', + 'emoji': '๐Ÿงฟ', + 'data': '🧿', + 'tags': [ + 'amulet', + 'bead', + 'blue', + 'charm', + 'evil-eye', + 'nazar', + 'talisman' + ], + 'shortcodes': [ + ':nazar_amulet:' + ] + }, + { + 'name': 'hamsa', + 'unicode': '1FAAC', + 'emoji': '๐Ÿชฌ', + 'data': '🪬', + 'tags': [ + 'amulet', + 'fatima', + 'fortune', + 'guide', + 'hand', + 'mary', + 'miriam', + 'palm', + 'protect', + 'protection' + ], + 'shortcodes': [ + ':hamsa:' + ] + }, + { + 'name': 'moai', + 'unicode': '1F5FF', + 'emoji': '๐Ÿ—ฟ', + 'data': '🗿', + 'tags': [ + 'face', + 'moyai', + 'statue', + 'stoneface', + 'travel' + ], + 'shortcodes': [ + ':moai:' + ] + }, + { + 'name': 'placard', + 'unicode': '1FAA7', + 'emoji': '๐Ÿชง', + 'data': '🪧', + 'tags': [ + 'card', + 'demonstration', + 'notice', + 'picket', + 'plaque', + 'protest', + 'sign' + ], + 'shortcodes': [ + ':placard:' + ] + }, + { + 'name': 'identification card', + 'unicode': '1FAAA', + 'emoji': '๐Ÿชช', + 'data': '🪪', + 'tags': [ + 'card', + 'credentials', + 'document', + 'id', + 'identification', + 'license', + 'security' + ], + 'shortcodes': [ + ':identification_card:' + ] + } + ] + }, + { + 'name': 'symbols', + 'iconClass': 'fas fa-hashtag', + 'emojis': [ + { + 'name': 'ATM sign', + 'unicode': '1F3E7', + 'emoji': '๐Ÿง', + 'data': '🏧', + 'tags': [ + 'atm', + 'automated', + 'bank', + 'cash', + 'money', + 'sign', + 'teller' + ], + 'shortcodes': [ + ':atm_sign:' + ] + }, + { + 'name': 'litter in bin sign', + 'unicode': '1F6AE', + 'emoji': '๐Ÿšฎ', + 'data': '🚮', + 'tags': [ + 'bin', + 'litter', + 'litterbin', + 'sign' + ], + 'shortcodes': [ + ':litter_in_bin_sign:' + ] + }, + { + 'name': 'potable water', + 'unicode': '1F6B0', + 'emoji': '๐Ÿšฐ', + 'data': '🚰', + 'tags': [ + 'drinking', + 'potable', + 'water' + ], + 'shortcodes': [ + ':potable_water:' + ] + }, + { + 'name': 'wheelchair symbol', + 'unicode': '267F', + 'emoji': 'โ™ฟ', + 'data': '♿', + 'tags': [ + 'access', + 'handicap', + 'symbol', + 'wheelchair' + ], + 'shortcodes': [ + ':wheelchair_symbol:' + ] + }, + { + 'name': 'menโ€™s room', + 'unicode': '1F6B9', + 'emoji': '๐Ÿšน', + 'data': '🚹', + 'tags': [ + 'bathroom', + 'lavatory', + 'man', + 'menโ€™s', + 'restroom', + 'room', + 'toilet', + 'wc' + ], + 'shortcodes': [ + ':menโ€™s_room:' + ] + }, + { + 'name': 'womenโ€™s room', + 'unicode': '1F6BA', + 'emoji': '๐Ÿšบ', + 'data': '🚺', + 'tags': [ + 'bathroom', + 'lavatory', + 'restroom', + 'room', + 'toilet', + 'wc', + 'woman', + 'womenโ€™s' + ], + 'shortcodes': [ + ':womenโ€™s_room:' + ] + }, + { + 'name': 'restroom', + 'unicode': '1F6BB', + 'emoji': '๐Ÿšป', + 'data': '🚻', + 'tags': [ + 'bathroom', + 'lavatory', + 'toilet', + 'wc' + ], + 'shortcodes': [ + ':restroom:' + ] + }, + { + 'name': 'baby symbol', + 'unicode': '1F6BC', + 'emoji': '๐Ÿšผ', + 'data': '🚼', + 'tags': [ + 'baby', + 'changing', + 'symbol' + ], + 'shortcodes': [ + ':baby_symbol:' + ] + }, + { + 'name': 'water closet', + 'unicode': '1F6BE', + 'emoji': '๐Ÿšพ', + 'data': '🚾', + 'tags': [ + 'bathroom', + 'closet', + 'lavatory', + 'restroom', + 'toilet', + 'water', + 'wc' + ], + 'shortcodes': [ + ':water_closet:' + ] + }, + { + 'name': 'passport control', + 'unicode': '1F6C2', + 'emoji': '๐Ÿ›‚', + 'data': '🛂', + 'tags': [ + 'control', + 'passport' + ], + 'shortcodes': [ + ':passport_control:' + ] + }, + { + 'name': 'customs', + 'unicode': '1F6C3', + 'emoji': '๐Ÿ›ƒ', + 'data': '🛃', + 'tags': [ + 'packing' + ], + 'shortcodes': [ + ':customs:' + ] + }, + { + 'name': 'baggage claim', + 'unicode': '1F6C4', + 'emoji': '๐Ÿ›„', + 'data': '🛄', + 'tags': [ + 'arrived', + 'baggage', + 'bags', + 'case', + 'checked', + 'claim', + 'journey', + 'packing', + 'plane', + 'ready', + 'travel', + 'trip' + ], + 'shortcodes': [ + ':baggage_claim:' + ] + }, + { + 'name': 'left luggage', + 'unicode': '1F6C5', + 'emoji': '๐Ÿ›…', + 'data': '🛅', + 'tags': [ + 'baggage', + 'case', + 'left', + 'locker', + 'luggage' + ], + 'shortcodes': [ + ':left_luggage:' + ] + }, + { + 'name': 'warning', + 'unicode': '26A0', + 'emoji': 'โš ', + 'data': '⚠', + 'tags': [ + 'caution' + ], + 'shortcodes': [ + ':warning:' + ] + }, + { + 'name': 'children crossing', + 'unicode': '1F6B8', + 'emoji': '๐Ÿšธ', + 'data': '🚸', + 'tags': [ + 'child', + 'children', + 'crossing', + 'pedestrian', + 'traffic' + ], + 'shortcodes': [ + ':children_crossing:' + ] + }, + { + 'name': 'no entry', + 'unicode': '26D4', + 'emoji': 'โ›”', + 'data': '⛔', + 'tags': [ + 'do', + 'entry', + 'fail', + 'forbidden', + 'no', + 'not', + 'pass', + 'prohibited', + 'traffic' + ], + 'shortcodes': [ + ':no_entry:' + ] + }, + { + 'name': 'prohibited', + 'unicode': '1F6AB', + 'emoji': '๐Ÿšซ', + 'data': '🚫', + 'tags': [ + 'entry', + 'forbidden', + 'no', + 'not', + 'smoke' + ], + 'shortcodes': [ + ':prohibited:' + ] + }, + { + 'name': 'no bicycles', + 'unicode': '1F6B3', + 'emoji': '๐Ÿšณ', + 'data': '🚳', + 'tags': [ + 'bicycle', + 'bicycles', + 'bike', + 'forbidden', + 'no', + 'not', + 'prohibited' + ], + 'shortcodes': [ + ':no_bicycles:' + ] + }, + { + 'name': 'no smoking', + 'unicode': '1F6AD', + 'emoji': '๐Ÿšญ', + 'data': '🚭', + 'tags': [ + 'forbidden', + 'no', + 'not', + 'prohibited', + 'smoke', + 'smoking' + ], + 'shortcodes': [ + ':no_smoking:' + ] + }, + { + 'name': 'no littering', + 'unicode': '1F6AF', + 'emoji': '๐Ÿšฏ', + 'data': '🚯', + 'tags': [ + 'forbidden', + 'litter', + 'littering', + 'no', + 'not', + 'prohibited' + ], + 'shortcodes': [ + ':no_littering:' + ] + }, + { + 'name': 'non-potable water', + 'unicode': '1F6B1', + 'emoji': '๐Ÿšฑ', + 'data': '🚱', + 'tags': [ + 'dry', + 'non-drinking', + 'non-potable', + 'prohibited', + 'water' + ], + 'shortcodes': [ + ':non-potable_water:' + ] + }, + { + 'name': 'no pedestrians', + 'unicode': '1F6B7', + 'emoji': '๐Ÿšท', + 'data': '🚷', + 'tags': [ + 'forbidden', + 'no', + 'not', + 'pedestrian', + 'pedestrians', + 'prohibited' + ], + 'shortcodes': [ + ':no_pedestrians:' + ] + }, + { + 'name': 'no mobile phones', + 'unicode': '1F4F5', + 'emoji': '๐Ÿ“ต', + 'data': '📵', + 'tags': [ + 'cell', + 'forbidden', + 'mobile', + 'no', + 'not', + 'phone', + 'phones', + 'prohibited', + 'telephone' + ], + 'shortcodes': [ + ':no_mobile_phones:' + ] + }, + { + 'name': 'no one under eighteen', + 'unicode': '1F51E', + 'emoji': '๐Ÿ”ž', + 'data': '🔞', + 'tags': [ + '18', + 'age', + 'eighteen', + 'forbidden', + 'no', + 'not', + 'one', + 'prohibited', + 'restriction', + 'underage' + ], + 'shortcodes': [ + ':no_one_under_eighteen:' + ] + }, + { + 'name': 'radioactive', + 'unicode': '2622', + 'emoji': 'โ˜ข', + 'data': '☢', + 'tags': [ + 'sign' + ], + 'shortcodes': [ + ':radioactive:' + ] + }, + { + 'name': 'biohazard', + 'unicode': '2623', + 'emoji': 'โ˜ฃ', + 'data': '☣', + 'tags': [ + 'sign' + ], + 'shortcodes': [ + ':biohazard:' + ] + }, + { + 'name': 'up arrow', + 'unicode': '2B06', + 'emoji': 'โฌ†', + 'data': '⬆', + 'tags': [ + 'arrow', + 'cardinal', + 'direction', + 'north', + 'up' + ], + 'shortcodes': [ + ':up_arrow:' + ] + }, + { + 'name': 'up-right arrow', + 'unicode': '2197', + 'emoji': 'โ†—', + 'data': '↗', + 'tags': [ + 'arrow', + 'direction', + 'intercardinal', + 'northeast', + 'up-right' + ], + 'shortcodes': [ + ':up-right_arrow:' + ] + }, + { + 'name': 'right arrow', + 'unicode': '27A1', + 'emoji': 'โžก', + 'data': '➡', + 'tags': [ + 'arrow', + 'cardinal', + 'direction', + 'east', + 'right' + ], + 'shortcodes': [ + ':right_arrow:' + ] + }, + { + 'name': 'down-right arrow', + 'unicode': '2198', + 'emoji': 'โ†˜', + 'data': '↘', + 'tags': [ + 'arrow', + 'direction', + 'down-right', + 'intercardinal', + 'southeast' + ], + 'shortcodes': [ + ':down-right_arrow:' + ] + }, + { + 'name': 'down arrow', + 'unicode': '2B07', + 'emoji': 'โฌ‡', + 'data': '⬇', + 'tags': [ + 'arrow', + 'cardinal', + 'direction', + 'down', + 'south' + ], + 'shortcodes': [ + ':down_arrow:' + ] + }, + { + 'name': 'down-left arrow', + 'unicode': '2199', + 'emoji': 'โ†™', + 'data': '↙', + 'tags': [ + 'arrow', + 'direction', + 'down-left', + 'intercardinal', + 'southwest' + ], + 'shortcodes': [ + ':down-left_arrow:' + ] + }, + { + 'name': 'left arrow', + 'unicode': '2B05', + 'emoji': 'โฌ…', + 'data': '⬅', + 'tags': [ + 'arrow', + 'cardinal', + 'direction', + 'left', + 'west' + ], + 'shortcodes': [ + ':left_arrow:' + ] + }, + { + 'name': 'up-left arrow', + 'unicode': '2196', + 'emoji': 'โ†–', + 'data': '↖', + 'tags': [ + 'arrow', + 'direction', + 'intercardinal', + 'northwest', + 'up-left' + ], + 'shortcodes': [ + ':up-left_arrow:' + ] + }, + { + 'name': 'up-down arrow', + 'unicode': '2195', + 'emoji': 'โ†•', + 'data': '↕', + 'tags': [ + 'arrow', + 'up-down' + ], + 'shortcodes': [ + ':up-down_arrow:' + ] + }, + { + 'name': 'left-right arrow', + 'unicode': '2194', + 'emoji': 'โ†”', + 'data': '↔', + 'tags': [ + 'arrow', + 'left-right' + ], + 'shortcodes': [ + ':left-right_arrow:' + ] + }, + { + 'name': 'right arrow curving left', + 'unicode': '21A9', + 'emoji': 'โ†ฉ', + 'data': '↩', + 'tags': [ + 'arrow', + 'curving', + 'left', + 'right' + ], + 'shortcodes': [ + ':right_arrow_curving_left:' + ] + }, + { + 'name': 'left arrow curving right', + 'unicode': '21AA', + 'emoji': 'โ†ช', + 'data': '↪', + 'tags': [ + 'arrow', + 'curving', + 'left', + 'right' + ], + 'shortcodes': [ + ':left_arrow_curving_right:' + ] + }, + { + 'name': 'right arrow curving up', + 'unicode': '2934', + 'emoji': 'โคด', + 'data': '⤴', + 'tags': [ + 'arrow', + 'curving', + 'right', + 'up' + ], + 'shortcodes': [ + ':right_arrow_curving_up:' + ] + }, + { + 'name': 'right arrow curving down', + 'unicode': '2935', + 'emoji': 'โคต', + 'data': '⤵', + 'tags': [ + 'arrow', + 'curving', + 'down', + 'right' + ], + 'shortcodes': [ + ':right_arrow_curving_down:' + ] + }, + { + 'name': 'clockwise vertical arrows', + 'unicode': '1F503', + 'emoji': '๐Ÿ”ƒ', + 'data': '🔃', + 'tags': [ + 'arrow', + 'arrows', + 'clockwise', + 'refresh', + 'reload', + 'vertical' + ], + 'shortcodes': [ + ':clockwise_vertical_arrows:' + ] + }, + { + 'name': 'counterclockwise arrows button', + 'unicode': '1F504', + 'emoji': '๐Ÿ”„', + 'data': '🔄', + 'tags': [ + 'again', + 'anticlockwise', + 'arrow', + 'arrows', + 'button', + 'counterclockwise', + 'deja', + 'refresh', + 'rewindershins', + 'vu' + ], + 'shortcodes': [ + ':counterclockwise_arrows_button:' + ] + }, + { + 'name': 'BACK arrow', + 'unicode': '1F519', + 'emoji': '๐Ÿ”™', + 'data': '🔙', + 'tags': [ + 'arrow', + 'back' + ], + 'shortcodes': [ + ':back_arrow:' + ] + }, + { + 'name': 'END arrow', + 'unicode': '1F51A', + 'emoji': '๐Ÿ”š', + 'data': '🔚', + 'tags': [ + 'arrow', + 'end' + ], + 'shortcodes': [ + ':end_arrow:' + ] + }, + { + 'name': 'ON! arrow', + 'unicode': '1F51B', + 'emoji': '๐Ÿ”›', + 'data': '🔛', + 'tags': [ + 'arrow', + 'mark', + 'on!' + ], + 'shortcodes': [ + ':on!_arrow:' + ] + }, + { + 'name': 'SOON arrow', + 'unicode': '1F51C', + 'emoji': '๐Ÿ”œ', + 'data': '🔜', + 'tags': [ + 'arrow', + 'brb', + 'omw', + 'soon' + ], + 'shortcodes': [ + ':soon_arrow:' + ] + }, + { + 'name': 'TOP arrow', + 'unicode': '1F51D', + 'emoji': '๐Ÿ”', + 'data': '🔝', + 'tags': [ + 'arrow', + 'homie', + 'top', + 'up' + ], + 'shortcodes': [ + ':top_arrow:' + ] + }, + { + 'name': 'place of worship', + 'unicode': '1F6D0', + 'emoji': '๐Ÿ›', + 'data': '🛐', + 'tags': [ + 'place', + 'pray', + 'religion', + 'worship' + ], + 'shortcodes': [ + ':place_of_worship:' + ] + }, + { + 'name': 'atom symbol', + 'unicode': '269B', + 'emoji': 'โš›', + 'data': '⚛', + 'tags': [ + 'atheist', + 'atom', + 'symbol' + ], + 'shortcodes': [ + ':atom_symbol:' + ] + }, + { + 'name': 'om', + 'unicode': '1F549', + 'emoji': '๐Ÿ•‰', + 'data': '🕉', + 'tags': [ + 'hindu', + 'religion' + ], + 'shortcodes': [ + ':om:' + ] + }, + { + 'name': 'star of David', + 'unicode': '2721', + 'emoji': 'โœก', + 'data': '✡', + 'tags': [ + 'david', + 'jew', + 'jewish', + 'judaism', + 'religion', + 'star' + ], + 'shortcodes': [ + ':star_of_david:' + ] + }, + { + 'name': 'wheel of dharma', + 'unicode': '2638', + 'emoji': 'โ˜ธ', + 'data': '☸', + 'tags': [ + 'buddhist', + 'dharma', + 'religion', + 'wheel' + ], + 'shortcodes': [ + ':wheel_of_dharma:' + ] + }, + { + 'name': 'yin yang', + 'unicode': '262F', + 'emoji': 'โ˜ฏ', + 'data': '☯', + 'tags': [ + 'difficult', + 'lives', + 'religion', + 'tao', + 'taoist', + 'total', + 'yang', + 'yin', + 'yinyang' + ], + 'shortcodes': [ + ':yin_yang:' + ] + }, + { + 'name': 'latin cross', + 'unicode': '271D', + 'emoji': 'โœ', + 'data': '✝', + 'tags': [ + 'christ', + 'christian', + 'cross', + 'latin', + 'religion' + ], + 'shortcodes': [ + ':latin_cross:' + ] + }, + { + 'name': 'orthodox cross', + 'unicode': '2626', + 'emoji': 'โ˜ฆ', + 'data': '☦', + 'tags': [ + 'christian', + 'cross', + 'orthodox', + 'religion' + ], + 'shortcodes': [ + ':orthodox_cross:' + ] + }, + { + 'name': 'star and crescent', + 'unicode': '262A', + 'emoji': 'โ˜ช', + 'data': '☪', + 'tags': [ + 'crescent', + 'islam', + 'muslim', + 'ramadan', + 'religion', + 'star' + ], + 'shortcodes': [ + ':star_and_crescent:' + ] + }, + { + 'name': 'peace symbol', + 'unicode': '262E', + 'emoji': 'โ˜ฎ', + 'data': '☮', + 'tags': [ + 'healing', + 'peace', + 'peaceful', + 'symbol' + ], + 'shortcodes': [ + ':peace_symbol:' + ] + }, + { + 'name': 'menorah', + 'unicode': '1F54E', + 'emoji': '๐Ÿ•Ž', + 'data': '🕎', + 'tags': [ + 'candelabrum', + 'candlestick', + 'hanukkah', + 'jewish', + 'judaism', + 'religion' + ], + 'shortcodes': [ + ':menorah:' + ] + }, + { + 'name': 'dotted six-pointed star', + 'unicode': '1F52F', + 'emoji': '๐Ÿ”ฏ', + 'data': '🔯', + 'tags': [ + 'dotted', + 'fortune', + 'jewish', + 'judaism', + 'six-pointed', + 'star' + ], + 'shortcodes': [ + ':dotted_six-pointed_star:' + ] + }, + { + 'name': 'khanda', + 'unicode': '1FAAF', + 'emoji': '๐Ÿชฏ', + 'data': '🪯', + 'tags': [ + 'deg', + 'fateh', + 'khalsa', + 'religion', + 'sikh', + 'sikhism', + 'tegh' + ], + 'shortcodes': [ + ':khanda:' + ] + }, + { + 'name': 'Aries', + 'unicode': '2648', + 'emoji': 'โ™ˆ', + 'data': '♈', + 'tags': [ + 'aries', + 'horoscope', + 'ram', + 'zodiac' + ], + 'shortcodes': [ + ':aries:' + ] + }, + { + 'name': 'Taurus', + 'unicode': '2649', + 'emoji': 'โ™‰', + 'data': '♉', + 'tags': [ + 'bull', + 'horoscope', + 'ox', + 'taurus', + 'zodiac' + ], + 'shortcodes': [ + ':taurus:' + ] + }, + { + 'name': 'Gemini', + 'unicode': '264A', + 'emoji': 'โ™Š', + 'data': '♊', + 'tags': [ + 'gemini', + 'horoscope', + 'twins', + 'zodiac' + ], + 'shortcodes': [ + ':gemini:' + ] + }, + { + 'name': 'Cancer', + 'unicode': '264B', + 'emoji': 'โ™‹', + 'data': '♋', + 'tags': [ + 'cancer', + 'crab', + 'horoscope', + 'zodiac' + ], + 'shortcodes': [ + ':cancer:' + ] + }, + { + 'name': 'Leo', + 'unicode': '264C', + 'emoji': 'โ™Œ', + 'data': '♌', + 'tags': [ + 'horoscope', + 'leo', + 'lion', + 'zodiac' + ], + 'shortcodes': [ + ':leo:' + ] + }, + { + 'name': 'Virgo', + 'unicode': '264D', + 'emoji': 'โ™', + 'data': '♍', + 'tags': [ + 'horoscope', + 'virgo', + 'zodiac' + ], + 'shortcodes': [ + ':virgo:' + ] + }, + { + 'name': 'Libra', + 'unicode': '264E', + 'emoji': 'โ™Ž', + 'data': '♎', + 'tags': [ + 'balance', + 'horoscope', + 'justice', + 'libra', + 'scales', + 'zodiac' + ], + 'shortcodes': [ + ':libra:' + ] + }, + { + 'name': 'Scorpio', + 'unicode': '264F', + 'emoji': 'โ™', + 'data': '♏', + 'tags': [ + 'horoscope', + 'scorpio', + 'scorpion', + 'scorpius', + 'zodiac' + ], + 'shortcodes': [ + ':scorpio:' + ] + }, + { + 'name': 'Sagittarius', + 'unicode': '2650', + 'emoji': 'โ™', + 'data': '♐', + 'tags': [ + 'archer', + 'horoscope', + 'sagittarius', + 'zodiac' + ], + 'shortcodes': [ + ':sagittarius:' + ] + }, + { + 'name': 'Capricorn', + 'unicode': '2651', + 'emoji': 'โ™‘', + 'data': '♑', + 'tags': [ + 'capricorn', + 'goat', + 'horoscope', + 'zodiac' + ], + 'shortcodes': [ + ':capricorn:' + ] + }, + { + 'name': 'Aquarius', + 'unicode': '2652', + 'emoji': 'โ™’', + 'data': '♒', + 'tags': [ + 'aquarius', + 'bearer', + 'horoscope', + 'water', + 'zodiac' + ], + 'shortcodes': [ + ':aquarius:' + ] + }, + { + 'name': 'Pisces', + 'unicode': '2653', + 'emoji': 'โ™“', + 'data': '♓', + 'tags': [ + 'fish', + 'horoscope', + 'pisces', + 'zodiac' + ], + 'shortcodes': [ + ':pisces:' + ] + }, + { + 'name': 'Ophiuchus', + 'unicode': '26CE', + 'emoji': 'โ›Ž', + 'data': '⛎', + 'tags': [ + 'bearer', + 'ophiuchus', + 'serpent', + 'snake', + 'zodiac' + ], + 'shortcodes': [ + ':ophiuchus:' + ] + }, + { + 'name': 'shuffle tracks button', + 'unicode': '1F500', + 'emoji': '๐Ÿ”€', + 'data': '🔀', + 'tags': [ + 'arrow', + 'button', + 'crossed', + 'shuffle', + 'tracks' + ], + 'shortcodes': [ + ':shuffle_tracks_button:' + ] + }, + { + 'name': 'repeat button', + 'unicode': '1F501', + 'emoji': '๐Ÿ”', + 'data': '🔁', + 'tags': [ + 'arrow', + 'button', + 'clockwise', + 'repeat' + ], + 'shortcodes': [ + ':repeat_button:' + ] + }, + { + 'name': 'repeat single button', + 'unicode': '1F502', + 'emoji': '๐Ÿ”‚', + 'data': '🔂', + 'tags': [ + 'arrow', + 'button', + 'clockwise', + 'once', + 'repeat', + 'single' + ], + 'shortcodes': [ + ':repeat_single_button:' + ] + }, + { + 'name': 'play button', + 'unicode': '25B6', + 'emoji': 'โ–ถ', + 'data': '▶', + 'tags': [ + 'arrow', + 'button', + 'play', + 'right', + 'triangle' + ], + 'shortcodes': [ + ':play_button:' + ] + }, + { + 'name': 'fast-forward button', + 'unicode': '23E9', + 'emoji': 'โฉ', + 'data': '⏩', + 'tags': [ + 'arrow', + 'button', + 'double', + 'fast', + 'fast-forward', + 'forward' + ], + 'shortcodes': [ + ':fast-forward_button:' + ] + }, + { + 'name': 'next track button', + 'unicode': '23ED', + 'emoji': 'โญ', + 'data': '⏭', + 'tags': [ + 'arrow', + 'button', + 'next', + 'scene', + 'track', + 'triangle' + ], + 'shortcodes': [ + ':next_track_button:' + ] + }, + { + 'name': 'play or pause button', + 'unicode': '23EF', + 'emoji': 'โฏ', + 'data': '⏯', + 'tags': [ + 'arrow', + 'button', + 'pause', + 'play', + 'right', + 'triangle' + ], + 'shortcodes': [ + ':play_or_pause_button:' + ] + }, + { + 'name': 'reverse button', + 'unicode': '25C0', + 'emoji': 'โ—€', + 'data': '◀', + 'tags': [ + 'arrow', + 'button', + 'left', + 'reverse', + 'triangle' + ], + 'shortcodes': [ + ':reverse_button:' + ] + }, + { + 'name': 'fast reverse button', + 'unicode': '23EA', + 'emoji': 'โช', + 'data': '⏪', + 'tags': [ + 'arrow', + 'button', + 'double', + 'fast', + 'reverse', + 'rewind' + ], + 'shortcodes': [ + ':fast_reverse_button:' + ] + }, + { + 'name': 'last track button', + 'unicode': '23EE', + 'emoji': 'โฎ', + 'data': '⏮', + 'tags': [ + 'arrow', + 'button', + 'last', + 'previous', + 'scene', + 'track', + 'triangle' + ], + 'shortcodes': [ + ':last_track_button:' + ] + }, + { + 'name': 'upwards button', + 'unicode': '1F53C', + 'emoji': '๐Ÿ”ผ', + 'data': '🔼', + 'tags': [ + 'arrow', + 'button', + 'red', + 'up', + 'upwards' + ], + 'shortcodes': [ + ':upwards_button:' + ] + }, + { + 'name': 'fast up button', + 'unicode': '23EB', + 'emoji': 'โซ', + 'data': '⏫', + 'tags': [ + 'arrow', + 'button', + 'double', + 'fast', + 'up' + ], + 'shortcodes': [ + ':fast_up_button:' + ] + }, + { + 'name': 'downwards button', + 'unicode': '1F53D', + 'emoji': '๐Ÿ”ฝ', + 'data': '🔽', + 'tags': [ + 'arrow', + 'button', + 'down', + 'downwards', + 'red' + ], + 'shortcodes': [ + ':downwards_button:' + ] + }, + { + 'name': 'fast down button', + 'unicode': '23EC', + 'emoji': 'โฌ', + 'data': '⏬', + 'tags': [ + 'arrow', + 'button', + 'double', + 'down', + 'fast' + ], + 'shortcodes': [ + ':fast_down_button:' + ] + }, + { + 'name': 'pause button', + 'unicode': '23F8', + 'emoji': 'โธ', + 'data': '⏸', + 'tags': [ + 'bar', + 'button', + 'double', + 'pause', + 'vertical' + ], + 'shortcodes': [ + ':pause_button:' + ] + }, + { + 'name': 'stop button', + 'unicode': '23F9', + 'emoji': 'โน', + 'data': '⏹', + 'tags': [ + 'button', + 'square', + 'stop' + ], + 'shortcodes': [ + ':stop_button:' + ] + }, + { + 'name': 'record button', + 'unicode': '23FA', + 'emoji': 'โบ', + 'data': '⏺', + 'tags': [ + 'button', + 'circle', + 'record' + ], + 'shortcodes': [ + ':record_button:' + ] + }, + { + 'name': 'eject button', + 'unicode': '23CF', + 'emoji': 'โ', + 'data': '⏏', + 'tags': [ + 'button', + 'eject' + ], + 'shortcodes': [ + ':eject_button:' + ] + }, + { + 'name': 'cinema', + 'unicode': '1F3A6', + 'emoji': '๐ŸŽฆ', + 'data': '🎦', + 'tags': [ + 'camera', + 'film', + 'movie' + ], + 'shortcodes': [ + ':cinema:' + ] + }, + { + 'name': 'dim button', + 'unicode': '1F505', + 'emoji': '๐Ÿ”…', + 'data': '🔅', + 'tags': [ + 'brightness', + 'button', + 'dim', + 'low' + ], + 'shortcodes': [ + ':dim_button:' + ] + }, + { + 'name': 'bright button', + 'unicode': '1F506', + 'emoji': '๐Ÿ”†', + 'data': '🔆', + 'tags': [ + 'bright', + 'brightness', + 'button', + 'light' + ], + 'shortcodes': [ + ':bright_button:' + ] + }, + { + 'name': 'antenna bars', + 'unicode': '1F4F6', + 'emoji': '๐Ÿ“ถ', + 'data': '📶', + 'tags': [ + 'antenna', + 'bar', + 'bars', + 'cell', + 'communication', + 'mobile', + 'phone', + 'signal', + 'telephone' + ], + 'shortcodes': [ + ':antenna_bars:' + ] + }, + { + 'name': 'wireless', + 'unicode': '1F6DC', + 'emoji': '๐Ÿ›œ', + 'data': '🛜', + 'tags': [ + 'broadband', + 'computer', + 'connectivity', + 'hotspot', + 'internet', + 'network', + 'router', + 'smartphone', + 'wi-fi', + 'wifi', + 'wlan' + ], + 'shortcodes': [ + ':wireless:' + ] + }, + { + 'name': 'vibration mode', + 'unicode': '1F4F3', + 'emoji': '๐Ÿ“ณ', + 'data': '📳', + 'tags': [ + 'cell', + 'communication', + 'mobile', + 'mode', + 'phone', + 'telephone', + 'vibration' + ], + 'shortcodes': [ + ':vibration_mode:' + ] + }, + { + 'name': 'mobile phone off', + 'unicode': '1F4F4', + 'emoji': '๐Ÿ“ด', + 'data': '📴', + 'tags': [ + 'cell', + 'mobile', + 'off', + 'phone', + 'telephone' + ], + 'shortcodes': [ + ':mobile_phone_off:' + ] + }, + { + 'name': 'female sign', + 'unicode': '2640', + 'emoji': 'โ™€', + 'data': '♀', + 'tags': [ + 'female', + 'sign', + 'woman' + ], + 'shortcodes': [ + ':female_sign:' + ] + }, + { + 'name': 'male sign', + 'unicode': '2642', + 'emoji': 'โ™‚', + 'data': '♂', + 'tags': [ + 'male', + 'man', + 'sign' + ], + 'shortcodes': [ + ':male_sign:' + ] + }, + { + 'name': 'transgender symbol', + 'unicode': '26A7', + 'emoji': 'โšง', + 'data': '⚧', + 'tags': [ + 'symbol', + 'transgender' + ], + 'shortcodes': [ + ':transgender_symbol:' + ] + }, + { + 'name': 'multiply', + 'unicode': '2716', + 'emoji': 'โœ–', + 'data': '✖', + 'tags': [ + 'cancel', + 'multiplication', + 'sign', + 'x', + 'ร—' + ], + 'shortcodes': [ + ':multiply:' + ] + }, + { + 'name': 'plus', + 'unicode': '2795', + 'emoji': 'โž•', + 'data': '➕', + 'tags': [ + '+' + ], + 'shortcodes': [ + ':plus:' + ] + }, + { + 'name': 'minus', + 'unicode': '2796', + 'emoji': 'โž–', + 'data': '➖', + 'tags': [ + '-', + 'heavy', + 'math', + 'sign', + 'โˆ’' + ], + 'shortcodes': [ + ':minus:' + ] + }, + { + 'name': 'divide', + 'unicode': '2797', + 'emoji': 'โž—', + 'data': '➗', + 'tags': [ + 'division', + 'heavy', + 'math', + 'sign', + 'รท' + ], + 'shortcodes': [ + ':divide:' + ] + }, + { + 'name': 'heavy equals sign', + 'unicode': '1F7F0', + 'emoji': '๐ŸŸฐ', + 'data': '🟰', + 'tags': [ + 'answer', + 'equal', + 'equality', + 'equals', + 'heavy', + 'math', + 'sign' + ], + 'shortcodes': [ + ':heavy_equals_sign:' + ] + }, + { + 'name': 'infinity', + 'unicode': '267E', + 'emoji': 'โ™พ', + 'data': '♾', + 'tags': [ + 'forever', + 'unbounded', + 'universal' + ], + 'shortcodes': [ + ':infinity:' + ] + }, + { + 'name': 'double exclamation mark', + 'unicode': '203C', + 'emoji': 'โ€ผ', + 'data': '‼', + 'tags': [ + '!', + '!!', + 'bangbang', + 'double', + 'exclamation', + 'mark', + 'punctuation' + ], + 'shortcodes': [ + ':double_exclamation_mark:' + ] + }, + { + 'name': 'exclamation question mark', + 'unicode': '2049', + 'emoji': 'โ‰', + 'data': '⁉', + 'tags': [ + '!', + '!?', + '?', + 'exclamation', + 'interrobang', + 'mark', + 'punctuation', + 'question' + ], + 'shortcodes': [ + ':exclamation_question_mark:' + ] + }, + { + 'name': 'red question mark', + 'unicode': '2753', + 'emoji': 'โ“', + 'data': '❓', + 'tags': [ + '?', + 'mark', + 'punctuation', + 'question', + 'red' + ], + 'shortcodes': [ + ':red_question_mark:' + ] + }, + { + 'name': 'white question mark', + 'unicode': '2754', + 'emoji': 'โ”', + 'data': '❔', + 'tags': [ + '?', + 'mark', + 'outlined', + 'punctuation', + 'question', + 'white' + ], + 'shortcodes': [ + ':white_question_mark:' + ] + }, + { + 'name': 'white exclamation mark', + 'unicode': '2755', + 'emoji': 'โ•', + 'data': '❕', + 'tags': [ + '!', + 'exclamation', + 'mark', + 'outlined', + 'punctuation', + 'white' + ], + 'shortcodes': [ + ':white_exclamation_mark:' + ] + }, + { + 'name': 'red exclamation mark', + 'unicode': '2757', + 'emoji': 'โ—', + 'data': '❗', + 'tags': [ + '!', + 'exclamation', + 'mark', + 'punctuation', + 'red' + ], + 'shortcodes': [ + ':red_exclamation_mark:' + ] + }, + { + 'name': 'wavy dash', + 'unicode': '3030', + 'emoji': 'ใ€ฐ', + 'data': '〰', + 'tags': [ + 'dash', + 'punctuation', + 'wavy' + ], + 'shortcodes': [ + ':wavy_dash:' + ] + }, + { + 'name': 'currency exchange', + 'unicode': '1F4B1', + 'emoji': '๐Ÿ’ฑ', + 'data': '💱', + 'tags': [ + 'bank', + 'currency', + 'exchange', + 'money' + ], + 'shortcodes': [ + ':currency_exchange:' + ] + }, + { + 'name': 'heavy dollar sign', + 'unicode': '1F4B2', + 'emoji': '๐Ÿ’ฒ', + 'data': '💲', + 'tags': [ + 'billion', + 'cash', + 'charge', + 'currency', + 'dollar', + 'heavy', + 'million', + 'money', + 'pay', + 'sign' + ], + 'shortcodes': [ + ':heavy_dollar_sign:' + ] + }, + { + 'name': 'medical symbol', + 'unicode': '2695', + 'emoji': 'โš•', + 'data': '⚕', + 'tags': [ + 'aesculapius', + 'medical', + 'medicine', + 'staff', + 'symbol' + ], + 'shortcodes': [ + ':medical_symbol:' + ] + }, + { + 'name': 'recycling symbol', + 'unicode': '267B', + 'emoji': 'โ™ป', + 'data': '♻', + 'tags': [ + 'recycle', + 'recycling', + 'symbol' + ], + 'shortcodes': [ + ':recycling_symbol:' + ] + }, + { + 'name': 'fleur-de-lis', + 'unicode': '269C', + 'emoji': 'โšœ', + 'data': '⚜', + 'tags': [ + 'knights' + ], + 'shortcodes': [ + ':fleur-de-lis:' + ] + }, + { + 'name': 'trident emblem', + 'unicode': '1F531', + 'emoji': '๐Ÿ”ฑ', + 'data': '🔱', + 'tags': [ + 'anchor', + 'emblem', + 'poseidon', + 'ship', + 'tool', + 'trident' + ], + 'shortcodes': [ + ':trident_emblem:' + ] + }, + { + 'name': 'name badge', + 'unicode': '1F4DB', + 'emoji': '๐Ÿ“›', + 'data': '📛', + 'tags': [ + 'badge', + 'name' + ], + 'shortcodes': [ + ':name_badge:' + ] + }, + { + 'name': 'Japanese symbol for beginner', + 'unicode': '1F530', + 'emoji': '๐Ÿ”ฐ', + 'data': '🔰', + 'tags': [ + 'beginner', + 'chevron', + 'green', + 'japanese', + 'leaf', + 'symbol', + 'tool', + 'yellow' + ], + 'shortcodes': [ + ':japanese_symbol_for_beginner:' + ] + }, + { + 'name': 'hollow red circle', + 'unicode': '2B55', + 'emoji': 'โญ•', + 'data': '⭕', + 'tags': [ + 'circle', + 'heavy', + 'hollow', + 'large', + 'o', + 'red' + ], + 'shortcodes': [ + ':hollow_red_circle:' + ] + }, + { + 'name': 'check mark button', + 'unicode': '2705', + 'emoji': 'โœ…', + 'data': '✅', + 'tags': [ + 'button', + 'check', + 'checked', + 'checkmark', + 'complete', + 'completed', + 'done', + 'fixed', + 'mark', + 'tick', + 'โœ“' + ], + 'shortcodes': [ + ':check_mark_button:' + ] + }, + { + 'name': 'check box with check', + 'unicode': '2611', + 'emoji': 'โ˜‘', + 'data': '☑', + 'tags': [ + 'ballot', + 'box', + 'check', + 'checked', + 'done', + 'off', + 'tick', + 'โœ“' + ], + 'shortcodes': [ + ':check_box_with_check:' + ] + }, + { + 'name': 'check mark', + 'unicode': '2714', + 'emoji': 'โœ”', + 'data': '✔', + 'tags': [ + 'check', + 'checked', + 'checkmark', + 'done', + 'heavy', + 'mark', + 'tick', + 'โœ“' + ], + 'shortcodes': [ + ':check_mark:' + ] + }, + { + 'name': 'cross mark', + 'unicode': '274C', + 'emoji': 'โŒ', + 'data': '❌', + 'tags': [ + 'cancel', + 'cross', + 'mark', + 'multiplication', + 'multiply', + 'x', + 'ร—' + ], + 'shortcodes': [ + ':cross_mark:' + ] + }, + { + 'name': 'cross mark button', + 'unicode': '274E', + 'emoji': 'โŽ', + 'data': '❎', + 'tags': [ + 'button', + 'cross', + 'mark', + 'multiplication', + 'multiply', + 'square', + 'x', + 'ร—' + ], + 'shortcodes': [ + ':cross_mark_button:' + ] + }, + { + 'name': 'curly loop', + 'unicode': '27B0', + 'emoji': 'โžฐ', + 'data': '➰', + 'tags': [ + 'curl', + 'curly', + 'loop' + ], + 'shortcodes': [ + ':curly_loop:' + ] + }, + { + 'name': 'double curly loop', + 'unicode': '27BF', + 'emoji': 'โžฟ', + 'data': '➿', + 'tags': [ + 'curl', + 'curly', + 'double', + 'loop' + ], + 'shortcodes': [ + ':double_curly_loop:' + ] + }, + { + 'name': 'part alternation mark', + 'unicode': '303D', + 'emoji': 'ใ€ฝ', + 'data': '〽', + 'tags': [ + 'alternation', + 'mark', + 'part' + ], + 'shortcodes': [ + ':part_alternation_mark:' + ] + }, + { + 'name': 'eight-spoked asterisk', + 'unicode': '2733', + 'emoji': 'โœณ', + 'data': '✳', + 'tags': [ + '*', + 'asterisk', + 'eight-spoked' + ], + 'shortcodes': [ + ':eight-spoked_asterisk:' + ] + }, + { + 'name': 'eight-pointed star', + 'unicode': '2734', + 'emoji': 'โœด', + 'data': '✴', + 'tags': [ + '*', + 'eight-pointed', + 'star' + ], + 'shortcodes': [ + ':eight-pointed_star:' + ] + }, + { + 'name': 'sparkle', + 'unicode': '2747', + 'emoji': 'โ‡', + 'data': '❇', + 'tags': [ + '*' + ], + 'shortcodes': [ + ':sparkle:' + ] + }, + { + 'name': 'copyright', + 'unicode': '00A9', + 'emoji': 'ยฉ', + 'data': '©', + 'tags': [ + 'c' + ], + 'shortcodes': [ + ':copyright:' + ] + }, + { + 'name': 'registered', + 'unicode': '00AE', + 'emoji': 'ยฎ', + 'data': '®', + 'tags': [ + 'r' + ], + 'shortcodes': [ + ':registered:' + ] + }, + { + 'name': 'trade mark', + 'unicode': '2122', + 'emoji': 'โ„ข', + 'data': '™', + 'tags': [ + 'mark', + 'tm', + 'trade', + 'trademark' + ], + 'shortcodes': [ + ':trade_mark:' + ] + }, + { + 'name': 'splatter', + 'unicode': '1FADF', + 'emoji': '๐ŸซŸ', + 'data': '🫟', + 'tags': [ + 'drip', + 'holi', + 'ink', + 'liquid', + 'mess', + 'paint', + 'spill', + 'stain' + ], + 'shortcodes': [ + ':splatter:' + ] + }, + { + 'name': 'keycap: #', + 'unicode': '0023-FE0F-20E3', + 'emoji': '#๏ธโƒฃ', + 'data': '#-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_#:' + ] + }, + { + 'name': 'keycap: *', + 'unicode': '002A-FE0F-20E3', + 'emoji': '*๏ธโƒฃ', + 'data': '*-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_*:' + ] + }, + { + 'name': 'keycap: 0', + 'unicode': '0030-FE0F-20E3', + 'emoji': '0๏ธโƒฃ', + 'data': '0-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_0:' + ] + }, + { + 'name': 'keycap: 1', + 'unicode': '0031-FE0F-20E3', + 'emoji': '1๏ธโƒฃ', + 'data': '1-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_1:' + ] + }, + { + 'name': 'keycap: 2', + 'unicode': '0032-FE0F-20E3', + 'emoji': '2๏ธโƒฃ', + 'data': '2-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_2:' + ] + }, + { + 'name': 'keycap: 3', + 'unicode': '0033-FE0F-20E3', + 'emoji': '3๏ธโƒฃ', + 'data': '3-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_3:' + ] + }, + { + 'name': 'keycap: 4', + 'unicode': '0034-FE0F-20E3', + 'emoji': '4๏ธโƒฃ', + 'data': '4-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_4:' + ] + }, + { + 'name': 'keycap: 5', + 'unicode': '0035-FE0F-20E3', + 'emoji': '5๏ธโƒฃ', + 'data': '5-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_5:' + ] + }, + { + 'name': 'keycap: 6', + 'unicode': '0036-FE0F-20E3', + 'emoji': '6๏ธโƒฃ', + 'data': '6-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_6:' + ] + }, + { + 'name': 'keycap: 7', + 'unicode': '0037-FE0F-20E3', + 'emoji': '7๏ธโƒฃ', + 'data': '7-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_7:' + ] + }, + { + 'name': 'keycap: 8', + 'unicode': '0038-FE0F-20E3', + 'emoji': '8๏ธโƒฃ', + 'data': '8-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_8:' + ] + }, + { + 'name': 'keycap: 9', + 'unicode': '0039-FE0F-20E3', + 'emoji': '9๏ธโƒฃ', + 'data': '9-FE0F-20E3;', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_9:' + ] + }, + { + 'name': 'keycap: 10', + 'unicode': '1F51F', + 'emoji': '๐Ÿ”Ÿ', + 'data': '🔟', + 'tags': [ + 'keycap' + ], + 'shortcodes': [ + ':keycap:_10:' + ] + }, + { + 'name': 'input latin uppercase', + 'unicode': '1F520', + 'emoji': '๐Ÿ” ', + 'data': '🔠', + 'tags': [ + 'abcd', + 'input', + 'latin', + 'letters', + 'uppercase' + ], + 'shortcodes': [ + ':input_latin_uppercase:' + ] + }, + { + 'name': 'input latin lowercase', + 'unicode': '1F521', + 'emoji': '๐Ÿ”ก', + 'data': '🔡', + 'tags': [ + 'abcd', + 'input', + 'latin', + 'letters', + 'lowercase' + ], + 'shortcodes': [ + ':input_latin_lowercase:' + ] + }, + { + 'name': 'input numbers', + 'unicode': '1F522', + 'emoji': '๐Ÿ”ข', + 'data': '🔢', + 'tags': [ + '1234', + 'input', + 'numbers' + ], + 'shortcodes': [ + ':input_numbers:' + ] + }, + { + 'name': 'input symbols', + 'unicode': '1F523', + 'emoji': '๐Ÿ”ฃ', + 'data': '🔣', + 'tags': [ + '%', + '&', + 'input', + 'symbols', + 'โ™ช', + 'ใ€’' + ], + 'shortcodes': [ + ':input_symbols:' + ] + }, + { + 'name': 'input latin letters', + 'unicode': '1F524', + 'emoji': '๐Ÿ”ค', + 'data': '🔤', + 'tags': [ + 'abc', + 'alphabet', + 'input', + 'latin', + 'letters' + ], + 'shortcodes': [ + ':input_latin_letters:' + ] + }, + { + 'name': 'A button (blood type)', + 'unicode': '1F170', + 'emoji': '๐Ÿ…ฐ', + 'data': '🅰', + 'tags': [ + 'blood', + 'button', + 'type' + ], + 'shortcodes': [ + ':a_button_(blood_type):' + ] + }, + { + 'name': 'AB button (blood type)', + 'unicode': '1F18E', + 'emoji': '๐Ÿ†Ž', + 'data': '🆎', + 'tags': [ + 'ab', + 'blood', + 'button', + 'type' + ], + 'shortcodes': [ + ':ab_button_(blood_type):' + ] + }, + { + 'name': 'B button (blood type)', + 'unicode': '1F171', + 'emoji': '๐Ÿ…ฑ', + 'data': '🅱', + 'tags': [ + 'b', + 'blood', + 'button', + 'type' + ], + 'shortcodes': [ + ':b_button_(blood_type):' + ] + }, + { + 'name': 'CL button', + 'unicode': '1F191', + 'emoji': '๐Ÿ†‘', + 'data': '🆑', + 'tags': [ + 'button', + 'cl' + ], + 'shortcodes': [ + ':cl_button:' + ] + }, + { + 'name': 'COOL button', + 'unicode': '1F192', + 'emoji': '๐Ÿ†’', + 'data': '🆒', + 'tags': [ + 'button', + 'cool' + ], + 'shortcodes': [ + ':cool_button:' + ] + }, + { + 'name': 'FREE button', + 'unicode': '1F193', + 'emoji': '๐Ÿ†“', + 'data': '🆓', + 'tags': [ + 'button', + 'free' + ], + 'shortcodes': [ + ':free_button:' + ] + }, + { + 'name': 'information', + 'unicode': '2139', + 'emoji': 'โ„น', + 'data': 'ℹ', + 'tags': [ + 'i' + ], + 'shortcodes': [ + ':information:' + ] + }, + { + 'name': 'ID button', + 'unicode': '1F194', + 'emoji': '๐Ÿ†”', + 'data': '🆔', + 'tags': [ + 'button', + 'id', + 'identity' + ], + 'shortcodes': [ + ':id_button:' + ] + }, + { + 'name': 'circled M', + 'unicode': '24C2', + 'emoji': 'โ“‚', + 'data': 'Ⓜ', + 'tags': [ + 'circle', + 'circled', + 'm' + ], + 'shortcodes': [ + ':circled_m:' + ] + }, + { + 'name': 'NEW button', + 'unicode': '1F195', + 'emoji': '๐Ÿ†•', + 'data': '🆕', + 'tags': [ + 'button', + 'new' + ], + 'shortcodes': [ + ':new_button:' + ] + }, + { + 'name': 'NG button', + 'unicode': '1F196', + 'emoji': '๐Ÿ†–', + 'data': '🆖', + 'tags': [ + 'button', + 'ng' + ], + 'shortcodes': [ + ':ng_button:' + ] + }, + { + 'name': 'O button (blood type)', + 'unicode': '1F17E', + 'emoji': '๐Ÿ…พ', + 'data': '🅾', + 'tags': [ + 'blood', + 'button', + 'o', + 'type' + ], + 'shortcodes': [ + ':o_button_(blood_type):' + ] + }, + { + 'name': 'OK button', + 'unicode': '1F197', + 'emoji': '๐Ÿ†—', + 'data': '🆗', + 'tags': [ + 'button', + 'ok', + 'okay' + ], + 'shortcodes': [ + ':ok_button:' + ] + }, + { + 'name': 'P button', + 'unicode': '1F17F', + 'emoji': '๐Ÿ…ฟ', + 'data': '🅿', + 'tags': [ + 'button', + 'p', + 'parking' + ], + 'shortcodes': [ + ':p_button:' + ] + }, + { + 'name': 'SOS button', + 'unicode': '1F198', + 'emoji': '๐Ÿ†˜', + 'data': '🆘', + 'tags': [ + 'button', + 'help', + 'sos' + ], + 'shortcodes': [ + ':sos_button:' + ] + }, + { + 'name': 'UP! button', + 'unicode': '1F199', + 'emoji': '๐Ÿ†™', + 'data': '🆙', + 'tags': [ + 'button', + 'mark', + 'up', + 'up!' + ], + 'shortcodes': [ + ':up!_button:' + ] + }, + { + 'name': 'VS button', + 'unicode': '1F19A', + 'emoji': '๐Ÿ†š', + 'data': '🆚', + 'tags': [ + 'button', + 'versus', + 'vs' + ], + 'shortcodes': [ + ':vs_button:' + ] + }, + { + 'name': 'Japanese โ€œhereโ€ button', + 'unicode': '1F201', + 'emoji': '๐Ÿˆ', + 'data': '🈁', + 'tags': [ + 'button', + 'here', + 'japanese', + 'katakana' + ], + 'shortcodes': [ + ':japanese_โ€œhereโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œservice chargeโ€ button', + 'unicode': '1F202', + 'emoji': '๐Ÿˆ‚', + 'data': '🈂', + 'tags': [ + 'button', + 'charge', + 'japanese', + 'katakana', + 'service' + ], + 'shortcodes': [ + ':japanese_โ€œservice_chargeโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œmonthly amountโ€ button', + 'unicode': '1F237', + 'emoji': '๐Ÿˆท', + 'data': '🈷', + 'tags': [ + 'amount', + 'button', + 'ideograph', + 'japanese', + 'monthly' + ], + 'shortcodes': [ + ':japanese_โ€œmonthly_amountโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œnot free of chargeโ€ button', + 'unicode': '1F236', + 'emoji': '๐Ÿˆถ', + 'data': '🈶', + 'tags': [ + 'button', + 'charge', + 'free', + 'ideograph', + 'japanese', + 'not' + ], + 'shortcodes': [ + ':japanese_โ€œnot_free_of_chargeโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œreservedโ€ button', + 'unicode': '1F22F', + 'emoji': '๐Ÿˆฏ', + 'data': '🈯', + 'tags': [ + 'button', + 'ideograph', + 'japanese', + 'reserved' + ], + 'shortcodes': [ + ':japanese_โ€œreservedโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œbargainโ€ button', + 'unicode': '1F250', + 'emoji': '๐Ÿ‰', + 'data': '🉐', + 'tags': [ + 'bargain', + 'button', + 'ideograph', + 'japanese' + ], + 'shortcodes': [ + ':japanese_โ€œbargainโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œdiscountโ€ button', + 'unicode': '1F239', + 'emoji': '๐Ÿˆน', + 'data': '🈹', + 'tags': [ + 'button', + 'discount', + 'ideograph', + 'japanese' + ], + 'shortcodes': [ + ':japanese_โ€œdiscountโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œfree of chargeโ€ button', + 'unicode': '1F21A', + 'emoji': '๐Ÿˆš', + 'data': '🈚', + 'tags': [ + 'button', + 'charge', + 'free', + 'ideograph', + 'japanese' + ], + 'shortcodes': [ + ':japanese_โ€œfree_of_chargeโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œprohibitedโ€ button', + 'unicode': '1F232', + 'emoji': '๐Ÿˆฒ', + 'data': '🈲', + 'tags': [ + 'button', + 'ideograph', + 'japanese', + 'prohibited' + ], + 'shortcodes': [ + ':japanese_โ€œprohibitedโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œacceptableโ€ button', + 'unicode': '1F251', + 'emoji': '๐Ÿ‰‘', + 'data': '🉑', + 'tags': [ + 'acceptable', + 'button', + 'ideograph', + 'japanese' + ], + 'shortcodes': [ + ':japanese_โ€œacceptableโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œapplicationโ€ button', + 'unicode': '1F238', + 'emoji': '๐Ÿˆธ', + 'data': '🈸', + 'tags': [ + 'application', + 'button', + 'ideograph', + 'japanese' + ], + 'shortcodes': [ + ':japanese_โ€œapplicationโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œpassing gradeโ€ button', + 'unicode': '1F234', + 'emoji': '๐Ÿˆด', + 'data': '🈴', + 'tags': [ + 'button', + 'grade', + 'ideograph', + 'japanese', + 'passing' + ], + 'shortcodes': [ + ':japanese_โ€œpassing_gradeโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œvacancyโ€ button', + 'unicode': '1F233', + 'emoji': '๐Ÿˆณ', + 'data': '🈳', + 'tags': [ + 'button', + 'ideograph', + 'japanese', + 'vacancy' + ], + 'shortcodes': [ + ':japanese_โ€œvacancyโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œcongratulationsโ€ button', + 'unicode': '3297', + 'emoji': 'ใŠ—', + 'data': '㊗', + 'tags': [ + 'button', + 'congratulations', + 'ideograph', + 'japanese' + ], + 'shortcodes': [ + ':japanese_โ€œcongratulationsโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œsecretโ€ button', + 'unicode': '3299', + 'emoji': 'ใŠ™', + 'data': '㊙', + 'tags': [ + 'button', + 'ideograph', + 'japanese', + 'secret' + ], + 'shortcodes': [ + ':japanese_โ€œsecretโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œopen for businessโ€ button', + 'unicode': '1F23A', + 'emoji': '๐Ÿˆบ', + 'data': '🈺', + 'tags': [ + 'business', + 'button', + 'ideograph', + 'japanese', + 'open' + ], + 'shortcodes': [ + ':japanese_โ€œopen_for_businessโ€_button:' + ] + }, + { + 'name': 'Japanese โ€œno vacancyโ€ button', + 'unicode': '1F235', + 'emoji': '๐Ÿˆต', + 'data': '🈵', + 'tags': [ + 'button', + 'ideograph', + 'japanese', + 'no', + 'vacancy' + ], + 'shortcodes': [ + ':japanese_โ€œno_vacancyโ€_button:' + ] + }, + { + 'name': 'red circle', + 'unicode': '1F534', + 'emoji': '๐Ÿ”ด', + 'data': '🔴', + 'tags': [ + 'circle', + 'geometric', + 'red' + ], + 'shortcodes': [ + ':red_circle:' + ] + }, + { + 'name': 'orange circle', + 'unicode': '1F7E0', + 'emoji': '๐ŸŸ ', + 'data': '🟠', + 'tags': [ + 'circle', + 'orange' + ], + 'shortcodes': [ + ':orange_circle:' + ] + }, + { + 'name': 'yellow circle', + 'unicode': '1F7E1', + 'emoji': '๐ŸŸก', + 'data': '🟡', + 'tags': [ + 'circle', + 'yellow' + ], + 'shortcodes': [ + ':yellow_circle:' + ] + }, + { + 'name': 'green circle', + 'unicode': '1F7E2', + 'emoji': '๐ŸŸข', + 'data': '🟢', + 'tags': [ + 'circle', + 'green' + ], + 'shortcodes': [ + ':green_circle:' + ] + }, + { + 'name': 'blue circle', + 'unicode': '1F535', + 'emoji': '๐Ÿ”ต', + 'data': '🔵', + 'tags': [ + 'blue', + 'circle', + 'geometric' + ], + 'shortcodes': [ + ':blue_circle:' + ] + }, + { + 'name': 'purple circle', + 'unicode': '1F7E3', + 'emoji': '๐ŸŸฃ', + 'data': '🟣', + 'tags': [ + 'circle', + 'purple' + ], + 'shortcodes': [ + ':purple_circle:' + ] + }, + { + 'name': 'brown circle', + 'unicode': '1F7E4', + 'emoji': '๐ŸŸค', + 'data': '🟤', + 'tags': [ + 'brown', + 'circle' + ], + 'shortcodes': [ + ':brown_circle:' + ] + }, + { + 'name': 'black circle', + 'unicode': '26AB', + 'emoji': 'โšซ', + 'data': '⚫', + 'tags': [ + 'black', + 'circle', + 'geometric' + ], + 'shortcodes': [ + ':black_circle:' + ] + }, + { + 'name': 'white circle', + 'unicode': '26AA', + 'emoji': 'โšช', + 'data': '⚪', + 'tags': [ + 'circle', + 'geometric', + 'white' + ], + 'shortcodes': [ + ':white_circle:' + ] + }, + { + 'name': 'red square', + 'unicode': '1F7E5', + 'emoji': '๐ŸŸฅ', + 'data': '🟥', + 'tags': [ + 'card', + 'penalty', + 'red', + 'square' + ], + 'shortcodes': [ + ':red_square:' + ] + }, + { + 'name': 'orange square', + 'unicode': '1F7E7', + 'emoji': '๐ŸŸง', + 'data': '🟧', + 'tags': [ + 'orange', + 'square' + ], + 'shortcodes': [ + ':orange_square:' + ] + }, + { + 'name': 'yellow square', + 'unicode': '1F7E8', + 'emoji': '๐ŸŸจ', + 'data': '🟨', + 'tags': [ + 'card', + 'penalty', + 'square', + 'yellow' + ], + 'shortcodes': [ + ':yellow_square:' + ] + }, + { + 'name': 'green square', + 'unicode': '1F7E9', + 'emoji': '๐ŸŸฉ', + 'data': '🟩', + 'tags': [ + 'green', + 'square' + ], + 'shortcodes': [ + ':green_square:' + ] + }, + { + 'name': 'blue square', + 'unicode': '1F7E6', + 'emoji': '๐ŸŸฆ', + 'data': '🟦', + 'tags': [ + 'blue', + 'square' + ], + 'shortcodes': [ + ':blue_square:' + ] + }, + { + 'name': 'purple square', + 'unicode': '1F7EA', + 'emoji': '๐ŸŸช', + 'data': '🟪', + 'tags': [ + 'purple', + 'square' + ], + 'shortcodes': [ + ':purple_square:' + ] + }, + { + 'name': 'brown square', + 'unicode': '1F7EB', + 'emoji': '๐ŸŸซ', + 'data': '🟫', + 'tags': [ + 'brown', + 'square' + ], + 'shortcodes': [ + ':brown_square:' + ] + }, + { + 'name': 'black large square', + 'unicode': '2B1B', + 'emoji': 'โฌ›', + 'data': '⬛', + 'tags': [ + 'black', + 'geometric', + 'large', + 'square' + ], + 'shortcodes': [ + ':black_large_square:' + ] + }, + { + 'name': 'white large square', + 'unicode': '2B1C', + 'emoji': 'โฌœ', + 'data': '⬜', + 'tags': [ + 'geometric', + 'large', + 'square', + 'white' + ], + 'shortcodes': [ + ':white_large_square:' + ] + }, + { + 'name': 'black medium square', + 'unicode': '25FC', + 'emoji': 'โ—ผ', + 'data': '◼', + 'tags': [ + 'black', + 'geometric', + 'medium', + 'square' + ], + 'shortcodes': [ + ':black_medium_square:' + ] + }, + { + 'name': 'white medium square', + 'unicode': '25FB', + 'emoji': 'โ—ป', + 'data': '◻', + 'tags': [ + 'geometric', + 'medium', + 'square', + 'white' + ], + 'shortcodes': [ + ':white_medium_square:' + ] + }, + { + 'name': 'black medium-small square', + 'unicode': '25FE', + 'emoji': 'โ—พ', + 'data': '◾', + 'tags': [ + 'black', + 'geometric', + 'medium-small', + 'square' + ], + 'shortcodes': [ + ':black_medium-small_square:' + ] + }, + { + 'name': 'white medium-small square', + 'unicode': '25FD', + 'emoji': 'โ—ฝ', + 'data': '◽', + 'tags': [ + 'geometric', + 'medium-small', + 'square', + 'white' + ], + 'shortcodes': [ + ':white_medium-small_square:' + ] + }, + { + 'name': 'black small square', + 'unicode': '25AA', + 'emoji': 'โ–ช', + 'data': '▪', + 'tags': [ + 'black', + 'geometric', + 'small', + 'square' + ], + 'shortcodes': [ + ':black_small_square:' + ] + }, + { + 'name': 'white small square', + 'unicode': '25AB', + 'emoji': 'โ–ซ', + 'data': '▫', + 'tags': [ + 'geometric', + 'small', + 'square', + 'white' + ], + 'shortcodes': [ + ':white_small_square:' + ] + }, + { + 'name': 'large orange diamond', + 'unicode': '1F536', + 'emoji': '๐Ÿ”ถ', + 'data': '🔶', + 'tags': [ + 'diamond', + 'geometric', + 'large', + 'orange' + ], + 'shortcodes': [ + ':large_orange_diamond:' + ] + }, + { + 'name': 'large blue diamond', + 'unicode': '1F537', + 'emoji': '๐Ÿ”ท', + 'data': '🔷', + 'tags': [ + 'blue', + 'diamond', + 'geometric', + 'large' + ], + 'shortcodes': [ + ':large_blue_diamond:' + ] + }, + { + 'name': 'small orange diamond', + 'unicode': '1F538', + 'emoji': '๐Ÿ”ธ', + 'data': '🔸', + 'tags': [ + 'diamond', + 'geometric', + 'orange', + 'small' + ], + 'shortcodes': [ + ':small_orange_diamond:' + ] + }, + { + 'name': 'small blue diamond', + 'unicode': '1F539', + 'emoji': '๐Ÿ”น', + 'data': '🔹', + 'tags': [ + 'blue', + 'diamond', + 'geometric', + 'small' + ], + 'shortcodes': [ + ':small_blue_diamond:' + ] + }, + { + 'name': 'red triangle pointed up', + 'unicode': '1F53A', + 'emoji': '๐Ÿ”บ', + 'data': '🔺', + 'tags': [ + 'geometric', + 'pointed', + 'red', + 'triangle', + 'up' + ], + 'shortcodes': [ + ':red_triangle_pointed_up:' + ] + }, + { + 'name': 'red triangle pointed down', + 'unicode': '1F53B', + 'emoji': '๐Ÿ”ป', + 'data': '🔻', + 'tags': [ + 'down', + 'geometric', + 'pointed', + 'red', + 'triangle' + ], + 'shortcodes': [ + ':red_triangle_pointed_down:' + ] + }, + { + 'name': 'diamond with a dot', + 'unicode': '1F4A0', + 'emoji': '๐Ÿ’ ', + 'data': '💠', + 'tags': [ + 'comic', + 'diamond', + 'dot', + 'geometric' + ], + 'shortcodes': [ + ':diamond_with_a_dot:' + ] + }, + { + 'name': 'radio button', + 'unicode': '1F518', + 'emoji': '๐Ÿ”˜', + 'data': '🔘', + 'tags': [ + 'button', + 'geometric', + 'radio' + ], + 'shortcodes': [ + ':radio_button:' + ] + }, + { + 'name': 'white square button', + 'unicode': '1F533', + 'emoji': '๐Ÿ”ณ', + 'data': '🔳', + 'tags': [ + 'button', + 'geometric', + 'outlined', + 'square', + 'white' + ], + 'shortcodes': [ + ':white_square_button:' + ] + }, + { + 'name': 'black square button', + 'unicode': '1F532', + 'emoji': '๐Ÿ”ฒ', + 'data': '🔲', + 'tags': [ + 'black', + 'button', + 'geometric', + 'square' + ], + 'shortcodes': [ + ':black_square_button:' + ] + } + ] + }, + { + 'name': 'flags', + 'iconClass': 'fas fa-flag', + 'emojis': [ + { + 'name': 'chequered flag', + 'unicode': '1F3C1', + 'emoji': '๐Ÿ', + 'data': '🏁', + 'tags': [ + 'checkered', + 'chequered', + 'finish', + 'flag', + 'flags', + 'game', + 'race', + 'racing', + 'sport', + 'win' + ], + 'shortcodes': [ + ':chequered_flag:' + ] + }, + { + 'name': 'triangular flag', + 'unicode': '1F6A9', + 'emoji': '๐Ÿšฉ', + 'data': '🚩', + 'tags': [ + 'construction', + 'flag', + 'golf', + 'post', + 'triangular' + ], + 'shortcodes': [ + ':triangular_flag:' + ] + }, + { + 'name': 'crossed flags', + 'unicode': '1F38C', + 'emoji': '๐ŸŽŒ', + 'data': '🎌', + 'tags': [ + 'celebration', + 'cross', + 'crossed', + 'flags', + 'japanese' + ], + 'shortcodes': [ + ':crossed_flags:' + ] + }, + { + 'name': 'black flag', + 'unicode': '1F3F4', + 'emoji': '๐Ÿด', + 'data': '🏴', + 'tags': [ + 'black', + 'flag', + 'waving' + ], + 'shortcodes': [ + ':black_flag:' + ] + }, + { + 'name': 'white flag', + 'unicode': '1F3F3', + 'emoji': '๐Ÿณ', + 'data': '🏳', + 'tags': [ + 'flag', + 'waving', + 'white' + ], + 'shortcodes': [ + ':white_flag:' + ] + }, + { + 'name': 'transgender flag', + 'unicode': '1F3F3-FE0F-200D-26A7-FE0F', + 'emoji': '๐Ÿณ๏ธโ€โšง๏ธ', + 'data': '🏳-FE0F-200D-26A7-FE0F;', + 'tags': [ + 'blue', + 'flag', + 'light', + 'pink', + 'transgender', + 'white' + ], + 'shortcodes': [ + ':transgender_flag:' + ] + }, + { + 'name': 'pirate flag', + 'unicode': '1F3F4-200D-2620-FE0F', + 'emoji': '๐Ÿดโ€โ˜ ๏ธ', + 'data': '🏴-200D-2620-FE0F;', + 'tags': [ + 'flag', + 'jolly', + 'pirate', + 'plunder', + 'roger', + 'treasure' + ], + 'shortcodes': [ + ':pirate_flag:' + ] + }, + { + 'name': 'flag: Ascension Island', + 'unicode': '1F1E6-1F1E8', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡จ', + 'data': '🇦-1F1E8;', + 'tags': [ + 'AC', + 'flag' + ], + 'shortcodes': [ + ':flag:_ascension_island:' + ] + }, + { + 'name': 'flag: Andorra', + 'unicode': '1F1E6-1F1E9', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ฉ', + 'data': '🇦-1F1E9;', + 'tags': [ + 'AD', + 'flag' + ], + 'shortcodes': [ + ':flag:_andorra:' + ] + }, + { + 'name': 'flag: United Arab Emirates', + 'unicode': '1F1E6-1F1EA', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ช', + 'data': '🇦-1F1EA;', + 'tags': [ + 'AE', + 'flag' + ], + 'shortcodes': [ + ':flag:_united_arab_emirates:' + ] + }, + { + 'name': 'flag: Afghanistan', + 'unicode': '1F1E6-1F1EB', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ซ', + 'data': '🇦-1F1EB;', + 'tags': [ + 'AF', + 'flag' + ], + 'shortcodes': [ + ':flag:_afghanistan:' + ] + }, + { + 'name': 'flag: Antigua & Barbuda', + 'unicode': '1F1E6-1F1EC', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ฌ', + 'data': '🇦-1F1EC;', + 'tags': [ + 'AG', + 'flag' + ], + 'shortcodes': [ + ':flag:_antigua_&_barbuda:' + ] + }, + { + 'name': 'flag: Anguilla', + 'unicode': '1F1E6-1F1EE', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ฎ', + 'data': '🇦-1F1EE;', + 'tags': [ + 'AI', + 'flag' + ], + 'shortcodes': [ + ':flag:_anguilla:' + ] + }, + { + 'name': 'flag: Albania', + 'unicode': '1F1E6-1F1F1', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ฑ', + 'data': '🇦-1F1F1;', + 'tags': [ + 'AL', + 'flag' + ], + 'shortcodes': [ + ':flag:_albania:' + ] + }, + { + 'name': 'flag: Armenia', + 'unicode': '1F1E6-1F1F2', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ฒ', + 'data': '🇦-1F1F2;', + 'tags': [ + 'AM', + 'flag' + ], + 'shortcodes': [ + ':flag:_armenia:' + ] + }, + { + 'name': 'flag: Angola', + 'unicode': '1F1E6-1F1F4', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ด', + 'data': '🇦-1F1F4;', + 'tags': [ + 'AO', + 'flag' + ], + 'shortcodes': [ + ':flag:_angola:' + ] + }, + { + 'name': 'flag: Antarctica', + 'unicode': '1F1E6-1F1F6', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ถ', + 'data': '🇦-1F1F6;', + 'tags': [ + 'AQ', + 'flag' + ], + 'shortcodes': [ + ':flag:_antarctica:' + ] + }, + { + 'name': 'flag: Argentina', + 'unicode': '1F1E6-1F1F7', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ท', + 'data': '🇦-1F1F7;', + 'tags': [ + 'AR', + 'flag' + ], + 'shortcodes': [ + ':flag:_argentina:' + ] + }, + { + 'name': 'flag: American Samoa', + 'unicode': '1F1E6-1F1F8', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ธ', + 'data': '🇦-1F1F8;', + 'tags': [ + 'AS', + 'flag' + ], + 'shortcodes': [ + ':flag:_american_samoa:' + ] + }, + { + 'name': 'flag: Austria', + 'unicode': '1F1E6-1F1F9', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡น', + 'data': '🇦-1F1F9;', + 'tags': [ + 'AT', + 'flag' + ], + 'shortcodes': [ + ':flag:_austria:' + ] + }, + { + 'name': 'flag: Australia', + 'unicode': '1F1E6-1F1FA', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡บ', + 'data': '🇦-1F1FA;', + 'tags': [ + 'AU', + 'flag' + ], + 'shortcodes': [ + ':flag:_australia:' + ] + }, + { + 'name': 'flag: Aruba', + 'unicode': '1F1E6-1F1FC', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ผ', + 'data': '🇦-1F1FC;', + 'tags': [ + 'AW', + 'flag' + ], + 'shortcodes': [ + ':flag:_aruba:' + ] + }, + { + 'name': 'flag: ร…land Islands', + 'unicode': '1F1E6-1F1FD', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ฝ', + 'data': '🇦-1F1FD;', + 'tags': [ + 'AX', + 'flag' + ], + 'shortcodes': [ + ':flag:_รฅland_islands:' + ] + }, + { + 'name': 'flag: Azerbaijan', + 'unicode': '1F1E6-1F1FF', + 'emoji': '๐Ÿ‡ฆ๐Ÿ‡ฟ', + 'data': '🇦-1F1FF;', + 'tags': [ + 'AZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_azerbaijan:' + ] + }, + { + 'name': 'flag: Bosnia & Herzegovina', + 'unicode': '1F1E7-1F1E6', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ฆ', + 'data': '🇧-1F1E6;', + 'tags': [ + 'BA', + 'flag' + ], + 'shortcodes': [ + ':flag:_bosnia_&_herzegovina:' + ] + }, + { + 'name': 'flag: Barbados', + 'unicode': '1F1E7-1F1E7', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ง', + 'data': '🇧-1F1E7;', + 'tags': [ + 'BB', + 'flag' + ], + 'shortcodes': [ + ':flag:_barbados:' + ] + }, + { + 'name': 'flag: Bangladesh', + 'unicode': '1F1E7-1F1E9', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ฉ', + 'data': '🇧-1F1E9;', + 'tags': [ + 'BD', + 'flag' + ], + 'shortcodes': [ + ':flag:_bangladesh:' + ] + }, + { + 'name': 'flag: Belgium', + 'unicode': '1F1E7-1F1EA', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ช', + 'data': '🇧-1F1EA;', + 'tags': [ + 'BE', + 'flag' + ], + 'shortcodes': [ + ':flag:_belgium:' + ] + }, + { + 'name': 'flag: Burkina Faso', + 'unicode': '1F1E7-1F1EB', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ซ', + 'data': '🇧-1F1EB;', + 'tags': [ + 'BF', + 'flag' + ], + 'shortcodes': [ + ':flag:_burkina_faso:' + ] + }, + { + 'name': 'flag: Bulgaria', + 'unicode': '1F1E7-1F1EC', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ฌ', + 'data': '🇧-1F1EC;', + 'tags': [ + 'BG', + 'flag' + ], + 'shortcodes': [ + ':flag:_bulgaria:' + ] + }, + { + 'name': 'flag: Bahrain', + 'unicode': '1F1E7-1F1ED', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ญ', + 'data': '🇧-1F1ED;', + 'tags': [ + 'BH', + 'flag' + ], + 'shortcodes': [ + ':flag:_bahrain:' + ] + }, + { + 'name': 'flag: Burundi', + 'unicode': '1F1E7-1F1EE', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ฎ', + 'data': '🇧-1F1EE;', + 'tags': [ + 'BI', + 'flag' + ], + 'shortcodes': [ + ':flag:_burundi:' + ] + }, + { + 'name': 'flag: Benin', + 'unicode': '1F1E7-1F1EF', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ฏ', + 'data': '🇧-1F1EF;', + 'tags': [ + 'BJ', + 'flag' + ], + 'shortcodes': [ + ':flag:_benin:' + ] + }, + { + 'name': 'flag: St. Barthรฉlemy', + 'unicode': '1F1E7-1F1F1', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ฑ', + 'data': '🇧-1F1F1;', + 'tags': [ + 'BL', + 'flag' + ], + 'shortcodes': [ + ':flag:_st._barthรฉlemy:' + ] + }, + { + 'name': 'flag: Bermuda', + 'unicode': '1F1E7-1F1F2', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ฒ', + 'data': '🇧-1F1F2;', + 'tags': [ + 'BM', + 'flag' + ], + 'shortcodes': [ + ':flag:_bermuda:' + ] + }, + { + 'name': 'flag: Brunei', + 'unicode': '1F1E7-1F1F3', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ณ', + 'data': '🇧-1F1F3;', + 'tags': [ + 'BN', + 'flag' + ], + 'shortcodes': [ + ':flag:_brunei:' + ] + }, + { + 'name': 'flag: Bolivia', + 'unicode': '1F1E7-1F1F4', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ด', + 'data': '🇧-1F1F4;', + 'tags': [ + 'BO', + 'flag' + ], + 'shortcodes': [ + ':flag:_bolivia:' + ] + }, + { + 'name': 'flag: Caribbean Netherlands', + 'unicode': '1F1E7-1F1F6', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ถ', + 'data': '🇧-1F1F6;', + 'tags': [ + 'BQ', + 'flag' + ], + 'shortcodes': [ + ':flag:_caribbean_netherlands:' + ] + }, + { + 'name': 'flag: Brazil', + 'unicode': '1F1E7-1F1F7', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ท', + 'data': '🇧-1F1F7;', + 'tags': [ + 'BR', + 'flag' + ], + 'shortcodes': [ + ':flag:_brazil:' + ] + }, + { + 'name': 'flag: Bahamas', + 'unicode': '1F1E7-1F1F8', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ธ', + 'data': '🇧-1F1F8;', + 'tags': [ + 'BS', + 'flag' + ], + 'shortcodes': [ + ':flag:_bahamas:' + ] + }, + { + 'name': 'flag: Bhutan', + 'unicode': '1F1E7-1F1F9', + 'emoji': '๐Ÿ‡ง๐Ÿ‡น', + 'data': '🇧-1F1F9;', + 'tags': [ + 'BT', + 'flag' + ], + 'shortcodes': [ + ':flag:_bhutan:' + ] + }, + { + 'name': 'flag: Bouvet Island', + 'unicode': '1F1E7-1F1FB', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ป', + 'data': '🇧-1F1FB;', + 'tags': [ + 'BV', + 'flag' + ], + 'shortcodes': [ + ':flag:_bouvet_island:' + ] + }, + { + 'name': 'flag: Botswana', + 'unicode': '1F1E7-1F1FC', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ผ', + 'data': '🇧-1F1FC;', + 'tags': [ + 'BW', + 'flag' + ], + 'shortcodes': [ + ':flag:_botswana:' + ] + }, + { + 'name': 'flag: Belarus', + 'unicode': '1F1E7-1F1FE', + 'emoji': '๐Ÿ‡ง๐Ÿ‡พ', + 'data': '🇧-1F1FE;', + 'tags': [ + 'BY', + 'flag' + ], + 'shortcodes': [ + ':flag:_belarus:' + ] + }, + { + 'name': 'flag: Belize', + 'unicode': '1F1E7-1F1FF', + 'emoji': '๐Ÿ‡ง๐Ÿ‡ฟ', + 'data': '🇧-1F1FF;', + 'tags': [ + 'BZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_belize:' + ] + }, + { + 'name': 'flag: Canada', + 'unicode': '1F1E8-1F1E6', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ฆ', + 'data': '🇨-1F1E6;', + 'tags': [ + 'CA', + 'flag' + ], + 'shortcodes': [ + ':flag:_canada:' + ] + }, + { + 'name': 'flag: Cocos (Keeling) Islands', + 'unicode': '1F1E8-1F1E8', + 'emoji': '๐Ÿ‡จ๐Ÿ‡จ', + 'data': '🇨-1F1E8;', + 'tags': [ + 'CC', + 'flag' + ], + 'shortcodes': [ + ':flag:_cocos_(keeling)_islands:' + ] + }, + { + 'name': 'flag: Congo - Kinshasa', + 'unicode': '1F1E8-1F1E9', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ฉ', + 'data': '🇨-1F1E9;', + 'tags': [ + 'CD', + 'flag' + ], + 'shortcodes': [ + ':flag:_congo_-_kinshasa:' + ] + }, + { + 'name': 'flag: Central African Republic', + 'unicode': '1F1E8-1F1EB', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ซ', + 'data': '🇨-1F1EB;', + 'tags': [ + 'CF', + 'flag' + ], + 'shortcodes': [ + ':flag:_central_african_republic:' + ] + }, + { + 'name': 'flag: Congo - Brazzaville', + 'unicode': '1F1E8-1F1EC', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ฌ', + 'data': '🇨-1F1EC;', + 'tags': [ + 'CG', + 'flag' + ], + 'shortcodes': [ + ':flag:_congo_-_brazzaville:' + ] + }, + { + 'name': 'flag: Switzerland', + 'unicode': '1F1E8-1F1ED', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ญ', + 'data': '🇨-1F1ED;', + 'tags': [ + 'CH', + 'flag' + ], + 'shortcodes': [ + ':flag:_switzerland:' + ] + }, + { + 'name': 'flag: Cรดte dโ€™Ivoire', + 'unicode': '1F1E8-1F1EE', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ฎ', + 'data': '🇨-1F1EE;', + 'tags': [ + 'CI', + 'flag' + ], + 'shortcodes': [ + ':flag:_cรดte_dโ€™ivoire:' + ] + }, + { + 'name': 'flag: Cook Islands', + 'unicode': '1F1E8-1F1F0', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ฐ', + 'data': '🇨-1F1F0;', + 'tags': [ + 'CK', + 'flag' + ], + 'shortcodes': [ + ':flag:_cook_islands:' + ] + }, + { + 'name': 'flag: Chile', + 'unicode': '1F1E8-1F1F1', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ฑ', + 'data': '🇨-1F1F1;', + 'tags': [ + 'CL', + 'flag' + ], + 'shortcodes': [ + ':flag:_chile:' + ] + }, + { + 'name': 'flag: Cameroon', + 'unicode': '1F1E8-1F1F2', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ฒ', + 'data': '🇨-1F1F2;', + 'tags': [ + 'CM', + 'flag' + ], + 'shortcodes': [ + ':flag:_cameroon:' + ] + }, + { + 'name': 'flag: China', + 'unicode': '1F1E8-1F1F3', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ณ', + 'data': '🇨-1F1F3;', + 'tags': [ + 'CN', + 'flag' + ], + 'shortcodes': [ + ':flag:_china:' + ] + }, + { + 'name': 'flag: Colombia', + 'unicode': '1F1E8-1F1F4', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ด', + 'data': '🇨-1F1F4;', + 'tags': [ + 'CO', + 'flag' + ], + 'shortcodes': [ + ':flag:_colombia:' + ] + }, + { + 'name': 'flag: Clipperton Island', + 'unicode': '1F1E8-1F1F5', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ต', + 'data': '🇨-1F1F5;', + 'tags': [ + 'CP', + 'flag' + ], + 'shortcodes': [ + ':flag:_clipperton_island:' + ] + }, + { + 'name': 'flag: Sark', + 'unicode': '1F1E8-1F1F6', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ถ', + 'data': '🇨-1F1F6;', + 'tags': [ + 'CQ', + 'flag' + ], + 'shortcodes': [ + ':flag:_sark:' + ] + }, + { + 'name': 'flag: Costa Rica', + 'unicode': '1F1E8-1F1F7', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ท', + 'data': '🇨-1F1F7;', + 'tags': [ + 'CR', + 'flag' + ], + 'shortcodes': [ + ':flag:_costa_rica:' + ] + }, + { + 'name': 'flag: Cuba', + 'unicode': '1F1E8-1F1FA', + 'emoji': '๐Ÿ‡จ๐Ÿ‡บ', + 'data': '🇨-1F1FA;', + 'tags': [ + 'CU', + 'flag' + ], + 'shortcodes': [ + ':flag:_cuba:' + ] + }, + { + 'name': 'flag: Cape Verde', + 'unicode': '1F1E8-1F1FB', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ป', + 'data': '🇨-1F1FB;', + 'tags': [ + 'CV', + 'flag' + ], + 'shortcodes': [ + ':flag:_cape_verde:' + ] + }, + { + 'name': 'flag: Curaรงao', + 'unicode': '1F1E8-1F1FC', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ผ', + 'data': '🇨-1F1FC;', + 'tags': [ + 'CW', + 'flag' + ], + 'shortcodes': [ + ':flag:_curaรงao:' + ] + }, + { + 'name': 'flag: Christmas Island', + 'unicode': '1F1E8-1F1FD', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ฝ', + 'data': '🇨-1F1FD;', + 'tags': [ + 'CX', + 'flag' + ], + 'shortcodes': [ + ':flag:_christmas_island:' + ] + }, + { + 'name': 'flag: Cyprus', + 'unicode': '1F1E8-1F1FE', + 'emoji': '๐Ÿ‡จ๐Ÿ‡พ', + 'data': '🇨-1F1FE;', + 'tags': [ + 'CY', + 'flag' + ], + 'shortcodes': [ + ':flag:_cyprus:' + ] + }, + { + 'name': 'flag: Czechia', + 'unicode': '1F1E8-1F1FF', + 'emoji': '๐Ÿ‡จ๐Ÿ‡ฟ', + 'data': '🇨-1F1FF;', + 'tags': [ + 'CZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_czechia:' + ] + }, + { + 'name': 'flag: Germany', + 'unicode': '1F1E9-1F1EA', + 'emoji': '๐Ÿ‡ฉ๐Ÿ‡ช', + 'data': '🇩-1F1EA;', + 'tags': [ + 'DE', + 'flag' + ], + 'shortcodes': [ + ':flag:_germany:' + ] + }, + { + 'name': 'flag: Diego Garcia', + 'unicode': '1F1E9-1F1EC', + 'emoji': '๐Ÿ‡ฉ๐Ÿ‡ฌ', + 'data': '🇩-1F1EC;', + 'tags': [ + 'DG', + 'flag' + ], + 'shortcodes': [ + ':flag:_diego_garcia:' + ] + }, + { + 'name': 'flag: Djibouti', + 'unicode': '1F1E9-1F1EF', + 'emoji': '๐Ÿ‡ฉ๐Ÿ‡ฏ', + 'data': '🇩-1F1EF;', + 'tags': [ + 'DJ', + 'flag' + ], + 'shortcodes': [ + ':flag:_djibouti:' + ] + }, + { + 'name': 'flag: Denmark', + 'unicode': '1F1E9-1F1F0', + 'emoji': '๐Ÿ‡ฉ๐Ÿ‡ฐ', + 'data': '🇩-1F1F0;', + 'tags': [ + 'DK', + 'flag' + ], + 'shortcodes': [ + ':flag:_denmark:' + ] + }, + { + 'name': 'flag: Dominica', + 'unicode': '1F1E9-1F1F2', + 'emoji': '๐Ÿ‡ฉ๐Ÿ‡ฒ', + 'data': '🇩-1F1F2;', + 'tags': [ + 'DM', + 'flag' + ], + 'shortcodes': [ + ':flag:_dominica:' + ] + }, + { + 'name': 'flag: Dominican Republic', + 'unicode': '1F1E9-1F1F4', + 'emoji': '๐Ÿ‡ฉ๐Ÿ‡ด', + 'data': '🇩-1F1F4;', + 'tags': [ + 'DO', + 'flag' + ], + 'shortcodes': [ + ':flag:_dominican_republic:' + ] + }, + { + 'name': 'flag: Algeria', + 'unicode': '1F1E9-1F1FF', + 'emoji': '๐Ÿ‡ฉ๐Ÿ‡ฟ', + 'data': '🇩-1F1FF;', + 'tags': [ + 'DZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_algeria:' + ] + }, + { + 'name': 'flag: Ceuta & Melilla', + 'unicode': '1F1EA-1F1E6', + 'emoji': '๐Ÿ‡ช๐Ÿ‡ฆ', + 'data': '🇪-1F1E6;', + 'tags': [ + 'EA', + 'flag' + ], + 'shortcodes': [ + ':flag:_ceuta_&_melilla:' + ] + }, + { + 'name': 'flag: Ecuador', + 'unicode': '1F1EA-1F1E8', + 'emoji': '๐Ÿ‡ช๐Ÿ‡จ', + 'data': '🇪-1F1E8;', + 'tags': [ + 'EC', + 'flag' + ], + 'shortcodes': [ + ':flag:_ecuador:' + ] + }, + { + 'name': 'flag: Estonia', + 'unicode': '1F1EA-1F1EA', + 'emoji': '๐Ÿ‡ช๐Ÿ‡ช', + 'data': '🇪-1F1EA;', + 'tags': [ + 'EE', + 'flag' + ], + 'shortcodes': [ + ':flag:_estonia:' + ] + }, + { + 'name': 'flag: Egypt', + 'unicode': '1F1EA-1F1EC', + 'emoji': '๐Ÿ‡ช๐Ÿ‡ฌ', + 'data': '🇪-1F1EC;', + 'tags': [ + 'EG', + 'flag' + ], + 'shortcodes': [ + ':flag:_egypt:' + ] + }, + { + 'name': 'flag: Western Sahara', + 'unicode': '1F1EA-1F1ED', + 'emoji': '๐Ÿ‡ช๐Ÿ‡ญ', + 'data': '🇪-1F1ED;', + 'tags': [ + 'EH', + 'flag' + ], + 'shortcodes': [ + ':flag:_western_sahara:' + ] + }, + { + 'name': 'flag: Eritrea', + 'unicode': '1F1EA-1F1F7', + 'emoji': '๐Ÿ‡ช๐Ÿ‡ท', + 'data': '🇪-1F1F7;', + 'tags': [ + 'ER', + 'flag' + ], + 'shortcodes': [ + ':flag:_eritrea:' + ] + }, + { + 'name': 'flag: Spain', + 'unicode': '1F1EA-1F1F8', + 'emoji': '๐Ÿ‡ช๐Ÿ‡ธ', + 'data': '🇪-1F1F8;', + 'tags': [ + 'ES', + 'flag' + ], + 'shortcodes': [ + ':flag:_spain:' + ] + }, + { + 'name': 'flag: Ethiopia', + 'unicode': '1F1EA-1F1F9', + 'emoji': '๐Ÿ‡ช๐Ÿ‡น', + 'data': '🇪-1F1F9;', + 'tags': [ + 'ET', + 'flag' + ], + 'shortcodes': [ + ':flag:_ethiopia:' + ] + }, + { + 'name': 'flag: European Union', + 'unicode': '1F1EA-1F1FA', + 'emoji': '๐Ÿ‡ช๐Ÿ‡บ', + 'data': '🇪-1F1FA;', + 'tags': [ + 'EU', + 'flag' + ], + 'shortcodes': [ + ':flag:_european_union:' + ] + }, + { + 'name': 'flag: Finland', + 'unicode': '1F1EB-1F1EE', + 'emoji': '๐Ÿ‡ซ๐Ÿ‡ฎ', + 'data': '🇫-1F1EE;', + 'tags': [ + 'FI', + 'flag' + ], + 'shortcodes': [ + ':flag:_finland:' + ] + }, + { + 'name': 'flag: Fiji', + 'unicode': '1F1EB-1F1EF', + 'emoji': '๐Ÿ‡ซ๐Ÿ‡ฏ', + 'data': '🇫-1F1EF;', + 'tags': [ + 'FJ', + 'flag' + ], + 'shortcodes': [ + ':flag:_fiji:' + ] + }, + { + 'name': 'flag: Falkland Islands', + 'unicode': '1F1EB-1F1F0', + 'emoji': '๐Ÿ‡ซ๐Ÿ‡ฐ', + 'data': '🇫-1F1F0;', + 'tags': [ + 'FK', + 'flag' + ], + 'shortcodes': [ + ':flag:_falkland_islands:' + ] + }, + { + 'name': 'flag: Micronesia', + 'unicode': '1F1EB-1F1F2', + 'emoji': '๐Ÿ‡ซ๐Ÿ‡ฒ', + 'data': '🇫-1F1F2;', + 'tags': [ + 'FM', + 'flag' + ], + 'shortcodes': [ + ':flag:_micronesia:' + ] + }, + { + 'name': 'flag: Faroe Islands', + 'unicode': '1F1EB-1F1F4', + 'emoji': '๐Ÿ‡ซ๐Ÿ‡ด', + 'data': '🇫-1F1F4;', + 'tags': [ + 'FO', + 'flag' + ], + 'shortcodes': [ + ':flag:_faroe_islands:' + ] + }, + { + 'name': 'flag: France', + 'unicode': '1F1EB-1F1F7', + 'emoji': '๐Ÿ‡ซ๐Ÿ‡ท', + 'data': '🇫-1F1F7;', + 'tags': [ + 'FR', + 'flag' + ], + 'shortcodes': [ + ':flag:_france:' + ] + }, + { + 'name': 'flag: Gabon', + 'unicode': '1F1EC-1F1E6', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ฆ', + 'data': '🇬-1F1E6;', + 'tags': [ + 'GA', + 'flag' + ], + 'shortcodes': [ + ':flag:_gabon:' + ] + }, + { + 'name': 'flag: United Kingdom', + 'unicode': '1F1EC-1F1E7', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ง', + 'data': '🇬-1F1E7;', + 'tags': [ + 'GB', + 'flag' + ], + 'shortcodes': [ + ':flag:_united_kingdom:' + ] + }, + { + 'name': 'flag: Grenada', + 'unicode': '1F1EC-1F1E9', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ฉ', + 'data': '🇬-1F1E9;', + 'tags': [ + 'GD', + 'flag' + ], + 'shortcodes': [ + ':flag:_grenada:' + ] + }, + { + 'name': 'flag: Georgia', + 'unicode': '1F1EC-1F1EA', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ช', + 'data': '🇬-1F1EA;', + 'tags': [ + 'GE', + 'flag' + ], + 'shortcodes': [ + ':flag:_georgia:' + ] + }, + { + 'name': 'flag: French Guiana', + 'unicode': '1F1EC-1F1EB', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ซ', + 'data': '🇬-1F1EB;', + 'tags': [ + 'GF', + 'flag' + ], + 'shortcodes': [ + ':flag:_french_guiana:' + ] + }, + { + 'name': 'flag: Guernsey', + 'unicode': '1F1EC-1F1EC', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ฌ', + 'data': '🇬-1F1EC;', + 'tags': [ + 'GG', + 'flag' + ], + 'shortcodes': [ + ':flag:_guernsey:' + ] + }, + { + 'name': 'flag: Ghana', + 'unicode': '1F1EC-1F1ED', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ญ', + 'data': '🇬-1F1ED;', + 'tags': [ + 'GH', + 'flag' + ], + 'shortcodes': [ + ':flag:_ghana:' + ] + }, + { + 'name': 'flag: Gibraltar', + 'unicode': '1F1EC-1F1EE', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ฎ', + 'data': '🇬-1F1EE;', + 'tags': [ + 'GI', + 'flag' + ], + 'shortcodes': [ + ':flag:_gibraltar:' + ] + }, + { + 'name': 'flag: Greenland', + 'unicode': '1F1EC-1F1F1', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ฑ', + 'data': '🇬-1F1F1;', + 'tags': [ + 'GL', + 'flag' + ], + 'shortcodes': [ + ':flag:_greenland:' + ] + }, + { + 'name': 'flag: Gambia', + 'unicode': '1F1EC-1F1F2', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ฒ', + 'data': '🇬-1F1F2;', + 'tags': [ + 'GM', + 'flag' + ], + 'shortcodes': [ + ':flag:_gambia:' + ] + }, + { + 'name': 'flag: Guinea', + 'unicode': '1F1EC-1F1F3', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ณ', + 'data': '🇬-1F1F3;', + 'tags': [ + 'GN', + 'flag' + ], + 'shortcodes': [ + ':flag:_guinea:' + ] + }, + { + 'name': 'flag: Guadeloupe', + 'unicode': '1F1EC-1F1F5', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ต', + 'data': '🇬-1F1F5;', + 'tags': [ + 'GP', + 'flag' + ], + 'shortcodes': [ + ':flag:_guadeloupe:' + ] + }, + { + 'name': 'flag: Equatorial Guinea', + 'unicode': '1F1EC-1F1F6', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ถ', + 'data': '🇬-1F1F6;', + 'tags': [ + 'GQ', + 'flag' + ], + 'shortcodes': [ + ':flag:_equatorial_guinea:' + ] + }, + { + 'name': 'flag: Greece', + 'unicode': '1F1EC-1F1F7', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ท', + 'data': '🇬-1F1F7;', + 'tags': [ + 'GR', + 'flag' + ], + 'shortcodes': [ + ':flag:_greece:' + ] + }, + { + 'name': 'flag: South Georgia & South Sandwich Islands', + 'unicode': '1F1EC-1F1F8', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ธ', + 'data': '🇬-1F1F8;', + 'tags': [ + 'GS', + 'flag' + ], + 'shortcodes': [ + ':flag:_south_georgia_&_south_sandwich_islands:' + ] + }, + { + 'name': 'flag: Guatemala', + 'unicode': '1F1EC-1F1F9', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡น', + 'data': '🇬-1F1F9;', + 'tags': [ + 'GT', + 'flag' + ], + 'shortcodes': [ + ':flag:_guatemala:' + ] + }, + { + 'name': 'flag: Guam', + 'unicode': '1F1EC-1F1FA', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡บ', + 'data': '🇬-1F1FA;', + 'tags': [ + 'GU', + 'flag' + ], + 'shortcodes': [ + ':flag:_guam:' + ] + }, + { + 'name': 'flag: Guinea-Bissau', + 'unicode': '1F1EC-1F1FC', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡ผ', + 'data': '🇬-1F1FC;', + 'tags': [ + 'GW', + 'flag' + ], + 'shortcodes': [ + ':flag:_guinea-bissau:' + ] + }, + { + 'name': 'flag: Guyana', + 'unicode': '1F1EC-1F1FE', + 'emoji': '๐Ÿ‡ฌ๐Ÿ‡พ', + 'data': '🇬-1F1FE;', + 'tags': [ + 'GY', + 'flag' + ], + 'shortcodes': [ + ':flag:_guyana:' + ] + }, + { + 'name': 'flag: Hong Kong SAR China', + 'unicode': '1F1ED-1F1F0', + 'emoji': '๐Ÿ‡ญ๐Ÿ‡ฐ', + 'data': '🇭-1F1F0;', + 'tags': [ + 'HK', + 'flag' + ], + 'shortcodes': [ + ':flag:_hong_kong_sar_china:' + ] + }, + { + 'name': 'flag: Heard & McDonald Islands', + 'unicode': '1F1ED-1F1F2', + 'emoji': '๐Ÿ‡ญ๐Ÿ‡ฒ', + 'data': '🇭-1F1F2;', + 'tags': [ + 'HM', + 'flag' + ], + 'shortcodes': [ + ':flag:_heard_&_mcdonald_islands:' + ] + }, + { + 'name': 'flag: Honduras', + 'unicode': '1F1ED-1F1F3', + 'emoji': '๐Ÿ‡ญ๐Ÿ‡ณ', + 'data': '🇭-1F1F3;', + 'tags': [ + 'HN', + 'flag' + ], + 'shortcodes': [ + ':flag:_honduras:' + ] + }, + { + 'name': 'flag: Croatia', + 'unicode': '1F1ED-1F1F7', + 'emoji': '๐Ÿ‡ญ๐Ÿ‡ท', + 'data': '🇭-1F1F7;', + 'tags': [ + 'HR', + 'flag' + ], + 'shortcodes': [ + ':flag:_croatia:' + ] + }, + { + 'name': 'flag: Haiti', + 'unicode': '1F1ED-1F1F9', + 'emoji': '๐Ÿ‡ญ๐Ÿ‡น', + 'data': '🇭-1F1F9;', + 'tags': [ + 'HT', + 'flag' + ], + 'shortcodes': [ + ':flag:_haiti:' + ] + }, + { + 'name': 'flag: Hungary', + 'unicode': '1F1ED-1F1FA', + 'emoji': '๐Ÿ‡ญ๐Ÿ‡บ', + 'data': '🇭-1F1FA;', + 'tags': [ + 'HU', + 'flag' + ], + 'shortcodes': [ + ':flag:_hungary:' + ] + }, + { + 'name': 'flag: Canary Islands', + 'unicode': '1F1EE-1F1E8', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡จ', + 'data': '🇮-1F1E8;', + 'tags': [ + 'IC', + 'flag' + ], + 'shortcodes': [ + ':flag:_canary_islands:' + ] + }, + { + 'name': 'flag: Indonesia', + 'unicode': '1F1EE-1F1E9', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡ฉ', + 'data': '🇮-1F1E9;', + 'tags': [ + 'ID', + 'flag' + ], + 'shortcodes': [ + ':flag:_indonesia:' + ] + }, + { + 'name': 'flag: Ireland', + 'unicode': '1F1EE-1F1EA', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡ช', + 'data': '🇮-1F1EA;', + 'tags': [ + 'IE', + 'flag' + ], + 'shortcodes': [ + ':flag:_ireland:' + ] + }, + { + 'name': 'flag: Isle of Man', + 'unicode': '1F1EE-1F1F2', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡ฒ', + 'data': '🇮-1F1F2;', + 'tags': [ + 'IM', + 'flag' + ], + 'shortcodes': [ + ':flag:_isle_of_man:' + ] + }, + { + 'name': 'flag: India', + 'unicode': '1F1EE-1F1F3', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡ณ', + 'data': '🇮-1F1F3;', + 'tags': [ + 'IN', + 'flag' + ], + 'shortcodes': [ + ':flag:_india:' + ] + }, + { + 'name': 'flag: British Indian Ocean Territory', + 'unicode': '1F1EE-1F1F4', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡ด', + 'data': '🇮-1F1F4;', + 'tags': [ + 'IO', + 'flag' + ], + 'shortcodes': [ + ':flag:_british_indian_ocean_territory:' + ] + }, + { + 'name': 'flag: Iraq', + 'unicode': '1F1EE-1F1F6', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡ถ', + 'data': '🇮-1F1F6;', + 'tags': [ + 'IQ', + 'flag' + ], + 'shortcodes': [ + ':flag:_iraq:' + ] + }, + { + 'name': 'flag: Iran', + 'unicode': '1F1EE-1F1F7', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡ท', + 'data': '🇮-1F1F7;', + 'tags': [ + 'IR', + 'flag' + ], + 'shortcodes': [ + ':flag:_iran:' + ] + }, + { + 'name': 'flag: Iceland', + 'unicode': '1F1EE-1F1F8', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡ธ', + 'data': '🇮-1F1F8;', + 'tags': [ + 'IS', + 'flag' + ], + 'shortcodes': [ + ':flag:_iceland:' + ] + }, + { + 'name': 'flag: Italy', + 'unicode': '1F1EE-1F1F9', + 'emoji': '๐Ÿ‡ฎ๐Ÿ‡น', + 'data': '🇮-1F1F9;', + 'tags': [ + 'IT', + 'flag' + ], + 'shortcodes': [ + ':flag:_italy:' + ] + }, + { + 'name': 'flag: Jersey', + 'unicode': '1F1EF-1F1EA', + 'emoji': '๐Ÿ‡ฏ๐Ÿ‡ช', + 'data': '🇯-1F1EA;', + 'tags': [ + 'JE', + 'flag' + ], + 'shortcodes': [ + ':flag:_jersey:' + ] + }, + { + 'name': 'flag: Jamaica', + 'unicode': '1F1EF-1F1F2', + 'emoji': '๐Ÿ‡ฏ๐Ÿ‡ฒ', + 'data': '🇯-1F1F2;', + 'tags': [ + 'JM', + 'flag' + ], + 'shortcodes': [ + ':flag:_jamaica:' + ] + }, + { + 'name': 'flag: Jordan', + 'unicode': '1F1EF-1F1F4', + 'emoji': '๐Ÿ‡ฏ๐Ÿ‡ด', + 'data': '🇯-1F1F4;', + 'tags': [ + 'JO', + 'flag' + ], + 'shortcodes': [ + ':flag:_jordan:' + ] + }, + { + 'name': 'flag: Japan', + 'unicode': '1F1EF-1F1F5', + 'emoji': '๐Ÿ‡ฏ๐Ÿ‡ต', + 'data': '🇯-1F1F5;', + 'tags': [ + 'JP', + 'flag' + ], + 'shortcodes': [ + ':flag:_japan:' + ] + }, + { + 'name': 'flag: Kenya', + 'unicode': '1F1F0-1F1EA', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ช', + 'data': '🇰-1F1EA;', + 'tags': [ + 'KE', + 'flag' + ], + 'shortcodes': [ + ':flag:_kenya:' + ] + }, + { + 'name': 'flag: Kyrgyzstan', + 'unicode': '1F1F0-1F1EC', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ฌ', + 'data': '🇰-1F1EC;', + 'tags': [ + 'KG', + 'flag' + ], + 'shortcodes': [ + ':flag:_kyrgyzstan:' + ] + }, + { + 'name': 'flag: Cambodia', + 'unicode': '1F1F0-1F1ED', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ญ', + 'data': '🇰-1F1ED;', + 'tags': [ + 'KH', + 'flag' + ], + 'shortcodes': [ + ':flag:_cambodia:' + ] + }, + { + 'name': 'flag: Kiribati', + 'unicode': '1F1F0-1F1EE', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ฎ', + 'data': '🇰-1F1EE;', + 'tags': [ + 'KI', + 'flag' + ], + 'shortcodes': [ + ':flag:_kiribati:' + ] + }, + { + 'name': 'flag: Comoros', + 'unicode': '1F1F0-1F1F2', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ฒ', + 'data': '🇰-1F1F2;', + 'tags': [ + 'KM', + 'flag' + ], + 'shortcodes': [ + ':flag:_comoros:' + ] + }, + { + 'name': 'flag: St. Kitts & Nevis', + 'unicode': '1F1F0-1F1F3', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ณ', + 'data': '🇰-1F1F3;', + 'tags': [ + 'KN', + 'flag' + ], + 'shortcodes': [ + ':flag:_st._kitts_&_nevis:' + ] + }, + { + 'name': 'flag: North Korea', + 'unicode': '1F1F0-1F1F5', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ต', + 'data': '🇰-1F1F5;', + 'tags': [ + 'KP', + 'flag' + ], + 'shortcodes': [ + ':flag:_north_korea:' + ] + }, + { + 'name': 'flag: South Korea', + 'unicode': '1F1F0-1F1F7', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ท', + 'data': '🇰-1F1F7;', + 'tags': [ + 'KR', + 'flag' + ], + 'shortcodes': [ + ':flag:_south_korea:' + ] + }, + { + 'name': 'flag: Kuwait', + 'unicode': '1F1F0-1F1FC', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ผ', + 'data': '🇰-1F1FC;', + 'tags': [ + 'KW', + 'flag' + ], + 'shortcodes': [ + ':flag:_kuwait:' + ] + }, + { + 'name': 'flag: Cayman Islands', + 'unicode': '1F1F0-1F1FE', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡พ', + 'data': '🇰-1F1FE;', + 'tags': [ + 'KY', + 'flag' + ], + 'shortcodes': [ + ':flag:_cayman_islands:' + ] + }, + { + 'name': 'flag: Kazakhstan', + 'unicode': '1F1F0-1F1FF', + 'emoji': '๐Ÿ‡ฐ๐Ÿ‡ฟ', + 'data': '🇰-1F1FF;', + 'tags': [ + 'KZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_kazakhstan:' + ] + }, + { + 'name': 'flag: Laos', + 'unicode': '1F1F1-1F1E6', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡ฆ', + 'data': '🇱-1F1E6;', + 'tags': [ + 'LA', + 'flag' + ], + 'shortcodes': [ + ':flag:_laos:' + ] + }, + { + 'name': 'flag: Lebanon', + 'unicode': '1F1F1-1F1E7', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡ง', + 'data': '🇱-1F1E7;', + 'tags': [ + 'LB', + 'flag' + ], + 'shortcodes': [ + ':flag:_lebanon:' + ] + }, + { + 'name': 'flag: St. Lucia', + 'unicode': '1F1F1-1F1E8', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡จ', + 'data': '🇱-1F1E8;', + 'tags': [ + 'LC', + 'flag' + ], + 'shortcodes': [ + ':flag:_st._lucia:' + ] + }, + { + 'name': 'flag: Liechtenstein', + 'unicode': '1F1F1-1F1EE', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡ฎ', + 'data': '🇱-1F1EE;', + 'tags': [ + 'LI', + 'flag' + ], + 'shortcodes': [ + ':flag:_liechtenstein:' + ] + }, + { + 'name': 'flag: Sri Lanka', + 'unicode': '1F1F1-1F1F0', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡ฐ', + 'data': '🇱-1F1F0;', + 'tags': [ + 'LK', + 'flag' + ], + 'shortcodes': [ + ':flag:_sri_lanka:' + ] + }, + { + 'name': 'flag: Liberia', + 'unicode': '1F1F1-1F1F7', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡ท', + 'data': '🇱-1F1F7;', + 'tags': [ + 'LR', + 'flag' + ], + 'shortcodes': [ + ':flag:_liberia:' + ] + }, + { + 'name': 'flag: Lesotho', + 'unicode': '1F1F1-1F1F8', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡ธ', + 'data': '🇱-1F1F8;', + 'tags': [ + 'LS', + 'flag' + ], + 'shortcodes': [ + ':flag:_lesotho:' + ] + }, + { + 'name': 'flag: Lithuania', + 'unicode': '1F1F1-1F1F9', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡น', + 'data': '🇱-1F1F9;', + 'tags': [ + 'LT', + 'flag' + ], + 'shortcodes': [ + ':flag:_lithuania:' + ] + }, + { + 'name': 'flag: Luxembourg', + 'unicode': '1F1F1-1F1FA', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡บ', + 'data': '🇱-1F1FA;', + 'tags': [ + 'LU', + 'flag' + ], + 'shortcodes': [ + ':flag:_luxembourg:' + ] + }, + { + 'name': 'flag: Latvia', + 'unicode': '1F1F1-1F1FB', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡ป', + 'data': '🇱-1F1FB;', + 'tags': [ + 'LV', + 'flag' + ], + 'shortcodes': [ + ':flag:_latvia:' + ] + }, + { + 'name': 'flag: Libya', + 'unicode': '1F1F1-1F1FE', + 'emoji': '๐Ÿ‡ฑ๐Ÿ‡พ', + 'data': '🇱-1F1FE;', + 'tags': [ + 'LY', + 'flag' + ], + 'shortcodes': [ + ':flag:_libya:' + ] + }, + { + 'name': 'flag: Morocco', + 'unicode': '1F1F2-1F1E6', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ฆ', + 'data': '🇲-1F1E6;', + 'tags': [ + 'MA', + 'flag' + ], + 'shortcodes': [ + ':flag:_morocco:' + ] + }, + { + 'name': 'flag: Monaco', + 'unicode': '1F1F2-1F1E8', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡จ', + 'data': '🇲-1F1E8;', + 'tags': [ + 'MC', + 'flag' + ], + 'shortcodes': [ + ':flag:_monaco:' + ] + }, + { + 'name': 'flag: Moldova', + 'unicode': '1F1F2-1F1E9', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ฉ', + 'data': '🇲-1F1E9;', + 'tags': [ + 'MD', + 'flag' + ], + 'shortcodes': [ + ':flag:_moldova:' + ] + }, + { + 'name': 'flag: Montenegro', + 'unicode': '1F1F2-1F1EA', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ช', + 'data': '🇲-1F1EA;', + 'tags': [ + 'ME', + 'flag' + ], + 'shortcodes': [ + ':flag:_montenegro:' + ] + }, + { + 'name': 'flag: St. Martin', + 'unicode': '1F1F2-1F1EB', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ซ', + 'data': '🇲-1F1EB;', + 'tags': [ + 'MF', + 'flag' + ], + 'shortcodes': [ + ':flag:_st._martin:' + ] + }, + { + 'name': 'flag: Madagascar', + 'unicode': '1F1F2-1F1EC', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ฌ', + 'data': '🇲-1F1EC;', + 'tags': [ + 'MG', + 'flag' + ], + 'shortcodes': [ + ':flag:_madagascar:' + ] + }, + { + 'name': 'flag: Marshall Islands', + 'unicode': '1F1F2-1F1ED', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ญ', + 'data': '🇲-1F1ED;', + 'tags': [ + 'MH', + 'flag' + ], + 'shortcodes': [ + ':flag:_marshall_islands:' + ] + }, + { + 'name': 'flag: North Macedonia', + 'unicode': '1F1F2-1F1F0', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ฐ', + 'data': '🇲-1F1F0;', + 'tags': [ + 'MK', + 'flag' + ], + 'shortcodes': [ + ':flag:_north_macedonia:' + ] + }, + { + 'name': 'flag: Mali', + 'unicode': '1F1F2-1F1F1', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ฑ', + 'data': '🇲-1F1F1;', + 'tags': [ + 'ML', + 'flag' + ], + 'shortcodes': [ + ':flag:_mali:' + ] + }, + { + 'name': 'flag: Myanmar (Burma)', + 'unicode': '1F1F2-1F1F2', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ฒ', + 'data': '🇲-1F1F2;', + 'tags': [ + 'MM', + 'flag' + ], + 'shortcodes': [ + ':flag:_myanmar_(burma):' + ] + }, + { + 'name': 'flag: Mongolia', + 'unicode': '1F1F2-1F1F3', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ณ', + 'data': '🇲-1F1F3;', + 'tags': [ + 'MN', + 'flag' + ], + 'shortcodes': [ + ':flag:_mongolia:' + ] + }, + { + 'name': 'flag: Macao SAR China', + 'unicode': '1F1F2-1F1F4', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ด', + 'data': '🇲-1F1F4;', + 'tags': [ + 'MO', + 'flag' + ], + 'shortcodes': [ + ':flag:_macao_sar_china:' + ] + }, + { + 'name': 'flag: Northern Mariana Islands', + 'unicode': '1F1F2-1F1F5', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ต', + 'data': '🇲-1F1F5;', + 'tags': [ + 'MP', + 'flag' + ], + 'shortcodes': [ + ':flag:_northern_mariana_islands:' + ] + }, + { + 'name': 'flag: Martinique', + 'unicode': '1F1F2-1F1F6', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ถ', + 'data': '🇲-1F1F6;', + 'tags': [ + 'MQ', + 'flag' + ], + 'shortcodes': [ + ':flag:_martinique:' + ] + }, + { + 'name': 'flag: Mauritania', + 'unicode': '1F1F2-1F1F7', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ท', + 'data': '🇲-1F1F7;', + 'tags': [ + 'MR', + 'flag' + ], + 'shortcodes': [ + ':flag:_mauritania:' + ] + }, + { + 'name': 'flag: Montserrat', + 'unicode': '1F1F2-1F1F8', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ธ', + 'data': '🇲-1F1F8;', + 'tags': [ + 'MS', + 'flag' + ], + 'shortcodes': [ + ':flag:_montserrat:' + ] + }, + { + 'name': 'flag: Malta', + 'unicode': '1F1F2-1F1F9', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡น', + 'data': '🇲-1F1F9;', + 'tags': [ + 'MT', + 'flag' + ], + 'shortcodes': [ + ':flag:_malta:' + ] + }, + { + 'name': 'flag: Mauritius', + 'unicode': '1F1F2-1F1FA', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡บ', + 'data': '🇲-1F1FA;', + 'tags': [ + 'MU', + 'flag' + ], + 'shortcodes': [ + ':flag:_mauritius:' + ] + }, + { + 'name': 'flag: Maldives', + 'unicode': '1F1F2-1F1FB', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ป', + 'data': '🇲-1F1FB;', + 'tags': [ + 'MV', + 'flag' + ], + 'shortcodes': [ + ':flag:_maldives:' + ] + }, + { + 'name': 'flag: Malawi', + 'unicode': '1F1F2-1F1FC', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ผ', + 'data': '🇲-1F1FC;', + 'tags': [ + 'MW', + 'flag' + ], + 'shortcodes': [ + ':flag:_malawi:' + ] + }, + { + 'name': 'flag: Mexico', + 'unicode': '1F1F2-1F1FD', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ฝ', + 'data': '🇲-1F1FD;', + 'tags': [ + 'MX', + 'flag' + ], + 'shortcodes': [ + ':flag:_mexico:' + ] + }, + { + 'name': 'flag: Malaysia', + 'unicode': '1F1F2-1F1FE', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡พ', + 'data': '🇲-1F1FE;', + 'tags': [ + 'MY', + 'flag' + ], + 'shortcodes': [ + ':flag:_malaysia:' + ] + }, + { + 'name': 'flag: Mozambique', + 'unicode': '1F1F2-1F1FF', + 'emoji': '๐Ÿ‡ฒ๐Ÿ‡ฟ', + 'data': '🇲-1F1FF;', + 'tags': [ + 'MZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_mozambique:' + ] + }, + { + 'name': 'flag: Namibia', + 'unicode': '1F1F3-1F1E6', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ฆ', + 'data': '🇳-1F1E6;', + 'tags': [ + 'NA', + 'flag' + ], + 'shortcodes': [ + ':flag:_namibia:' + ] + }, + { + 'name': 'flag: New Caledonia', + 'unicode': '1F1F3-1F1E8', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡จ', + 'data': '🇳-1F1E8;', + 'tags': [ + 'NC', + 'flag' + ], + 'shortcodes': [ + ':flag:_new_caledonia:' + ] + }, + { + 'name': 'flag: Niger', + 'unicode': '1F1F3-1F1EA', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ช', + 'data': '🇳-1F1EA;', + 'tags': [ + 'NE', + 'flag' + ], + 'shortcodes': [ + ':flag:_niger:' + ] + }, + { + 'name': 'flag: Norfolk Island', + 'unicode': '1F1F3-1F1EB', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ซ', + 'data': '🇳-1F1EB;', + 'tags': [ + 'NF', + 'flag' + ], + 'shortcodes': [ + ':flag:_norfolk_island:' + ] + }, + { + 'name': 'flag: Nigeria', + 'unicode': '1F1F3-1F1EC', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ฌ', + 'data': '🇳-1F1EC;', + 'tags': [ + 'NG', + 'flag' + ], + 'shortcodes': [ + ':flag:_nigeria:' + ] + }, + { + 'name': 'flag: Nicaragua', + 'unicode': '1F1F3-1F1EE', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ฎ', + 'data': '🇳-1F1EE;', + 'tags': [ + 'NI', + 'flag' + ], + 'shortcodes': [ + ':flag:_nicaragua:' + ] + }, + { + 'name': 'flag: Netherlands', + 'unicode': '1F1F3-1F1F1', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ฑ', + 'data': '🇳-1F1F1;', + 'tags': [ + 'NL', + 'flag' + ], + 'shortcodes': [ + ':flag:_netherlands:' + ] + }, + { + 'name': 'flag: Norway', + 'unicode': '1F1F3-1F1F4', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ด', + 'data': '🇳-1F1F4;', + 'tags': [ + 'NO', + 'flag' + ], + 'shortcodes': [ + ':flag:_norway:' + ] + }, + { + 'name': 'flag: Nepal', + 'unicode': '1F1F3-1F1F5', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ต', + 'data': '🇳-1F1F5;', + 'tags': [ + 'NP', + 'flag' + ], + 'shortcodes': [ + ':flag:_nepal:' + ] + }, + { + 'name': 'flag: Nauru', + 'unicode': '1F1F3-1F1F7', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ท', + 'data': '🇳-1F1F7;', + 'tags': [ + 'NR', + 'flag' + ], + 'shortcodes': [ + ':flag:_nauru:' + ] + }, + { + 'name': 'flag: Niue', + 'unicode': '1F1F3-1F1FA', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡บ', + 'data': '🇳-1F1FA;', + 'tags': [ + 'NU', + 'flag' + ], + 'shortcodes': [ + ':flag:_niue:' + ] + }, + { + 'name': 'flag: New Zealand', + 'unicode': '1F1F3-1F1FF', + 'emoji': '๐Ÿ‡ณ๐Ÿ‡ฟ', + 'data': '🇳-1F1FF;', + 'tags': [ + 'NZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_new_zealand:' + ] + }, + { + 'name': 'flag: Oman', + 'unicode': '1F1F4-1F1F2', + 'emoji': '๐Ÿ‡ด๐Ÿ‡ฒ', + 'data': '🇴-1F1F2;', + 'tags': [ + 'OM', + 'flag' + ], + 'shortcodes': [ + ':flag:_oman:' + ] + }, + { + 'name': 'flag: Panama', + 'unicode': '1F1F5-1F1E6', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ฆ', + 'data': '🇵-1F1E6;', + 'tags': [ + 'PA', + 'flag' + ], + 'shortcodes': [ + ':flag:_panama:' + ] + }, + { + 'name': 'flag: Peru', + 'unicode': '1F1F5-1F1EA', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ช', + 'data': '🇵-1F1EA;', + 'tags': [ + 'PE', + 'flag' + ], + 'shortcodes': [ + ':flag:_peru:' + ] + }, + { + 'name': 'flag: French Polynesia', + 'unicode': '1F1F5-1F1EB', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ซ', + 'data': '🇵-1F1EB;', + 'tags': [ + 'PF', + 'flag' + ], + 'shortcodes': [ + ':flag:_french_polynesia:' + ] + }, + { + 'name': 'flag: Papua New Guinea', + 'unicode': '1F1F5-1F1EC', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ฌ', + 'data': '🇵-1F1EC;', + 'tags': [ + 'PG', + 'flag' + ], + 'shortcodes': [ + ':flag:_papua_new_guinea:' + ] + }, + { + 'name': 'flag: Philippines', + 'unicode': '1F1F5-1F1ED', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ญ', + 'data': '🇵-1F1ED;', + 'tags': [ + 'PH', + 'flag' + ], + 'shortcodes': [ + ':flag:_philippines:' + ] + }, + { + 'name': 'flag: Pakistan', + 'unicode': '1F1F5-1F1F0', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ฐ', + 'data': '🇵-1F1F0;', + 'tags': [ + 'PK', + 'flag' + ], + 'shortcodes': [ + ':flag:_pakistan:' + ] + }, + { + 'name': 'flag: Poland', + 'unicode': '1F1F5-1F1F1', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ฑ', + 'data': '🇵-1F1F1;', + 'tags': [ + 'PL', + 'flag' + ], + 'shortcodes': [ + ':flag:_poland:' + ] + }, + { + 'name': 'flag: St. Pierre & Miquelon', + 'unicode': '1F1F5-1F1F2', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ฒ', + 'data': '🇵-1F1F2;', + 'tags': [ + 'PM', + 'flag' + ], + 'shortcodes': [ + ':flag:_st._pierre_&_miquelon:' + ] + }, + { + 'name': 'flag: Pitcairn Islands', + 'unicode': '1F1F5-1F1F3', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ณ', + 'data': '🇵-1F1F3;', + 'tags': [ + 'PN', + 'flag' + ], + 'shortcodes': [ + ':flag:_pitcairn_islands:' + ] + }, + { + 'name': 'flag: Puerto Rico', + 'unicode': '1F1F5-1F1F7', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ท', + 'data': '🇵-1F1F7;', + 'tags': [ + 'PR', + 'flag' + ], + 'shortcodes': [ + ':flag:_puerto_rico:' + ] + }, + { + 'name': 'flag: Palestinian Territories', + 'unicode': '1F1F5-1F1F8', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ธ', + 'data': '🇵-1F1F8;', + 'tags': [ + 'PS', + 'flag' + ], + 'shortcodes': [ + ':flag:_palestinian_territories:' + ] + }, + { + 'name': 'flag: Portugal', + 'unicode': '1F1F5-1F1F9', + 'emoji': '๐Ÿ‡ต๐Ÿ‡น', + 'data': '🇵-1F1F9;', + 'tags': [ + 'PT', + 'flag' + ], + 'shortcodes': [ + ':flag:_portugal:' + ] + }, + { + 'name': 'flag: Palau', + 'unicode': '1F1F5-1F1FC', + 'emoji': '๐Ÿ‡ต๐Ÿ‡ผ', + 'data': '🇵-1F1FC;', + 'tags': [ + 'PW', + 'flag' + ], + 'shortcodes': [ + ':flag:_palau:' + ] + }, + { + 'name': 'flag: Paraguay', + 'unicode': '1F1F5-1F1FE', + 'emoji': '๐Ÿ‡ต๐Ÿ‡พ', + 'data': '🇵-1F1FE;', + 'tags': [ + 'PY', + 'flag' + ], + 'shortcodes': [ + ':flag:_paraguay:' + ] + }, + { + 'name': 'flag: Qatar', + 'unicode': '1F1F6-1F1E6', + 'emoji': '๐Ÿ‡ถ๐Ÿ‡ฆ', + 'data': '🇶-1F1E6;', + 'tags': [ + 'QA', + 'flag' + ], + 'shortcodes': [ + ':flag:_qatar:' + ] + }, + { + 'name': 'flag: Rรฉunion', + 'unicode': '1F1F7-1F1EA', + 'emoji': '๐Ÿ‡ท๐Ÿ‡ช', + 'data': '🇷-1F1EA;', + 'tags': [ + 'RE', + 'flag' + ], + 'shortcodes': [ + ':flag:_rรฉunion:' + ] + }, + { + 'name': 'flag: Romania', + 'unicode': '1F1F7-1F1F4', + 'emoji': '๐Ÿ‡ท๐Ÿ‡ด', + 'data': '🇷-1F1F4;', + 'tags': [ + 'RO', + 'flag' + ], + 'shortcodes': [ + ':flag:_romania:' + ] + }, + { + 'name': 'flag: Serbia', + 'unicode': '1F1F7-1F1F8', + 'emoji': '๐Ÿ‡ท๐Ÿ‡ธ', + 'data': '🇷-1F1F8;', + 'tags': [ + 'RS', + 'flag' + ], + 'shortcodes': [ + ':flag:_serbia:' + ] + }, + { + 'name': 'flag: Russia', + 'unicode': '1F1F7-1F1FA', + 'emoji': '๐Ÿ‡ท๐Ÿ‡บ', + 'data': '🇷-1F1FA;', + 'tags': [ + 'RU', + 'flag' + ], + 'shortcodes': [ + ':flag:_russia:' + ] + }, + { + 'name': 'flag: Rwanda', + 'unicode': '1F1F7-1F1FC', + 'emoji': '๐Ÿ‡ท๐Ÿ‡ผ', + 'data': '🇷-1F1FC;', + 'tags': [ + 'RW', + 'flag' + ], + 'shortcodes': [ + ':flag:_rwanda:' + ] + }, + { + 'name': 'flag: Saudi Arabia', + 'unicode': '1F1F8-1F1E6', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฆ', + 'data': '🇸-1F1E6;', + 'tags': [ + 'SA', + 'flag' + ], + 'shortcodes': [ + ':flag:_saudi_arabia:' + ] + }, + { + 'name': 'flag: Solomon Islands', + 'unicode': '1F1F8-1F1E7', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ง', + 'data': '🇸-1F1E7;', + 'tags': [ + 'SB', + 'flag' + ], + 'shortcodes': [ + ':flag:_solomon_islands:' + ] + }, + { + 'name': 'flag: Seychelles', + 'unicode': '1F1F8-1F1E8', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡จ', + 'data': '🇸-1F1E8;', + 'tags': [ + 'SC', + 'flag' + ], + 'shortcodes': [ + ':flag:_seychelles:' + ] + }, + { + 'name': 'flag: Sudan', + 'unicode': '1F1F8-1F1E9', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฉ', + 'data': '🇸-1F1E9;', + 'tags': [ + 'SD', + 'flag' + ], + 'shortcodes': [ + ':flag:_sudan:' + ] + }, + { + 'name': 'flag: Sweden', + 'unicode': '1F1F8-1F1EA', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ช', + 'data': '🇸-1F1EA;', + 'tags': [ + 'SE', + 'flag' + ], + 'shortcodes': [ + ':flag:_sweden:' + ] + }, + { + 'name': 'flag: Singapore', + 'unicode': '1F1F8-1F1EC', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฌ', + 'data': '🇸-1F1EC;', + 'tags': [ + 'SG', + 'flag' + ], + 'shortcodes': [ + ':flag:_singapore:' + ] + }, + { + 'name': 'flag: St. Helena', + 'unicode': '1F1F8-1F1ED', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ญ', + 'data': '🇸-1F1ED;', + 'tags': [ + 'SH', + 'flag' + ], + 'shortcodes': [ + ':flag:_st._helena:' + ] + }, + { + 'name': 'flag: Slovenia', + 'unicode': '1F1F8-1F1EE', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฎ', + 'data': '🇸-1F1EE;', + 'tags': [ + 'SI', + 'flag' + ], + 'shortcodes': [ + ':flag:_slovenia:' + ] + }, + { + 'name': 'flag: Svalbard & Jan Mayen', + 'unicode': '1F1F8-1F1EF', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฏ', + 'data': '🇸-1F1EF;', + 'tags': [ + 'SJ', + 'flag' + ], + 'shortcodes': [ + ':flag:_svalbard_&_jan_mayen:' + ] + }, + { + 'name': 'flag: Slovakia', + 'unicode': '1F1F8-1F1F0', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฐ', + 'data': '🇸-1F1F0;', + 'tags': [ + 'SK', + 'flag' + ], + 'shortcodes': [ + ':flag:_slovakia:' + ] + }, + { + 'name': 'flag: Sierra Leone', + 'unicode': '1F1F8-1F1F1', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฑ', + 'data': '🇸-1F1F1;', + 'tags': [ + 'SL', + 'flag' + ], + 'shortcodes': [ + ':flag:_sierra_leone:' + ] + }, + { + 'name': 'flag: San Marino', + 'unicode': '1F1F8-1F1F2', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฒ', + 'data': '🇸-1F1F2;', + 'tags': [ + 'SM', + 'flag' + ], + 'shortcodes': [ + ':flag:_san_marino:' + ] + }, + { + 'name': 'flag: Senegal', + 'unicode': '1F1F8-1F1F3', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ณ', + 'data': '🇸-1F1F3;', + 'tags': [ + 'SN', + 'flag' + ], + 'shortcodes': [ + ':flag:_senegal:' + ] + }, + { + 'name': 'flag: Somalia', + 'unicode': '1F1F8-1F1F4', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ด', + 'data': '🇸-1F1F4;', + 'tags': [ + 'SO', + 'flag' + ], + 'shortcodes': [ + ':flag:_somalia:' + ] + }, + { + 'name': 'flag: Suriname', + 'unicode': '1F1F8-1F1F7', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ท', + 'data': '🇸-1F1F7;', + 'tags': [ + 'SR', + 'flag' + ], + 'shortcodes': [ + ':flag:_suriname:' + ] + }, + { + 'name': 'flag: South Sudan', + 'unicode': '1F1F8-1F1F8', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ธ', + 'data': '🇸-1F1F8;', + 'tags': [ + 'SS', + 'flag' + ], + 'shortcodes': [ + ':flag:_south_sudan:' + ] + }, + { + 'name': 'flag: Sรฃo Tomรฉ & Prรญncipe', + 'unicode': '1F1F8-1F1F9', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡น', + 'data': '🇸-1F1F9;', + 'tags': [ + 'ST', + 'flag' + ], + 'shortcodes': [ + ':flag:_sรฃo_tomรฉ_&_prรญncipe:' + ] + }, + { + 'name': 'flag: El Salvador', + 'unicode': '1F1F8-1F1FB', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ป', + 'data': '🇸-1F1FB;', + 'tags': [ + 'SV', + 'flag' + ], + 'shortcodes': [ + ':flag:_el_salvador:' + ] + }, + { + 'name': 'flag: Sint Maarten', + 'unicode': '1F1F8-1F1FD', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฝ', + 'data': '🇸-1F1FD;', + 'tags': [ + 'SX', + 'flag' + ], + 'shortcodes': [ + ':flag:_sint_maarten:' + ] + }, + { + 'name': 'flag: Syria', + 'unicode': '1F1F8-1F1FE', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡พ', + 'data': '🇸-1F1FE;', + 'tags': [ + 'SY', + 'flag' + ], + 'shortcodes': [ + ':flag:_syria:' + ] + }, + { + 'name': 'flag: Eswatini', + 'unicode': '1F1F8-1F1FF', + 'emoji': '๐Ÿ‡ธ๐Ÿ‡ฟ', + 'data': '🇸-1F1FF;', + 'tags': [ + 'SZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_eswatini:' + ] + }, + { + 'name': 'flag: Tristan da Cunha', + 'unicode': '1F1F9-1F1E6', + 'emoji': '๐Ÿ‡น๐Ÿ‡ฆ', + 'data': '🇹-1F1E6;', + 'tags': [ + 'TA', + 'flag' + ], + 'shortcodes': [ + ':flag:_tristan_da_cunha:' + ] + }, + { + 'name': 'flag: Turks & Caicos Islands', + 'unicode': '1F1F9-1F1E8', + 'emoji': '๐Ÿ‡น๐Ÿ‡จ', + 'data': '🇹-1F1E8;', + 'tags': [ + 'TC', + 'flag' + ], + 'shortcodes': [ + ':flag:_turks_&_caicos_islands:' + ] + }, + { + 'name': 'flag: Chad', + 'unicode': '1F1F9-1F1E9', + 'emoji': '๐Ÿ‡น๐Ÿ‡ฉ', + 'data': '🇹-1F1E9;', + 'tags': [ + 'TD', + 'flag' + ], + 'shortcodes': [ + ':flag:_chad:' + ] + }, + { + 'name': 'flag: French Southern Territories', + 'unicode': '1F1F9-1F1EB', + 'emoji': '๐Ÿ‡น๐Ÿ‡ซ', + 'data': '🇹-1F1EB;', + 'tags': [ + 'TF', + 'flag' + ], + 'shortcodes': [ + ':flag:_french_southern_territories:' + ] + }, + { + 'name': 'flag: Togo', + 'unicode': '1F1F9-1F1EC', + 'emoji': '๐Ÿ‡น๐Ÿ‡ฌ', + 'data': '🇹-1F1EC;', + 'tags': [ + 'TG', + 'flag' + ], + 'shortcodes': [ + ':flag:_togo:' + ] + }, + { + 'name': 'flag: Thailand', + 'unicode': '1F1F9-1F1ED', + 'emoji': '๐Ÿ‡น๐Ÿ‡ญ', + 'data': '🇹-1F1ED;', + 'tags': [ + 'TH', + 'flag' + ], + 'shortcodes': [ + ':flag:_thailand:' + ] + }, + { + 'name': 'flag: Tajikistan', + 'unicode': '1F1F9-1F1EF', + 'emoji': '๐Ÿ‡น๐Ÿ‡ฏ', + 'data': '🇹-1F1EF;', + 'tags': [ + 'TJ', + 'flag' + ], + 'shortcodes': [ + ':flag:_tajikistan:' + ] + }, + { + 'name': 'flag: Tokelau', + 'unicode': '1F1F9-1F1F0', + 'emoji': '๐Ÿ‡น๐Ÿ‡ฐ', + 'data': '🇹-1F1F0;', + 'tags': [ + 'TK', + 'flag' + ], + 'shortcodes': [ + ':flag:_tokelau:' + ] + }, + { + 'name': 'flag: Timor-Leste', + 'unicode': '1F1F9-1F1F1', + 'emoji': '๐Ÿ‡น๐Ÿ‡ฑ', + 'data': '🇹-1F1F1;', + 'tags': [ + 'TL', + 'flag' + ], + 'shortcodes': [ + ':flag:_timor-leste:' + ] + }, + { + 'name': 'flag: Turkmenistan', + 'unicode': '1F1F9-1F1F2', + 'emoji': '๐Ÿ‡น๐Ÿ‡ฒ', + 'data': '🇹-1F1F2;', + 'tags': [ + 'TM', + 'flag' + ], + 'shortcodes': [ + ':flag:_turkmenistan:' + ] + }, + { + 'name': 'flag: Tunisia', + 'unicode': '1F1F9-1F1F3', + 'emoji': '๐Ÿ‡น๐Ÿ‡ณ', + 'data': '🇹-1F1F3;', + 'tags': [ + 'TN', + 'flag' + ], + 'shortcodes': [ + ':flag:_tunisia:' + ] + }, + { + 'name': 'flag: Tonga', + 'unicode': '1F1F9-1F1F4', + 'emoji': '๐Ÿ‡น๐Ÿ‡ด', + 'data': '🇹-1F1F4;', + 'tags': [ + 'TO', + 'flag' + ], + 'shortcodes': [ + ':flag:_tonga:' + ] + }, + { + 'name': 'flag: Tรผrkiye', + 'unicode': '1F1F9-1F1F7', + 'emoji': '๐Ÿ‡น๐Ÿ‡ท', + 'data': '🇹-1F1F7;', + 'tags': [ + 'TR', + 'flag' + ], + 'shortcodes': [ + ':flag:_tรผrkiye:' + ] + }, + { + 'name': 'flag: Trinidad & Tobago', + 'unicode': '1F1F9-1F1F9', + 'emoji': '๐Ÿ‡น๐Ÿ‡น', + 'data': '🇹-1F1F9;', + 'tags': [ + 'TT', + 'flag' + ], + 'shortcodes': [ + ':flag:_trinidad_&_tobago:' + ] + }, + { + 'name': 'flag: Tuvalu', + 'unicode': '1F1F9-1F1FB', + 'emoji': '๐Ÿ‡น๐Ÿ‡ป', + 'data': '🇹-1F1FB;', + 'tags': [ + 'TV', + 'flag' + ], + 'shortcodes': [ + ':flag:_tuvalu:' + ] + }, + { + 'name': 'flag: Taiwan', + 'unicode': '1F1F9-1F1FC', + 'emoji': '๐Ÿ‡น๐Ÿ‡ผ', + 'data': '🇹-1F1FC;', + 'tags': [ + 'TW', + 'flag' + ], + 'shortcodes': [ + ':flag:_taiwan:' + ] + }, + { + 'name': 'flag: Tanzania', + 'unicode': '1F1F9-1F1FF', + 'emoji': '๐Ÿ‡น๐Ÿ‡ฟ', + 'data': '🇹-1F1FF;', + 'tags': [ + 'TZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_tanzania:' + ] + }, + { + 'name': 'flag: Ukraine', + 'unicode': '1F1FA-1F1E6', + 'emoji': '๐Ÿ‡บ๐Ÿ‡ฆ', + 'data': '🇺-1F1E6;', + 'tags': [ + 'UA', + 'flag' + ], + 'shortcodes': [ + ':flag:_ukraine:' + ] + }, + { + 'name': 'flag: Uganda', + 'unicode': '1F1FA-1F1EC', + 'emoji': '๐Ÿ‡บ๐Ÿ‡ฌ', + 'data': '🇺-1F1EC;', + 'tags': [ + 'UG', + 'flag' + ], + 'shortcodes': [ + ':flag:_uganda:' + ] + }, + { + 'name': 'flag: U.S. Outlying Islands', + 'unicode': '1F1FA-1F1F2', + 'emoji': '๐Ÿ‡บ๐Ÿ‡ฒ', + 'data': '🇺-1F1F2;', + 'tags': [ + 'UM', + 'flag' + ], + 'shortcodes': [ + ':flag:_u.s._outlying_islands:' + ] + }, + { + 'name': 'flag: United Nations', + 'unicode': '1F1FA-1F1F3', + 'emoji': '๐Ÿ‡บ๐Ÿ‡ณ', + 'data': '🇺-1F1F3;', + 'tags': [ + 'UN', + 'flag' + ], + 'shortcodes': [ + ':flag:_united_nations:' + ] + }, + { + 'name': 'flag: United States', + 'unicode': '1F1FA-1F1F8', + 'emoji': '๐Ÿ‡บ๐Ÿ‡ธ', + 'data': '🇺-1F1F8;', + 'tags': [ + 'US', + 'flag' + ], + 'shortcodes': [ + ':flag:_united_states:' + ] + }, + { + 'name': 'flag: Uruguay', + 'unicode': '1F1FA-1F1FE', + 'emoji': '๐Ÿ‡บ๐Ÿ‡พ', + 'data': '🇺-1F1FE;', + 'tags': [ + 'UY', + 'flag' + ], + 'shortcodes': [ + ':flag:_uruguay:' + ] + }, + { + 'name': 'flag: Uzbekistan', + 'unicode': '1F1FA-1F1FF', + 'emoji': '๐Ÿ‡บ๐Ÿ‡ฟ', + 'data': '🇺-1F1FF;', + 'tags': [ + 'UZ', + 'flag' + ], + 'shortcodes': [ + ':flag:_uzbekistan:' + ] + }, + { + 'name': 'flag: Vatican City', + 'unicode': '1F1FB-1F1E6', + 'emoji': '๐Ÿ‡ป๐Ÿ‡ฆ', + 'data': '🇻-1F1E6;', + 'tags': [ + 'VA', + 'flag' + ], + 'shortcodes': [ + ':flag:_vatican_city:' + ] + }, + { + 'name': 'flag: St. Vincent & Grenadines', + 'unicode': '1F1FB-1F1E8', + 'emoji': '๐Ÿ‡ป๐Ÿ‡จ', + 'data': '🇻-1F1E8;', + 'tags': [ + 'VC', + 'flag' + ], + 'shortcodes': [ + ':flag:_st._vincent_&_grenadines:' + ] + }, + { + 'name': 'flag: Venezuela', + 'unicode': '1F1FB-1F1EA', + 'emoji': '๐Ÿ‡ป๐Ÿ‡ช', + 'data': '🇻-1F1EA;', + 'tags': [ + 'VE', + 'flag' + ], + 'shortcodes': [ + ':flag:_venezuela:' + ] + }, + { + 'name': 'flag: British Virgin Islands', + 'unicode': '1F1FB-1F1EC', + 'emoji': '๐Ÿ‡ป๐Ÿ‡ฌ', + 'data': '🇻-1F1EC;', + 'tags': [ + 'VG', + 'flag' + ], + 'shortcodes': [ + ':flag:_british_virgin_islands:' + ] + }, + { + 'name': 'flag: U.S. Virgin Islands', + 'unicode': '1F1FB-1F1EE', + 'emoji': '๐Ÿ‡ป๐Ÿ‡ฎ', + 'data': '🇻-1F1EE;', + 'tags': [ + 'VI', + 'flag' + ], + 'shortcodes': [ + ':flag:_u.s._virgin_islands:' + ] + }, + { + 'name': 'flag: Vietnam', + 'unicode': '1F1FB-1F1F3', + 'emoji': '๐Ÿ‡ป๐Ÿ‡ณ', + 'data': '🇻-1F1F3;', + 'tags': [ + 'VN', + 'flag' + ], + 'shortcodes': [ + ':flag:_vietnam:' + ] + }, + { + 'name': 'flag: Vanuatu', + 'unicode': '1F1FB-1F1FA', + 'emoji': '๐Ÿ‡ป๐Ÿ‡บ', + 'data': '🇻-1F1FA;', + 'tags': [ + 'VU', + 'flag' + ], + 'shortcodes': [ + ':flag:_vanuatu:' + ] + }, + { + 'name': 'flag: Wallis & Futuna', + 'unicode': '1F1FC-1F1EB', + 'emoji': '๐Ÿ‡ผ๐Ÿ‡ซ', + 'data': '🇼-1F1EB;', + 'tags': [ + 'WF', + 'flag' + ], + 'shortcodes': [ + ':flag:_wallis_&_futuna:' + ] + }, + { + 'name': 'flag: Samoa', + 'unicode': '1F1FC-1F1F8', + 'emoji': '๐Ÿ‡ผ๐Ÿ‡ธ', + 'data': '🇼-1F1F8;', + 'tags': [ + 'WS', + 'flag' + ], + 'shortcodes': [ + ':flag:_samoa:' + ] + }, + { + 'name': 'flag: Kosovo', + 'unicode': '1F1FD-1F1F0', + 'emoji': '๐Ÿ‡ฝ๐Ÿ‡ฐ', + 'data': '🇽-1F1F0;', + 'tags': [ + 'XK', + 'flag' + ], + 'shortcodes': [ + ':flag:_kosovo:' + ] + }, + { + 'name': 'flag: Yemen', + 'unicode': '1F1FE-1F1EA', + 'emoji': '๐Ÿ‡พ๐Ÿ‡ช', + 'data': '🇾-1F1EA;', + 'tags': [ + 'YE', + 'flag' + ], + 'shortcodes': [ + ':flag:_yemen:' + ] + }, + { + 'name': 'flag: Mayotte', + 'unicode': '1F1FE-1F1F9', + 'emoji': '๐Ÿ‡พ๐Ÿ‡น', + 'data': '🇾-1F1F9;', + 'tags': [ + 'YT', + 'flag' + ], + 'shortcodes': [ + ':flag:_mayotte:' + ] + }, + { + 'name': 'flag: South Africa', + 'unicode': '1F1FF-1F1E6', + 'emoji': '๐Ÿ‡ฟ๐Ÿ‡ฆ', + 'data': '🇿-1F1E6;', + 'tags': [ + 'ZA', + 'flag' + ], + 'shortcodes': [ + ':flag:_south_africa:' + ] + }, + { + 'name': 'flag: Zambia', + 'unicode': '1F1FF-1F1F2', + 'emoji': '๐Ÿ‡ฟ๐Ÿ‡ฒ', + 'data': '🇿-1F1F2;', + 'tags': [ + 'ZM', + 'flag' + ], + 'shortcodes': [ + ':flag:_zambia:' + ] + }, + { + 'name': 'flag: Zimbabwe', + 'unicode': '1F1FF-1F1FC', + 'emoji': '๐Ÿ‡ฟ๐Ÿ‡ผ', + 'data': '🇿-1F1FC;', + 'tags': [ + 'ZW', + 'flag' + ], + 'shortcodes': [ + ':flag:_zimbabwe:' + ] + }, + { + 'name': 'flag: England', + 'unicode': '1F3F4-E0067-E0062-E0065-E006E-E0067-E007F', + 'emoji': '๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ', + 'data': '🏴-E0067-E0062-E0065-E006E-E0067-E007F;', + 'tags': [ + 'flag', + 'gbeng' + ], + 'shortcodes': [ + ':flag:_england:' + ] + }, + { + 'name': 'flag: Scotland', + 'unicode': '1F3F4-E0067-E0062-E0073-E0063-E0074-E007F', + 'emoji': '๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ', + 'data': '🏴-E0067-E0062-E0073-E0063-E0074-E007F;', + 'tags': [ + 'flag', + 'gbsct' + ], + 'shortcodes': [ + ':flag:_scotland:' + ] + }, + { + 'name': 'flag: Wales', + 'unicode': '1F3F4-E0067-E0062-E0077-E006C-E0073-E007F', + 'emoji': '๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ', + 'data': '🏴-E0067-E0062-E0077-E006C-E0073-E007F;', + 'tags': [ + 'flag', + 'gbwls' + ], + 'shortcodes': [ + ':flag:_wales:' + ] + } + ] + }, + { + 'name': 'extras-unicode', + 'iconClass': 'fas fa-font', + 'emojis': [ + { + 'name': 'regional indicator A', + 'unicode': '1F1E6', + 'emoji': '๐Ÿ‡ฆ', + 'data': '🇦', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_a:' + ] + }, + { + 'name': 'regional indicator B', + 'unicode': '1F1E7', + 'emoji': '๐Ÿ‡ง', + 'data': '🇧', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_b:' + ] + }, + { + 'name': 'regional indicator C', + 'unicode': '1F1E8', + 'emoji': '๐Ÿ‡จ', + 'data': '🇨', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_c:' + ] + }, + { + 'name': 'regional indicator D', + 'unicode': '1F1E9', + 'emoji': '๐Ÿ‡ฉ', + 'data': '🇩', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_d:' + ] + }, + { + 'name': 'regional indicator E', + 'unicode': '1F1EA', + 'emoji': '๐Ÿ‡ช', + 'data': '🇪', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_e:' + ] + }, + { + 'name': 'regional indicator F', + 'unicode': '1F1EB', + 'emoji': '๐Ÿ‡ซ', + 'data': '🇫', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_f:' + ] + }, + { + 'name': 'regional indicator G', + 'unicode': '1F1EC', + 'emoji': '๐Ÿ‡ฌ', + 'data': '🇬', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_g:' + ] + }, + { + 'name': 'regional indicator H', + 'unicode': '1F1ED', + 'emoji': '๐Ÿ‡ญ', + 'data': '🇭', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_h:' + ] + }, + { + 'name': 'regional indicator I', + 'unicode': '1F1EE', + 'emoji': '๐Ÿ‡ฎ', + 'data': '🇮', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_i:' + ] + }, + { + 'name': 'regional indicator J', + 'unicode': '1F1EF', + 'emoji': '๐Ÿ‡ฏ', + 'data': '🇯', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_j:' + ] + }, + { + 'name': 'regional indicator K', + 'unicode': '1F1F0', + 'emoji': '๐Ÿ‡ฐ', + 'data': '🇰', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_k:' + ] + }, + { + 'name': 'regional indicator L', + 'unicode': '1F1F1', + 'emoji': '๐Ÿ‡ฑ', + 'data': '🇱', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_l:' + ] + }, + { + 'name': 'regional indicator M', + 'unicode': '1F1F2', + 'emoji': '๐Ÿ‡ฒ', + 'data': '🇲', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_m:' + ] + }, + { + 'name': 'regional indicator N', + 'unicode': '1F1F3', + 'emoji': '๐Ÿ‡ณ', + 'data': '🇳', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_n:' + ] + }, + { + 'name': 'regional indicator O', + 'unicode': '1F1F4', + 'emoji': '๐Ÿ‡ด', + 'data': '🇴', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_o:' + ] + }, + { + 'name': 'regional indicator P', + 'unicode': '1F1F5', + 'emoji': '๐Ÿ‡ต', + 'data': '🇵', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_p:' + ] + }, + { + 'name': 'regional indicator Q', + 'unicode': '1F1F6', + 'emoji': '๐Ÿ‡ถ', + 'data': '🇶', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_q:' + ] + }, + { + 'name': 'regional indicator R', + 'unicode': '1F1F7', + 'emoji': '๐Ÿ‡ท', + 'data': '🇷', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_r:' + ] + }, + { + 'name': 'regional indicator S', + 'unicode': '1F1F8', + 'emoji': '๐Ÿ‡ธ', + 'data': '🇸', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_s:' + ] + }, + { + 'name': 'regional indicator T', + 'unicode': '1F1F9', + 'emoji': '๐Ÿ‡น', + 'data': '🇹', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_t:' + ] + }, + { + 'name': 'regional indicator U', + 'unicode': '1F1FA', + 'emoji': '๐Ÿ‡บ', + 'data': '🇺', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_u:' + ] + }, + { + 'name': 'regional indicator V', + 'unicode': '1F1FB', + 'emoji': '๐Ÿ‡ป', + 'data': '🇻', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_v:' + ] + }, + { + 'name': 'regional indicator W', + 'unicode': '1F1FC', + 'emoji': '๐Ÿ‡ผ', + 'data': '🇼', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_w:' + ] + }, + { + 'name': 'regional indicator X', + 'unicode': '1F1FD', + 'emoji': '๐Ÿ‡ฝ', + 'data': '🇽', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_x:' + ] + }, + { + 'name': 'regional indicator Y', + 'unicode': '1F1FE', + 'emoji': '๐Ÿ‡พ', + 'data': '🇾', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_y:' + ] + }, + { + 'name': 'regional indicator Z', + 'unicode': '1F1FF', + 'emoji': '๐Ÿ‡ฟ', + 'data': '🇿', + 'tags': [], + 'shortcodes': [ + ':regional_indicator_z:' + ] + }, + { + 'name': 'copyleft symbol', + 'unicode': '1F12F', + 'emoji': '๐Ÿ„ฏ', + 'data': '🄯', + 'tags': [], + 'shortcodes': [ + ':copyleft_symbol:' + ] + }, + { + 'name': 'hacker cat', + 'unicode': '1F431-200D-1F4BB', + 'emoji': '๐Ÿฑโ€๐Ÿ’ป', + 'data': '🐱-200D-1F4BB;', + 'tags': [], + 'shortcodes': [ + ':hacker_cat:' + ] + }, + { + 'name': 'stick figure', + 'unicode': '1FBC5', + 'emoji': '๐Ÿฏ…', + 'data': '🯅', + 'tags': [], + 'shortcodes': [ + ':stick_figure:' + ] + }, + { + 'name': 'stick figure with arms raised', + 'unicode': '1FBC6', + 'emoji': '๐Ÿฏ†', + 'data': '🯆', + 'tags': [], + 'shortcodes': [ + ':stick_figure_with_arms_raised:' + ] + }, + { + 'name': 'stick figure leaning left', + 'unicode': '1FBC7', + 'emoji': '๐Ÿฏ‡', + 'data': '🯇', + 'tags': [], + 'shortcodes': [ + ':stick_figure_leaning_left:' + ] + }, + { + 'name': 'stick figure leaning right', + 'unicode': '1FBC8', + 'emoji': '๐Ÿฏˆ', + 'data': '🯈', + 'tags': [], + 'shortcodes': [ + ':stick_figure_leaning_right:' + ] + }, + { + 'name': 'stick figure with dress', + 'unicode': '1FBC9', + 'emoji': '๐Ÿฏ‰', + 'data': '🯉', + 'tags': [], + 'shortcodes': [ + ':stick_figure_with_dress:' + ] + }, + { + 'name': 'sound recording copyright', + 'unicode': '2117', + 'emoji': 'โ„—', + 'data': '℗', + 'tags': [], + 'shortcodes': [ + ':sound_recording_copyright:' + ] + }, + { + 'name': 'service mark', + 'unicode': '2120', + 'emoji': 'โ„ ', + 'data': '℠', + 'tags': [], + 'shortcodes': [ + ':service_mark:' + ] + }, + { + 'name': 'circled equals', + 'unicode': '229C', + 'emoji': 'โŠœ', + 'data': '⊜', + 'tags': [], + 'shortcodes': [ + ':circled_equals:' + ] + }, + { + 'name': 'power symbol', + 'unicode': '23FB', + 'emoji': 'โป', + 'data': '⏻', + 'tags': [], + 'shortcodes': [ + ':power_symbol:' + ] + }, + { + 'name': 'power on-off symbol', + 'unicode': '23FC', + 'emoji': 'โผ', + 'data': '⏼', + 'tags': [], + 'shortcodes': [ + ':power_on-off_symbol:' + ] + }, + { + 'name': 'power on symbol', + 'unicode': '23FD', + 'emoji': 'โฝ', + 'data': '⏽', + 'tags': [], + 'shortcodes': [ + ':power_on_symbol:' + ] + }, + { + 'name': 'power sleep symbol', + 'unicode': '23FE', + 'emoji': 'โพ', + 'data': '⏾', + 'tags': [], + 'shortcodes': [ + ':power_sleep_symbol:' + ] + }, + { + 'name': 'white square', + 'unicode': '25A1', + 'emoji': 'โ–ก', + 'data': '□', + 'tags': [], + 'shortcodes': [ + ':white_square:' + ] + }, + { + 'name': 'black rectangle', + 'unicode': '25AC', + 'emoji': 'โ–ฌ', + 'data': '▬', + 'tags': [], + 'shortcodes': [ + ':black_rectangle:' + ] + }, + { + 'name': 'white rectangle', + 'unicode': '25AD', + 'emoji': 'โ–ญ', + 'data': '▭', + 'tags': [], + 'shortcodes': [ + ':white_rectangle:' + ] + }, + { + 'name': 'black vertical rectangle', + 'unicode': '25AE', + 'emoji': 'โ–ฎ', + 'data': '▮', + 'tags': [], + 'shortcodes': [ + ':black_vertical_rectangle:' + ] + }, + { + 'name': 'fisheye', + 'unicode': '25C9', + 'emoji': 'โ—‰', + 'data': '◉', + 'tags': [], + 'shortcodes': [ + ':fisheye:' + ] + }, + { + 'name': 'circle with left half black', + 'unicode': '25D0', + 'emoji': 'โ—', + 'data': '◐', + 'tags': [], + 'shortcodes': [ + ':circle_with_left_half_black:' + ] + }, + { + 'name': 'circle with right half black', + 'unicode': '25D1', + 'emoji': 'โ—‘', + 'data': '◑', + 'tags': [], + 'shortcodes': [ + ':circle_with_right_half_black:' + ] + }, + { + 'name': 'square with left half black', + 'unicode': '25E7', + 'emoji': 'โ—ง', + 'data': '◧', + 'tags': [], + 'shortcodes': [ + ':square_with_left_half_black:' + ] + }, + { + 'name': 'square with right half black', + 'unicode': '25E8', + 'emoji': 'โ—จ', + 'data': '◨', + 'tags': [], + 'shortcodes': [ + ':square_with_right_half_black:' + ] + }, + { + 'name': 'square with upper left diagonal black', + 'unicode': '25E9', + 'emoji': 'โ—ฉ', + 'data': '◩', + 'tags': [], + 'shortcodes': [ + ':square_with_upper_left_diagonal_black:' + ] + }, + { + 'name': 'square with lower right diagonal black', + 'unicode': '25EA', + 'emoji': 'โ—ช', + 'data': '◪', + 'tags': [], + 'shortcodes': [ + ':square_with_lower_right_diagonal_black:' + ] + }, + { + 'name': 'up-pointing triangle with left half black', + 'unicode': '25ED', + 'emoji': 'โ—ญ', + 'data': '◭', + 'tags': [], + 'shortcodes': [ + ':up-pointing_triangle_with_left_half_black:' + ] + }, + { + 'name': 'up-pointing triangle with right half black', + 'unicode': '25EE', + 'emoji': 'โ—ฎ', + 'data': '◮', + 'tags': [], + 'shortcodes': [ + ':up-pointing_triangle_with_right_half_black:' + ] + }, + { + 'name': 'black star', + 'unicode': '2605', + 'emoji': 'โ˜…', + 'data': '★', + 'tags': [], + 'shortcodes': [ + ':black_star:' + ] + }, + { + 'name': 'left right black arrow', + 'unicode': '2B0C', + 'emoji': 'โฌŒ', + 'data': '⬌', + 'tags': [], + 'shortcodes': [ + ':left_right_black_arrow:' + ] + }, + { + 'name': 'up down black arrow', + 'unicode': '2B0D', + 'emoji': 'โฌ', + 'data': '⬍', + 'tags': [], + 'shortcodes': [ + ':up_down_black_arrow:' + ] + }, + { + 'name': 'black pentagon', + 'unicode': '2B1F', + 'emoji': 'โฌŸ', + 'data': '⬟', + 'tags': [], + 'shortcodes': [ + ':black_pentagon:' + ] + }, + { + 'name': 'white pentagon', + 'unicode': '2B20', + 'emoji': 'โฌ ', + 'data': '⬠', + 'tags': [], + 'shortcodes': [ + ':white_pentagon:' + ] + }, + { + 'name': 'white hexagon', + 'unicode': '2B21', + 'emoji': 'โฌก', + 'data': '⬡', + 'tags': [], + 'shortcodes': [ + ':white_hexagon:' + ] + }, + { + 'name': 'black hexagon', + 'unicode': '2B22', + 'emoji': 'โฌข', + 'data': '⬢', + 'tags': [], + 'shortcodes': [ + ':black_hexagon:' + ] + }, + { + 'name': 'horizontal black hexagon ', + 'unicode': '2B23', + 'emoji': 'โฌฃ', + 'data': '⬣', + 'tags': [], + 'shortcodes': [ + ':horizontal_black_hexagon_:' + ] + }, + { + 'name': 'black large circle', + 'unicode': '2B24', + 'emoji': 'โฌค', + 'data': '⬤', + 'tags': [], + 'shortcodes': [ + ':black_large_circle:' + ] + }, + { + 'name': 'black vertical ellipse', + 'unicode': '2B2E', + 'emoji': 'โฌฎ', + 'data': '⬮', + 'tags': [], + 'shortcodes': [ + ':black_vertical_ellipse:' + ] + }, + { + 'name': 'white vertical ellipse', + 'unicode': '2B2F', + 'emoji': 'โฌฏ', + 'data': '⬯', + 'tags': [], + 'shortcodes': [ + ':white_vertical_ellipse:' + ] + }, + { + 'name': 'heavy circle', + 'unicode': '2B58', + 'emoji': 'โญ˜', + 'data': '⭘', + 'tags': [], + 'shortcodes': [ + ':heavy_circle:' + ] + }, + { + 'name': 'anticlockwise triangle-headed top u-shaped arrow', + 'unicode': '2B8F', + 'emoji': 'โฎ', + 'data': '⮏', + 'tags': [], + 'shortcodes': [ + ':anticlockwise_triangle-headed_top_u-shaped_arrow:' + ] + }, + { + 'name': 'overlapping white squares', + 'unicode': '2BBA', + 'emoji': 'โฎบ', + 'data': '⮺', + 'tags': [], + 'shortcodes': [ + ':overlapping_white_squares:' + ] + }, + { + 'name': 'overlapping white and black squares', + 'unicode': '2BBB', + 'emoji': 'โฎป', + 'data': '⮻', + 'tags': [], + 'shortcodes': [ + ':overlapping_white_and_black_squares:' + ] + }, + { + 'name': 'overlapping black squares', + 'unicode': '2BBC', + 'emoji': 'โฎผ', + 'data': '⮼', + 'tags': [], + 'shortcodes': [ + ':overlapping_black_squares:' + ] + }, + { + 'name': 'horizontal black octagon', + 'unicode': '2BC3', + 'emoji': 'โฏƒ', + 'data': '⯃', + 'tags': [], + 'shortcodes': [ + ':horizontal_black_octagon:' + ] + }, + { + 'name': 'black octagon', + 'unicode': '2BC4', + 'emoji': 'โฏ„', + 'data': '⯄', + 'tags': [], + 'shortcodes': [ + ':black_octagon:' + ] + }, + { + 'name': 'star with left half black', + 'unicode': '2BEA', + 'emoji': 'โฏช', + 'data': '⯪', + 'tags': [], + 'shortcodes': [ + ':star_with_left_half_black:' + ] + }, + { + 'name': 'star with right half black', + 'unicode': '2BEB', + 'emoji': 'โฏซ', + 'data': '⯫', + 'tags': [], + 'shortcodes': [ + ':star_with_right_half_black:' + ] + } + ] + } + ] +}; diff --git a/webapp/src/main/webapp/vue-apps/emoji-picker/main.js b/webapp/src/main/webapp/vue-apps/emoji-picker/main.js new file mode 100644 index 00000000000..f8b9c6a527a --- /dev/null +++ b/webapp/src/main/webapp/vue-apps/emoji-picker/main.js @@ -0,0 +1,43 @@ +/* + This file is part of the Meeds project (https://meeds.io/). + + Copyright (C) 2025 Meeds Association contact@meeds.io + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 3 of the License, or (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +import './initComponents.js'; +import {emojiBank} from './js/emojiBank.js'; + +const lang = eXo?.env?.portal?.language || 'en'; +const url = `/social/i18n/locale.portlet.EmojiPicker?lang=${lang}`; +const vuetify = Vue.prototype.vuetifyOptions; +const appId = 'emojiPicker'; + +const emojiAppElement = document.createElement('div'); +emojiAppElement.setAttribute('id', appId); +document.querySelector('#vuetify-apps').append(emojiAppElement); + +exoi18n.loadLanguageAsync(lang, url).then(i18n => { + Vue.createApp({ + data() { + return { + emojiBank: emojiBank + }; + }, + template: '', + vuetify, + i18n + }, `#${appId}`, 'Emoji picker'); +}); + diff --git a/webapp/src/main/webapp/vue-apps/profile-settings/components/drawers/DropdownListOptionItemValue.vue b/webapp/src/main/webapp/vue-apps/profile-settings/components/drawers/DropdownListOptionItemValue.vue index c4bb4d19f86..e88cef2a86b 100644 --- a/webapp/src/main/webapp/vue-apps/profile-settings/components/drawers/DropdownListOptionItemValue.vue +++ b/webapp/src/main/webapp/vue-apps/profile-settings/components/drawers/DropdownListOptionItemValue.vue @@ -26,10 +26,10 @@ {{ displayedValue }} @@ -39,8 +39,8 @@ cols="1" class="d-flex py-1 px-0"> - {{ displayedId }} + class="my-auto"> + {{ displayedId }}