From ee51eace697cc9369ffa39544eccb193ea2ae870 Mon Sep 17 00:00:00 2001 From: Maxwell Date: Thu, 23 May 2024 21:10:30 +0200 Subject: [PATCH 1/2] refactor: update emoji.json, now includes hex, dec and unicode - Removes `AbstractEmoji` and exposes `IEmoji` --- README.md | 45 +- app/src/main/AndroidManifest.xml | 4 - .../emojify/contract/model/AbstractEmoji.kt | 50 - .../wax911/emojify/contract/model/IEmoji.kt | 3 +- .../contract/serializer/IEmojiDeserializer.kt | 6 +- emojify/src/main/assets/emoticons/emoji.json | 38419 +++++++++------- .../kotlin/io/wax911/emojify/EmojiManager.kt | 28 +- .../wax911/emojify/manager/IEmojiManager.kt | 22 +- .../io/wax911/emojify/parser/EmojiParser.kt | 8 +- .../parser/candidate/AliasCandidate.kt | 4 +- .../parser/candidate/UnicodeCandidate.kt | 4 +- .../emojify/util/AbstractEmojiExtension.kt | 6 +- .../io/wax911/emojify/util/EmojiTrie.kt | 6 +- .../io/wax911/emojify/util/trie/Node.kt | 4 +- .../io/wax911/emojify/EmojiManagerTest.kt | 6 +- .../io/wax911/emojify/EmojiParseTest.kt | 6 +- .../io/wax911/emojify/core/emoji.json | 16806 ------- .../serializer/gson/GsonDeserializer.kt | 4 +- .../emojify/serializer/gson/GsonEmoji.kt | 9 +- .../serializer/kotlinx/KotlinxDeserializer.kt | 4 +- .../serializer/kotlinx/KotlinxEmoji.kt | 23 +- .../serializer/moshi/MoshiDeserializer.kt | 4 +- .../emojify/serializer/moshi/MoshiEmoji.kt | 9 +- 23 files changed, 21729 insertions(+), 33751 deletions(-) delete mode 100644 contract/src/main/kotlin/io/wax911/emojify/contract/model/AbstractEmoji.kt delete mode 100644 emojify/src/test/resources/io/wax911/emojify/core/emoji.json diff --git a/README.md b/README.md index 9aa1da8c..d7d7089b 100644 --- a/README.md +++ b/README.md @@ -62,9 +62,9 @@ You must use one of our artifacts `kotlinx`, `gson` or `moshi` for deserializati e.g. ```groovy dependencies { - implementation 'com.github.anitrend:android-emojify:{latest_version}' - implementation 'com.github.anitrend:android-emojify:contract:{latest_version}' - implementation 'com.github.anitrend:android-emojify:kotlinx:{latest_version}' + implementation 'com.github.anitrend.android-emojify:emojify:{latest_version}' + implementation 'com.github.anitrend.android-emojify:contract:{latest_version}' + implementation 'com.github.anitrend.android-emojify:kotlinx:{latest_version}' } ``` @@ -88,18 +88,39 @@ class App : Application() { ### Step4. Optional - Init EmojiManager with androidx-startup ```kotlin -class EmojiInitializer : AbstractEmojiInitializer() { - override val serializer: IEmojiDeserializer = KotlinxDeserializer() +class EmojiInitializer : Initializer { + private val serializer: IEmojiDeserializer = KotlinxDeserializer() + + /** + * Initializes and a component given the application [Context] + * + * @param context The application context. + */ + override fun create(context: Context) = EmojiManager.create(context, serializer) + + /** + * @return A list of dependencies that this [Initializer] depends on. This is + * used to determine initialization order of [Initializer]s. + * + * For e.g. if a [Initializer] `B` defines another + * [Initializer] `A` as its dependency, then `A` gets initialized before `B`. + */ + override fun dependencies() = emptyList>>() } class App : Application() { - internal val emojiManager: EmojiManager by lazy { - // should already be initialized if we haven't disabled initialization in manifest - // see: https://developer.android.com/topic/libraries/app-startup#disable-individual - AppInitializer.getInstance(this) - .initializeComponent(EmojiInitializer::class.java) - } + + /** + * Application scope bound emojiManager, you could keep a reference to this object in a + * dependency injector framework like as a singleton in `Hilt`, `Dagger` or `Koin` + */ + internal val startupEmojiManager: EmojiManager by lazy { + // should already be initialized if we haven't disabled initialization in manifest + // see: https://developer.android.com/topic/libraries/app-startup#disable-individual + AppInitializer.getInstance(this) + .initializeComponent(EmojiInitializer::class.java) + } } ``` @@ -111,7 +132,7 @@ class App : Application() { android:exported="false" tools:node="merge"> ``` diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 904cf97f..31db5bce 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -27,10 +27,6 @@ - diff --git a/contract/src/main/kotlin/io/wax911/emojify/contract/model/AbstractEmoji.kt b/contract/src/main/kotlin/io/wax911/emojify/contract/model/AbstractEmoji.kt deleted file mode 100644 index 2e61dd57..00000000 --- a/contract/src/main/kotlin/io/wax911/emojify/contract/model/AbstractEmoji.kt +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright 2024 AniTrend - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package io.wax911.emojify.contract.model - -import java.nio.charset.Charset - -/** - * Abstract class holding some logic. - * To implement for parser-specific data representation with their annotation - */ -abstract class AbstractEmoji : IEmoji { - override val unicode: String by lazy(LazyThreadSafetyMode.NONE) { - String(emoji.toByteArray(), Charset.forName("UTF-8")) - } - - override val htmlDec by lazy(LazyThreadSafetyMode.NONE) { - html("&#%d;") - } - - override val htmlHex by lazy(LazyThreadSafetyMode.NONE) { - html("&#x%x;") - } - - private fun html(format: String): String { - val stringLength = unicode.length - val points = arrayOfNulls(stringLength) - var count = 0 - var offset = 0 - while (offset < stringLength) { - val codePoint = unicode.codePointAt(offset) - points[count++] = String.format(format, codePoint) - offset += Character.charCount(codePoint) - } - return points.joinToString(limit = count, truncated = "", separator = "") - } -} diff --git a/contract/src/main/kotlin/io/wax911/emojify/contract/model/IEmoji.kt b/contract/src/main/kotlin/io/wax911/emojify/contract/model/IEmoji.kt index 0ae89afb..6e3cd67f 100644 --- a/contract/src/main/kotlin/io/wax911/emojify/contract/model/IEmoji.kt +++ b/contract/src/main/kotlin/io/wax911/emojify/contract/model/IEmoji.kt @@ -25,7 +25,7 @@ package io.wax911.emojify.contract.model * @property supportsGender true if the emoji supports the gender modifiers, else false * @property tags a list of tags for this emoji */ -internal interface IEmoji { +interface IEmoji { val aliases: List? val description: String? val emoji: String @@ -33,7 +33,6 @@ internal interface IEmoji { val supportsFitzpatrick: Boolean val supportsGender: Boolean val tags: List? - val unicode: String val htmlDec: String val htmlHex: String diff --git a/contract/src/main/kotlin/io/wax911/emojify/contract/serializer/IEmojiDeserializer.kt b/contract/src/main/kotlin/io/wax911/emojify/contract/serializer/IEmojiDeserializer.kt index 42890389..be8a8a4f 100644 --- a/contract/src/main/kotlin/io/wax911/emojify/contract/serializer/IEmojiDeserializer.kt +++ b/contract/src/main/kotlin/io/wax911/emojify/contract/serializer/IEmojiDeserializer.kt @@ -16,7 +16,7 @@ package io.wax911.emojify.contract.serializer -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import java.io.InputStream /** @@ -24,7 +24,7 @@ import java.io.InputStream */ interface IEmojiDeserializer { /** - * Decodes the given [InputStream] to an object of type List<[AbstractEmoji]> + * Decodes the given [InputStream] to an object of type List<[IEmoji]> */ - fun decodeFromStream(inputStream: InputStream): List + fun decodeFromStream(inputStream: InputStream): List } diff --git a/emojify/src/main/assets/emoticons/emoji.json b/emojify/src/main/assets/emoticons/emoji.json index f17abedc..4fd4fc2d 100644 --- a/emojify/src/main/assets/emoticons/emoji.json +++ b/emojify/src/main/assets/emoticons/emoji.json @@ -1,16806 +1,21615 @@ [ - { - "emojiChar": "😄", - "emoji": "\uD83D\uDE04", - "description": "smiling face with open mouth and smiling eyes", - "aliases": [ - "smile" - ], - "tags": [ - "happy", - "joy", - "pleased" - ] - }, - { - "emojiChar": "😃", - "emoji": "\uD83D\uDE03", - "description": "smiling face with open mouth", - "aliases": [ - "smiley" - ], - "tags": [ - "happy", - "joy", - "haha" - ] - }, - { - "emojiChar": "😀", - "emoji": "\uD83D\uDE00", - "description": "grinning face", - "aliases": [ - "grinning" - ], - "tags": [ - "smile", - "happy" - ] - }, - { - "emojiChar": "😊", - "emoji": "\uD83D\uDE0A", - "description": "smiling face with smiling eyes", - "aliases": [ - "blush" - ], - "tags": [ - "proud" - ] - }, - { - "emojiChar": "☺", - "emoji": "\u263A", - "description": "white smiling face", - "aliases": [ - "relaxed" - ], - "tags": [ - "blush", - "pleased" - ] - }, - { - "emojiChar": "😉", - "emoji": "\uD83D\uDE09", - "description": "winking face", - "aliases": [ - "wink" - ], - "tags": [ - "flirt" - ] - }, - { - "emojiChar": "😍", - "emoji": "\uD83D\uDE0D", - "description": "smiling face with heart-shaped eyes", - "aliases": [ - "heart_eyes" - ], - "tags": [ - "love", - "crush" - ] - }, - { - "emojiChar": "😘", - "emoji": "\uD83D\uDE18", - "description": "face throwing a kiss", - "aliases": [ - "kissing_heart" - ], - "tags": [ - "flirt" - ] - }, - { - "emojiChar": "😚", - "emoji": "\uD83D\uDE1A", - "description": "kissing face with closed eyes", - "aliases": [ - "kissing_closed_eyes" - ], - "tags": [] - }, - { - "emojiChar": "😗", - "emoji": "\uD83D\uDE17", - "description": "kissing face", - "aliases": [ - "kissing" - ], - "tags": [] - }, - { - "emojiChar": "😙", - "emoji": "\uD83D\uDE19", - "description": "kissing face with smiling eyes", - "aliases": [ - "kissing_smiling_eyes" - ], - "tags": [] - }, - { - "emojiChar": "😜", - "emoji": "\uD83D\uDE1C", - "description": "face with stuck-out tongue and winking eye", - "aliases": [ - "stuck_out_tongue_winking_eye" - ], - "tags": [ - "prank", - "silly" - ] - }, - { - "emojiChar": "😝", - "emoji": "\uD83D\uDE1D", - "description": "face with stuck-out tongue and tightly-closed eyes", - "aliases": [ - "stuck_out_tongue_closed_eyes" - ], - "tags": [ - "prank" - ] - }, - { - "emojiChar": "😛", - "emoji": "\uD83D\uDE1B", - "description": "face with stuck-out tongue", - "aliases": [ - "stuck_out_tongue" - ], - "tags": [] - }, - { - "emojiChar": "😳", - "emoji": "\uD83D\uDE33", - "description": "flushed face", - "aliases": [ - "flushed" - ], - "tags": [] - }, - { - "emojiChar": "😁", - "emoji": "\uD83D\uDE01", - "description": "grinning face with smiling eyes", - "aliases": [ - "grin" - ], - "tags": [] - }, - { - "emojiChar": "😔", - "emoji": "\uD83D\uDE14", - "description": "pensive face", - "aliases": [ - "pensive" - ], - "tags": [] - }, - { - "emojiChar": "😌", - "emoji": "\uD83D\uDE0C", - "description": "relieved face", - "aliases": [ - "relieved" - ], - "tags": [ - "whew" - ] - }, - { - "emojiChar": "😒", - "emoji": "\uD83D\uDE12", - "description": "unamused face", - "aliases": [ - "unamused" - ], - "tags": [ - "meh" - ] - }, - { - "emojiChar": "😞", - "emoji": "\uD83D\uDE1E", - "description": "disappointed face", - "aliases": [ - "disappointed" - ], - "tags": [ - "sad" - ] - }, - { - "emojiChar": "😣", - "emoji": "\uD83D\uDE23", - "description": "persevering face", - "aliases": [ - "persevere" - ], - "tags": [ - "struggling" - ] - }, - { - "emojiChar": "😢", - "emoji": "\uD83D\uDE22", - "description": "crying face", - "aliases": [ - "cry" - ], - "tags": [ - "sad", - "tear" - ] - }, - { - "emojiChar": "😂", - "emoji": "\uD83D\uDE02", - "description": "face with tears of joy", - "aliases": [ - "joy" - ], - "tags": [ - "tears" - ] - }, - { - "emojiChar": "😭", - "emoji": "\uD83D\uDE2D", - "description": "loudly crying face", - "aliases": [ - "sob" - ], - "tags": [ - "sad", - "cry", - "bawling" - ] - }, - { - "emojiChar": "😪", - "emoji": "\uD83D\uDE2A", - "description": "sleepy face", - "aliases": [ - "sleepy" - ], - "tags": [ - "tired" - ] - }, - { - "emojiChar": "😥", - "emoji": "\uD83D\uDE25", - "description": "disappointed but relieved face", - "aliases": [ - "disappointed_relieved" - ], - "tags": [ - "phew", - "sweat", - "nervous" - ] - }, - { - "emojiChar": "😰", - "emoji": "\uD83D\uDE30", - "description": "face with open mouth and cold sweat", - "aliases": [ - "cold_sweat" - ], - "tags": [ - "nervous" - ] - }, - { - "emojiChar": "😅", - "emoji": "\uD83D\uDE05", - "description": "smiling face with open mouth and cold sweat", - "aliases": [ - "sweat_smile" - ], - "tags": [ - "hot" - ] - }, - { - "emojiChar": "😓", - "emoji": "\uD83D\uDE13", - "description": "face with cold sweat", - "aliases": [ - "sweat" - ], - "tags": [] - }, - { - "emojiChar": "😩", - "emoji": "\uD83D\uDE29", - "description": "weary face", - "aliases": [ - "weary" - ], - "tags": [ - "tired" - ] - }, - { - "emojiChar": "😫", - "emoji": "\uD83D\uDE2B", - "description": "tired face", - "aliases": [ - "tired_face" - ], - "tags": [ - "upset", - "whine" - ] - }, - { - "emojiChar": "😨", - "emoji": "\uD83D\uDE28", - "description": "fearful face", - "aliases": [ - "fearful" - ], - "tags": [ - "scared", - "shocked", - "oops" - ] - }, - { - "emojiChar": "😱", - "emoji": "\uD83D\uDE31", - "description": "face screaming in fear", - "aliases": [ - "scream" - ], - "tags": [ - "horror", - "shocked" - ] - }, - { - "emojiChar": "😠", - "emoji": "\uD83D\uDE20", - "description": "angry face", - "aliases": [ - "angry" - ], - "tags": [ - "mad", - "annoyed" - ] - }, - { - "emojiChar": "😡", - "emoji": "\uD83D\uDE21", - "description": "pouting face", - "aliases": [ - "rage" - ], - "tags": [ - "angry" - ] - }, - { - "emojiChar": "😤", - "emoji": "\uD83D\uDE24", - "description": "face with look of triumph", - "aliases": [ - "triumph" - ], - "tags": [ - "smug" - ] - }, - { - "emojiChar": "😖", - "emoji": "\uD83D\uDE16", - "description": "confounded face", - "aliases": [ - "confounded" - ], - "tags": [] - }, - { - "emojiChar": "😆", - "emoji": "\uD83D\uDE06", - "description": "smiling face with open mouth and tightly-closed eyes", - "aliases": [ - "laughing", - "satisfied" - ], - "tags": [ - "happy", - "haha" - ] - }, - { - "emojiChar": "😋", - "emoji": "\uD83D\uDE0B", - "description": "face savouring delicious food", - "aliases": [ - "yum" - ], - "tags": [ - "tongue", - "lick" - ] - }, - { - "emojiChar": "😷", - "emoji": "\uD83D\uDE37", - "description": "face with medical mask", - "aliases": [ - "mask" - ], - "tags": [ - "sick", - "ill" - ] - }, - { - "emojiChar": "😎", - "emoji": "\uD83D\uDE0E", - "description": "smiling face with sunglasses", - "aliases": [ - "sunglasses" - ], - "tags": [ - "cool" - ] - }, - { - "emojiChar": "😴", - "emoji": "\uD83D\uDE34", - "description": "sleeping face", - "aliases": [ - "sleeping" - ], - "tags": [ - "zzz" - ] - }, - { - "emojiChar": "😵", - "emoji": "\uD83D\uDE35", - "description": "dizzy face", - "aliases": [ - "dizzy_face" - ], - "tags": [] - }, - { - "emojiChar": "😲", - "emoji": "\uD83D\uDE32", - "description": "astonished face", - "aliases": [ - "astonished" - ], - "tags": [ - "amazed", - "gasp" - ] - }, - { - "emojiChar": "😟", - "emoji": "\uD83D\uDE1F", - "description": "worried face", - "aliases": [ - "worried" - ], - "tags": [ - "nervous" - ] - }, - { - "emojiChar": "😦", - "emoji": "\uD83D\uDE26", - "description": "frowning face with open mouth", - "aliases": [ - "frowning" - ], - "tags": [] - }, - { - "emojiChar": "😧", - "emoji": "\uD83D\uDE27", - "description": "anguished face", - "aliases": [ - "anguished" - ], - "tags": [ - "stunned" - ] - }, - { - "emojiChar": "😈", - "emoji": "\uD83D\uDE08", - "description": "smiling face with horns", - "aliases": [ - "smiling_imp" - ], - "tags": [ - "devil", - "evil", - "horns" - ] - }, - { - "emojiChar": "👿", - "emoji": "\uD83D\uDC7F", - "description": "imp", - "aliases": [ - "imp" - ], - "tags": [ - "angry", - "devil", - "evil", - "horns" - ] - }, - { - "emojiChar": "😮", - "emoji": "\uD83D\uDE2E", - "description": "face with open mouth", - "aliases": [ - "open_mouth" - ], - "tags": [ - "surprise", - "impressed", - "wow" - ] - }, - { - "emojiChar": "😬", - "emoji": "\uD83D\uDE2C", - "description": "grimacing face", - "aliases": [ - "grimacing" - ], - "tags": [] - }, - { - "emojiChar": "😐", - "emoji": "\uD83D\uDE10", - "description": "neutral face", - "aliases": [ - "neutral_face" - ], - "tags": [ - "meh" - ] - }, - { - "emojiChar": "😕", - "emoji": "\uD83D\uDE15", - "description": "confused face", - "aliases": [ - "confused" - ], - "tags": [] - }, - { - "emojiChar": "😯", - "emoji": "\uD83D\uDE2F", - "description": "hushed face", - "aliases": [ - "hushed" - ], - "tags": [ - "silence", - "speechless" - ] - }, - { - "emojiChar": "😶", - "emoji": "\uD83D\uDE36", - "description": "face without mouth", - "aliases": [ - "no_mouth" - ], - "tags": [ - "mute", - "silence" - ] - }, - { - "emojiChar": "😇", - "emoji": "\uD83D\uDE07", - "description": "smiling face with halo", - "aliases": [ - "innocent" - ], - "tags": [ - "angel" - ] - }, - { - "emojiChar": "😏", - "emoji": "\uD83D\uDE0F", - "description": "smirking face", - "aliases": [ - "smirk" - ], - "tags": [ - "smug" - ] - }, - { - "emojiChar": "😑", - "emoji": "\uD83D\uDE11", - "description": "expressionless face", - "aliases": [ - "expressionless" - ], - "tags": [] - }, - { - "emojiChar": "👲", - "emoji": "\uD83D\uDC72", - "description": "man with gua pi mao", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_gua_pi_mao" - ], - "tags": [] - }, - { - "emojiChar": "👳", - "emoji": "\uD83D\uDC73", - "description": "man with turban", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_turban" - ], - "tags": [] - }, - { - "emojiChar": "👮", - "emoji": "\uD83D\uDC6E", - "description": "police officer", - "supports_fitzpatrick": true, - "aliases": [ - "cop" - ], - "tags": [ - "police", - "law" - ] - }, - { - "emojiChar": "👷", - "emoji": "\uD83D\uDC77", - "description": "construction worker", - "supports_fitzpatrick": true, - "aliases": [ - "construction_worker" - ], - "tags": [ - "helmet" - ] - }, - { - "emojiChar": "💂", - "emoji": "\uD83D\uDC82", - "description": "guardsman", - "supports_fitzpatrick": true, - "aliases": [ - "guardsman" - ], - "tags": [] - }, - { - "emojiChar": "👶", - "emoji": "\uD83D\uDC76", - "description": "baby", - "supports_fitzpatrick": true, - "aliases": [ - "baby" - ], - "tags": [ - "child", - "newborn" - ] - }, - { - "emojiChar": "👦", - "emoji": "\uD83D\uDC66", - "description": "boy", - "supports_fitzpatrick": true, - "aliases": [ - "boy" - ], - "tags": [ - "child" - ] - }, - { - "emojiChar": "👧", - "emoji": "\uD83D\uDC67", - "description": "girl", - "supports_fitzpatrick": true, - "aliases": [ - "girl" - ], - "tags": [ - "child" - ] - }, - { - "emojiChar": "👨", - "emoji": "\uD83D\uDC68", - "description": "man", - "supports_fitzpatrick": true, - "aliases": [ - "man" - ], - "tags": [ - "mustache", - "father", - "dad" - ] - }, - { - "emojiChar": "👩", - "emoji": "\uD83D\uDC69", - "description": "woman", - "supports_fitzpatrick": true, - "aliases": [ - "woman" - ], - "tags": [ - "girls" - ] - }, - { - "emojiChar": "👴", - "emoji": "\uD83D\uDC74", - "description": "older man", - "supports_fitzpatrick": true, - "aliases": [ - "older_man" - ], - "tags": [] - }, - { - "emojiChar": "👵", - "emoji": "\uD83D\uDC75", - "description": "older woman", - "supports_fitzpatrick": true, - "aliases": [ - "older_woman" - ], - "tags": [] - }, - { - "emojiChar": "👱", - "emoji": "\uD83D\uDC71", - "description": "person with blond hair", - "supports_fitzpatrick": true, - "aliases": [ - "person_with_blond_hair" - ], - "tags": [ - "boy" - ] - }, - { - "emojiChar": "👼", - "emoji": "\uD83D\uDC7C", - "description": "baby angel", - "supports_fitzpatrick": true, - "aliases": [ - "angel" - ], - "tags": [] - }, - { - "emojiChar": "👸", - "emoji": "\uD83D\uDC78", - "description": "princess", - "supports_fitzpatrick": true, - "aliases": [ - "princess" - ], - "tags": [ - "blonde", - "crown", - "royal" - ] - }, - { - "emojiChar": "😺", - "emoji": "\uD83D\uDE3A", - "description": "smiling cat face with open mouth", - "aliases": [ - "smiley_cat" - ], - "tags": [] - }, - { - "emojiChar": "😸", - "emoji": "\uD83D\uDE38", - "description": "grinning cat face with smiling eyes", - "aliases": [ - "smile_cat" - ], - "tags": [] - }, - { - "emojiChar": "😻", - "emoji": "\uD83D\uDE3B", - "description": "smiling cat face with heart-shaped eyes", - "aliases": [ - "heart_eyes_cat" - ], - "tags": [] - }, - { - "emojiChar": "😽", - "emoji": "\uD83D\uDE3D", - "description": "kissing cat face with closed eyes", - "aliases": [ - "kissing_cat" - ], - "tags": [] - }, - { - "emojiChar": "😼", - "emoji": "\uD83D\uDE3C", - "description": "cat face with wry smile", - "aliases": [ - "smirk_cat" - ], - "tags": [] - }, - { - "emojiChar": "🙀", - "emoji": "\uD83D\uDE40", - "description": "weary cat face", - "aliases": [ - "scream_cat" - ], - "tags": [ - "horror" - ] - }, - { - "emojiChar": "😿", - "emoji": "\uD83D\uDE3F", - "description": "crying cat face", - "aliases": [ - "crying_cat_face" - ], - "tags": [ - "sad", - "tear" - ] - }, - { - "emojiChar": "😹", - "emoji": "\uD83D\uDE39", - "description": "cat face with tears of joy", - "aliases": [ - "joy_cat" - ], - "tags": [] - }, - { - "emojiChar": "😾", - "emoji": "\uD83D\uDE3E", - "description": "pouting cat face", - "aliases": [ - "pouting_cat" - ], - "tags": [] - }, - { - "emojiChar": "👹", - "emoji": "\uD83D\uDC79", - "description": "japanese ogre", - "aliases": [ - "japanese_ogre" - ], - "tags": [ - "monster" - ] - }, - { - "emojiChar": "👺", - "emoji": "\uD83D\uDC7A", - "description": "japanese goblin", - "aliases": [ - "japanese_goblin" - ], - "tags": [] - }, - { - "emojiChar": "🙈", - "emoji": "\uD83D\uDE48", - "description": "see-no-evil monkey", - "aliases": [ - "see_no_evil" - ], - "tags": [ - "monkey", - "blind", - "ignore" - ] - }, - { - "emojiChar": "🙉", - "emoji": "\uD83D\uDE49", - "description": "hear-no-evil monkey", - "aliases": [ - "hear_no_evil" - ], - "tags": [ - "monkey", - "deaf" - ] - }, - { - "emojiChar": "🙊", - "emoji": "\uD83D\uDE4A", - "description": "speak-no-evil monkey", - "aliases": [ - "speak_no_evil" - ], - "tags": [ - "monkey", - "mute", - "hush" - ] - }, - { - "emojiChar": "💀", - "emoji": "\uD83D\uDC80", - "description": "skull", - "aliases": [ - "skull" - ], - "tags": [ - "dead", - "danger", - "poison" - ] - }, - { - "emojiChar": "👽", - "emoji": "\uD83D\uDC7D", - "description": "extraterrestrial alien", - "aliases": [ - "alien" - ], - "tags": [ - "ufo" - ] - }, - { - "emojiChar": "💩", - "emoji": "\uD83D\uDCA9", - "description": "pile of poo", - "aliases": [ - "hankey", - "poop", - "shit" - ], - "tags": [ - "crap" - ] - }, - { - "emojiChar": "🔥", - "emoji": "\uD83D\uDD25", - "description": "fire", - "aliases": [ - "fire" - ], - "tags": [ - "burn" - ] - }, - { - "emojiChar": "✨", - "emoji": "\u2728", - "description": "sparkles", - "aliases": [ - "sparkles" - ], - "tags": [ - "shiny" - ] - }, - { - "emojiChar": "🌟", - "emoji": "\uD83C\uDF1F", - "description": "glowing star", - "aliases": [ - "star2" - ], - "tags": [] - }, - { - "emojiChar": "💫", - "emoji": "\uD83D\uDCAB", - "description": "dizzy symbol", - "aliases": [ - "dizzy" - ], - "tags": [ - "star" - ] - }, - { - "emojiChar": "💥", - "emoji": "\uD83D\uDCA5", - "description": "collision symbol", - "aliases": [ - "boom", - "collision" - ], - "tags": [ - "explode" - ] - }, - { - "emojiChar": "💢", - "emoji": "\uD83D\uDCA2", - "description": "anger symbol", - "aliases": [ - "anger" - ], - "tags": [ - "angry" - ] - }, - { - "emojiChar": "💦", - "emoji": "\uD83D\uDCA6", - "description": "splashing sweat symbol", - "aliases": [ - "sweat_drops" - ], - "tags": [ - "water", - "workout" - ] - }, - { - "emojiChar": "💧", - "emoji": "\uD83D\uDCA7", - "description": "droplet", - "aliases": [ - "droplet" - ], - "tags": [ - "water" - ] - }, - { - "emojiChar": "💤", - "emoji": "\uD83D\uDCA4", - "description": "sleeping symbol", - "aliases": [ - "zzz" - ], - "tags": [ - "sleeping" - ] - }, - { - "emojiChar": "💨", - "emoji": "\uD83D\uDCA8", - "description": "dash symbol", - "aliases": [ - "dash" - ], - "tags": [ - "wind", - "blow", - "fast" - ] - }, - { - "emojiChar": "👂", - "emoji": "\uD83D\uDC42", - "description": "ear", - "supports_fitzpatrick": true, - "aliases": [ - "ear" - ], - "tags": [ - "hear", - "sound", - "listen" - ] - }, - { - "emojiChar": "👀", - "emoji": "\uD83D\uDC40", - "description": "eyes", - "aliases": [ - "eyes" - ], - "tags": [ - "look", - "see", - "watch" - ] - }, - { - "emojiChar": "👃", - "emoji": "\uD83D\uDC43", - "description": "nose", - "supports_fitzpatrick": true, - "aliases": [ - "nose" - ], - "tags": [ - "smell" - ] - }, - { - "emojiChar": "👅", - "emoji": "\uD83D\uDC45", - "description": "tongue", - "aliases": [ - "tongue" - ], - "tags": [ - "taste" - ] - }, - { - "emojiChar": "👄", - "emoji": "\uD83D\uDC44", - "description": "mouth", - "aliases": [ - "lips" - ], - "tags": [ - "kiss" - ] - }, - { - "emojiChar": "👍", - "emoji": "\uD83D\uDC4D", - "description": "thumbs up sign", - "supports_fitzpatrick": true, - "aliases": [ - "+1", - "like", - "thumbsup" - ], - "tags": [ - "approve", - "ok" - ] - }, - { - "emojiChar": "👎", - "emoji": "\uD83D\uDC4E", - "description": "thumbs down sign", - "supports_fitzpatrick": true, - "aliases": [ - "-1", - "thumbsdown" - ], - "tags": [ - "disapprove", - "bury" - ] - }, - { - "emojiChar": "👌", - "emoji": "\uD83D\uDC4C", - "description": "ok hand sign", - "supports_fitzpatrick": true, - "aliases": [ - "ok_hand" - ], - "tags": [] - }, - { - "emojiChar": "👊", - "emoji": "\uD83D\uDC4A", - "description": "fisted hand sign", - "supports_fitzpatrick": true, - "aliases": [ - "facepunch", - "punch" - ], - "tags": [ - "attack" - ] - }, - { - "emojiChar": "✊", - "emoji": "\u270A", - "description": "raised fist", - "supports_fitzpatrick": true, - "aliases": [ - "fist" - ], - "tags": [ - "power" - ] - }, - { - "emojiChar": "✌", - "emoji": "\u270C", - "description": "victory hand", - "supports_fitzpatrick": true, - "aliases": [ - "v" - ], - "tags": [ - "victory", - "peace" - ] - }, - { - "emojiChar": "👋", - "emoji": "\uD83D\uDC4B", - "description": "waving hand sign", - "supports_fitzpatrick": true, - "aliases": [ - "wave" - ], - "tags": [ - "goodbye" - ] - }, - { - "emojiChar": "✋", - "emoji": "\u270B", - "description": "raised hand", - "supports_fitzpatrick": true, - "aliases": [ - "hand", - "raised_hand" - ], - "tags": [ - "highfive", - "stop" - ] - }, - { - "emojiChar": "👐", - "emoji": "\uD83D\uDC50", - "description": "open hands sign", - "supports_fitzpatrick": true, - "aliases": [ - "open_hands" - ], - "tags": [] - }, - { - "emojiChar": "👆", - "emoji": "\uD83D\uDC46", - "description": "white up pointing backhand index", - "supports_fitzpatrick": true, - "aliases": [ - "point_up_2" - ], - "tags": [] - }, - { - "emojiChar": "👇", - "emoji": "\uD83D\uDC47", - "description": "white down pointing backhand index", - "supports_fitzpatrick": true, - "aliases": [ - "point_down" - ], - "tags": [] - }, - { - "emojiChar": "👉", - "emoji": "\uD83D\uDC49", - "description": "white right pointing backhand index", - "supports_fitzpatrick": true, - "aliases": [ - "point_right" - ], - "tags": [] - }, - { - "emojiChar": "👈", - "emoji": "\uD83D\uDC48", - "description": "white left pointing backhand index", - "supports_fitzpatrick": true, - "aliases": [ - "point_left" - ], - "tags": [] - }, - { - "emojiChar": "🙌", - "emoji": "\uD83D\uDE4C", - "description": "person raising both hands in celebration", - "supports_fitzpatrick": true, - "aliases": [ - "raised_hands" - ], - "tags": [ - "hooray" - ] - }, - { - "emojiChar": "🙏", - "emoji": "\uD83D\uDE4F", - "description": "person with folded hands", - "supports_fitzpatrick": true, - "aliases": [ - "pray" - ], - "tags": [ - "please", - "hope", - "wish" - ] - }, - { - "emojiChar": "☝", - "emoji": "\u261D", - "description": "white up pointing index", - "supports_fitzpatrick": true, - "aliases": [ - "point_up" - ], - "tags": [] - }, - { - "emojiChar": "👏", - "emoji": "\uD83D\uDC4F", - "description": "clapping hands sign", - "supports_fitzpatrick": true, - "aliases": [ - "clap" - ], - "tags": [ - "praise", - "applause" - ] - }, - { - "emojiChar": "💪", - "emoji": "\uD83D\uDCAA", - "description": "flexed biceps", - "supports_fitzpatrick": true, - "aliases": [ - "muscle" - ], - "tags": [ - "flex", - "bicep", - "strong", - "workout" - ] - }, - { - "emojiChar": "🚶", - "emoji": "\uD83D\uDEB6", - "description": "pedestrian", - "supports_fitzpatrick": true, - "aliases": [ - "walking" - ], - "tags": [] - }, - { - "emojiChar": "🏃", - "emoji": "\uD83C\uDFC3", - "description": "runner", - "supports_fitzpatrick": true, - "aliases": [ - "runner", - "running" - ], - "tags": [ - "exercise", - "workout", - "marathon" - ] - }, - { - "emojiChar": "💃", - "emoji": "\uD83D\uDC83", - "description": "dancer", - "supports_fitzpatrick": true, - "aliases": [ - "dancer" - ], - "tags": [ - "dress" - ] - }, - { - "emojiChar": "👫", - "emoji": "\uD83D\uDC6B", - "description": "man and woman holding hands", - "aliases": [ - "couple" - ], - "tags": [ - "date" - ] - }, - { - "emojiChar": "👪", - "emoji": "\uD83D\uDC6A", - "description": "family", - "aliases": [ - "family" - ], - "tags": [ - "home", - "parents", - "child" - ] - }, - { - "emojiChar": "👬", - "emoji": "\uD83D\uDC6C", - "description": "two men holding hands", - "aliases": [ - "two_men_holding_hands" - ], - "tags": [ - "couple", - "date" - ] - }, - { - "emojiChar": "👭", - "emoji": "\uD83D\uDC6D", - "description": "two women holding hands", - "aliases": [ - "two_women_holding_hands" - ], - "tags": [ - "couple", - "date" - ] - }, - { - "emojiChar": "💏", - "emoji": "\uD83D\uDC8F", - "description": "kiss", - "aliases": [ - "couplekiss" - ], - "tags": [] - }, - { - "emojiChar": "💑", - "emoji": "\uD83D\uDC91", - "description": "couple with heart", - "aliases": [ - "couple_with_heart" - ], - "tags": [] - }, - { - "emojiChar": "👯", - "emoji": "\uD83D\uDC6F", - "description": "woman with bunny ears", - "supports_fitzpatrick": true, - "aliases": [ - "dancers" - ], - "tags": [ - "bunny" - ] - }, - { - "emojiChar": "🙆", - "emoji": "\uD83D\uDE46", - "description": "face with ok gesture", - "supports_fitzpatrick": true, - "aliases": [ - "ok_woman" - ], - "tags": [] - }, - { - "emojiChar": "🙅", - "emoji": "\uD83D\uDE45", - "description": "face with no good gesture", - "supports_fitzpatrick": true, - "aliases": [ - "no_good" - ], - "tags": [ - "stop", - "halt" - ] - }, - { - "emojiChar": "💁", - "emoji": "\uD83D\uDC81", - "description": "information desk person", - "supports_fitzpatrick": true, - "aliases": [ - "information_desk_person" - ], - "tags": [] - }, - { - "emojiChar": "🙋", - "emoji": "\uD83D\uDE4B", - "description": "happy person raising one hand", - "supports_fitzpatrick": true, - "aliases": [ - "raising_hand" - ], - "tags": [] - }, - { - "emojiChar": "💆", - "emoji": "\uD83D\uDC86", - "description": "face massage", - "supports_fitzpatrick": true, - "aliases": [ - "massage" - ], - "tags": [ - "spa" - ] - }, - { - "emojiChar": "💇", - "emoji": "\uD83D\uDC87", - "description": "haircut", - "supports_fitzpatrick": true, - "aliases": [ - "haircut" - ], - "tags": [ - "beauty" - ] - }, - { - "emojiChar": "💅", - "emoji": "\uD83D\uDC85", - "description": "nail polish", - "supports_fitzpatrick": true, - "aliases": [ - "nail_care" - ], - "tags": [ - "beauty", - "manicure" - ] - }, - { - "emojiChar": "👰", - "emoji": "\uD83D\uDC70", - "description": "bride with veil", - "supports_fitzpatrick": true, - "aliases": [ - "bride_with_veil" - ], - "tags": [ - "marriage", - "wedding" - ] - }, - { - "emojiChar": "🙎", - "emoji": "\uD83D\uDE4E", - "description": "person with pouting face", - "supports_fitzpatrick": true, - "aliases": [ - "person_with_pouting_face" - ], - "tags": [] - }, - { - "emojiChar": "🙍", - "emoji": "\uD83D\uDE4D", - "description": "person frowning", - "supports_fitzpatrick": true, - "aliases": [ - "person_frowning" - ], - "tags": [ - "sad" - ] - }, - { - "emojiChar": "🙇", - "emoji": "\uD83D\uDE47", - "description": "person bowing deeply", - "supports_fitzpatrick": true, - "aliases": [ - "bow" - ], - "tags": [ - "respect", - "thanks" - ] - }, - { - "emojiChar": "🙇‍♀️", - "emoji": "\uD83D\uDE47\u200D\u2640\uFE0F", - "description": "woman bowing deeply", - "supports_fitzpatrick": true, - "aliases": [ - "woman_bow", - "female_bow" - ], - "tags": [ - "respect", - "thanks" - ] - }, - { - "emojiChar": "🙇‍♂️", - "emoji": "\uD83D\uDE47\u200D\u2642\uFE0F", - "description": "man bowing deeply", - "supports_fitzpatrick": true, - "aliases": [ - "man_bow", - "male_bow" - ], - "tags": [ - "respect", - "thanks" - ] - }, - { - "emojiChar": "🎩", - "emoji": "\uD83C\uDFA9", - "description": "top hat", - "aliases": [ - "tophat" - ], - "tags": [ - "hat", - "classy" - ] - }, - { - "emojiChar": "👑", - "emoji": "\uD83D\uDC51", - "description": "crown", - "aliases": [ - "crown" - ], - "tags": [ - "king", - "queen", - "royal" - ] - }, - { - "emojiChar": "👒", - "emoji": "\uD83D\uDC52", - "description": "womans hat", - "aliases": [ - "womans_hat" - ], - "tags": [] - }, - { - "emojiChar": "👟", - "emoji": "\uD83D\uDC5F", - "description": "athletic shoe", - "aliases": [ - "athletic_shoe" - ], - "tags": [ - "sneaker", - "sport", - "running" - ] - }, - { - "emojiChar": "👞", - "emoji": "\uD83D\uDC5E", - "description": "mans shoe", - "aliases": [ - "mans_shoe", - "shoe" - ], - "tags": [] - }, - { - "emojiChar": "👡", - "emoji": "\uD83D\uDC61", - "description": "womans sandal", - "aliases": [ - "sandal" - ], - "tags": [ - "shoe" - ] - }, - { - "emojiChar": "👠", - "emoji": "\uD83D\uDC60", - "description": "high-heeled shoe", - "aliases": [ - "high_heel" - ], - "tags": [ - "shoe" - ] - }, - { - "emojiChar": "👢", - "emoji": "\uD83D\uDC62", - "description": "womans boots", - "aliases": [ - "boot" - ], - "tags": [] - }, - { - "emojiChar": "👕", - "emoji": "\uD83D\uDC55", - "description": "t-shirt", - "aliases": [ - "shirt", - "tshirt" - ], - "tags": [] - }, - { - "emojiChar": "👔", - "emoji": "\uD83D\uDC54", - "description": "necktie", - "aliases": [ - "necktie" - ], - "tags": [ - "shirt", - "formal" - ] - }, - { - "emojiChar": "👚", - "emoji": "\uD83D\uDC5A", - "description": "womans clothes", - "aliases": [ - "womans_clothes" - ], - "tags": [] - }, - { - "emojiChar": "👗", - "emoji": "\uD83D\uDC57", - "description": "dress", - "aliases": [ - "dress" - ], - "tags": [] - }, - { - "emojiChar": "🎽", - "emoji": "\uD83C\uDFBD", - "description": "running shirt with sash", - "aliases": [ - "running_shirt_with_sash" - ], - "tags": [ - "marathon" - ] - }, - { - "emojiChar": "👖", - "emoji": "\uD83D\uDC56", - "description": "jeans", - "aliases": [ - "jeans" - ], - "tags": [ - "pants" - ] - }, - { - "emojiChar": "👘", - "emoji": "\uD83D\uDC58", - "description": "kimono", - "aliases": [ - "kimono" - ], - "tags": [] - }, - { - "emojiChar": "👙", - "emoji": "\uD83D\uDC59", - "description": "bikini", - "aliases": [ - "bikini" - ], - "tags": [ - "beach" - ] - }, - { - "emojiChar": "💼", - "emoji": "\uD83D\uDCBC", - "description": "briefcase", - "aliases": [ - "briefcase" - ], - "tags": [ - "business" - ] - }, - { - "emojiChar": "👜", - "emoji": "\uD83D\uDC5C", - "description": "handbag", - "aliases": [ - "handbag" - ], - "tags": [ - "bag" - ] - }, - { - "emojiChar": "👝", - "emoji": "\uD83D\uDC5D", - "description": "pouch", - "aliases": [ - "pouch" - ], - "tags": [ - "bag" - ] - }, - { - "emojiChar": "👛", - "emoji": "\uD83D\uDC5B", - "description": "purse", - "aliases": [ - "purse" - ], - "tags": [] - }, - { - "emojiChar": "👓", - "emoji": "\uD83D\uDC53", - "description": "eyeglasses", - "aliases": [ - "eyeglasses" - ], - "tags": [ - "glasses" - ] - }, - { - "emojiChar": "🎀", - "emoji": "\uD83C\uDF80", - "description": "ribbon", - "aliases": [ - "ribbon" - ], - "tags": [] - }, - { - "emojiChar": "🌂", - "emoji": "\uD83C\uDF02", - "description": "closed umbrella", - "aliases": [ - "closed_umbrella" - ], - "tags": [ - "weather", - "rain" - ] - }, - { - "emojiChar": "💄", - "emoji": "\uD83D\uDC84", - "description": "lipstick", - "aliases": [ - "lipstick" - ], - "tags": [ - "makeup" - ] - }, - { - "emojiChar": "💛", - "emoji": "\uD83D\uDC9B", - "description": "yellow heart", - "aliases": [ - "yellow_heart" - ], - "tags": [] - }, - { - "emojiChar": "💙", - "emoji": "\uD83D\uDC99", - "description": "blue heart", - "aliases": [ - "blue_heart" - ], - "tags": [] - }, - { - "emojiChar": "💜", - "emoji": "\uD83D\uDC9C", - "description": "purple heart", - "aliases": [ - "purple_heart" - ], - "tags": [] - }, - { - "emojiChar": "💚", - "emoji": "\uD83D\uDC9A", - "description": "green heart", - "aliases": [ - "green_heart" - ], - "tags": [] - }, - { - "emojiChar": "❤", - "emoji": "\u2764", - "description": "heavy black heart", - "aliases": [ - "heart" - ], - "tags": [ - "love" - ] - }, - { - "emojiChar": "💔", - "emoji": "\uD83D\uDC94", - "description": "broken heart", - "aliases": [ - "broken_heart" - ], - "tags": [] - }, - { - "emojiChar": "💗", - "emoji": "\uD83D\uDC97", - "description": "growing heart", - "aliases": [ - "heartpulse" - ], - "tags": [] - }, - { - "emojiChar": "💓", - "emoji": "\uD83D\uDC93", - "description": "beating heart", - "aliases": [ - "heartbeat" - ], - "tags": [] - }, - { - "emojiChar": "💕", - "emoji": "\uD83D\uDC95", - "description": "two hearts", - "aliases": [ - "two_hearts" - ], - "tags": [] - }, - { - "emojiChar": "💖", - "emoji": "\uD83D\uDC96", - "description": "sparkling heart", - "aliases": [ - "sparkling_heart" - ], - "tags": [] - }, - { - "emojiChar": "💞", - "emoji": "\uD83D\uDC9E", - "description": "revolving hearts", - "aliases": [ - "revolving_hearts" - ], - "tags": [] - }, - { - "emojiChar": "💘", - "emoji": "\uD83D\uDC98", - "description": "heart with arrow", - "aliases": [ - "cupid" - ], - "tags": [ - "love", - "heart" - ] - }, - { - "emojiChar": "💌", - "emoji": "\uD83D\uDC8C", - "description": "love letter", - "aliases": [ - "love_letter" - ], - "tags": [ - "email", - "envelope" - ] - }, - { - "emojiChar": "💋", - "emoji": "\uD83D\uDC8B", - "description": "kiss mark", - "aliases": [ - "kiss" - ], - "tags": [ - "lipstick" - ] - }, - { - "emojiChar": "💍", - "emoji": "\uD83D\uDC8D", - "description": "ring", - "aliases": [ - "ring" - ], - "tags": [ - "wedding", - "marriage", - "engaged" - ] - }, - { - "emojiChar": "💎", - "emoji": "\uD83D\uDC8E", - "description": "gem stone", - "aliases": [ - "gem" - ], - "tags": [ - "diamond" - ] - }, - { - "emojiChar": "👤", - "emoji": "\uD83D\uDC64", - "description": "bust in silhouette", - "aliases": [ - "bust_in_silhouette" - ], - "tags": [ - "user" - ] - }, - { - "emojiChar": "👥", - "emoji": "\uD83D\uDC65", - "description": "busts in silhouette", - "aliases": [ - "busts_in_silhouette" - ], - "tags": [ - "users", - "group", - "team" - ] - }, - { - "emojiChar": "💬", - "emoji": "\uD83D\uDCAC", - "description": "speech balloon", - "aliases": [ - "speech_balloon" - ], - "tags": [ - "comment" - ] - }, - { - "emojiChar": "👣", - "emoji": "\uD83D\uDC63", - "description": "footprints", - "aliases": [ - "footprints" - ], - "tags": [ - "feet", - "tracks" - ] - }, - { - "emojiChar": "💭", - "emoji": "\uD83D\uDCAD", - "description": "thought balloon", - "aliases": [ - "thought_balloon" - ], - "tags": [ - "thinking" - ] - }, - { - "emojiChar": "🐶", - "emoji": "\uD83D\uDC36", - "description": "dog face", - "aliases": [ - "dog" - ], - "tags": [ - "pet" - ] - }, - { - "emojiChar": "🐺", - "emoji": "\uD83D\uDC3A", - "description": "wolf face", - "aliases": [ - "wolf" - ], - "tags": [] - }, - { - "emojiChar": "🐱", - "emoji": "\uD83D\uDC31", - "description": "cat face", - "aliases": [ - "cat" - ], - "tags": [ - "pet" - ] - }, - { - "emojiChar": "🐭", - "emoji": "\uD83D\uDC2D", - "description": "mouse face", - "aliases": [ - "mouse" - ], - "tags": [] - }, - { - "emojiChar": "🐹", - "emoji": "\uD83D\uDC39", - "description": "hamster face", - "aliases": [ - "hamster" - ], - "tags": [ - "pet" - ] - }, - { - "emojiChar": "🐰", - "emoji": "\uD83D\uDC30", - "description": "rabbit face", - "aliases": [ - "rabbit" - ], - "tags": [ - "bunny" - ] - }, - { - "emojiChar": "🐸", - "emoji": "\uD83D\uDC38", - "description": "frog face", - "aliases": [ - "frog" - ], - "tags": [] - }, - { - "emojiChar": "🐯", - "emoji": "\uD83D\uDC2F", - "description": "tiger face", - "aliases": [ - "tiger" - ], - "tags": [] - }, - { - "emojiChar": "🐨", - "emoji": "\uD83D\uDC28", - "description": "koala", - "aliases": [ - "koala" - ], - "tags": [] - }, - { - "emojiChar": "🐻", - "emoji": "\uD83D\uDC3B", - "description": "bear face", - "aliases": [ - "bear" - ], - "tags": [] - }, - { - "emojiChar": "🐷", - "emoji": "\uD83D\uDC37", - "description": "pig face", - "aliases": [ - "pig" - ], - "tags": [] - }, - { - "emojiChar": "🐽", - "emoji": "\uD83D\uDC3D", - "description": "pig nose", - "aliases": [ - "pig_nose" - ], - "tags": [] - }, - { - "emojiChar": "🐮", - "emoji": "\uD83D\uDC2E", - "description": "cow face", - "aliases": [ - "cow" - ], - "tags": [] - }, - { - "emojiChar": "🐗", - "emoji": "\uD83D\uDC17", - "description": "boar", - "aliases": [ - "boar" - ], - "tags": [] - }, - { - "emojiChar": "🐵", - "emoji": "\uD83D\uDC35", - "description": "monkey face", - "aliases": [ - "monkey_face" - ], - "tags": [] - }, - { - "emojiChar": "🐒", - "emoji": "\uD83D\uDC12", - "description": "monkey", - "aliases": [ - "monkey" - ], - "tags": [] - }, - { - "emojiChar": "🐴", - "emoji": "\uD83D\uDC34", - "description": "horse face", - "aliases": [ - "horse" - ], - "tags": [] - }, - { - "emojiChar": "🐑", - "emoji": "\uD83D\uDC11", - "description": "sheep", - "aliases": [ - "sheep" - ], - "tags": [] - }, - { - "emojiChar": "🐘", - "emoji": "\uD83D\uDC18", - "description": "elephant", - "aliases": [ - "elephant" - ], - "tags": [] - }, - { - "emojiChar": "🐼", - "emoji": "\uD83D\uDC3C", - "description": "panda face", - "aliases": [ - "panda_face" - ], - "tags": [] - }, - { - "emojiChar": "🐧", - "emoji": "\uD83D\uDC27", - "description": "penguin", - "aliases": [ - "penguin" - ], - "tags": [] - }, - { - "emojiChar": "🐦", - "emoji": "\uD83D\uDC26", - "description": "bird", - "aliases": [ - "bird" - ], - "tags": [] - }, - { - "emojiChar": "🐤", - "emoji": "\uD83D\uDC24", - "description": "baby chick", - "aliases": [ - "baby_chick" - ], - "tags": [] - }, - { - "emojiChar": "🐥", - "emoji": "\uD83D\uDC25", - "description": "front-facing baby chick", - "aliases": [ - "hatched_chick" - ], - "tags": [] - }, - { - "emojiChar": "🐣", - "emoji": "\uD83D\uDC23", - "description": "hatching chick", - "aliases": [ - "hatching_chick" - ], - "tags": [] - }, - { - "emojiChar": "🐔", - "emoji": "\uD83D\uDC14", - "description": "chicken", - "aliases": [ - "chicken" - ], - "tags": [] - }, - { - "emojiChar": "🐍", - "emoji": "\uD83D\uDC0D", - "description": "snake", - "aliases": [ - "snake" - ], - "tags": [] - }, - { - "emojiChar": "🐢", - "emoji": "\uD83D\uDC22", - "description": "turtle", - "aliases": [ - "turtle" - ], - "tags": [ - "slow" - ] - }, - { - "emojiChar": "🐛", - "emoji": "\uD83D\uDC1B", - "description": "bug", - "aliases": [ - "bug" - ], - "tags": [] - }, - { - "emojiChar": "🐝", - "emoji": "\uD83D\uDC1D", - "description": "honeybee", - "aliases": [ - "bee", - "honeybee" - ], - "tags": [] - }, - { - "emojiChar": "🐜", - "emoji": "\uD83D\uDC1C", - "description": "ant", - "aliases": [ - "ant" - ], - "tags": [] - }, - { - "emojiChar": "🐞", - "emoji": "\uD83D\uDC1E", - "description": "lady beetle", - "aliases": [ - "beetle" - ], - "tags": [ - "bug" - ] - }, - { - "emojiChar": "🐌", - "emoji": "\uD83D\uDC0C", - "description": "snail", - "aliases": [ - "snail" - ], - "tags": [ - "slow" - ] - }, - { - "emojiChar": "🐙", - "emoji": "\uD83D\uDC19", - "description": "octopus", - "aliases": [ - "octopus" - ], - "tags": [] - }, - { - "emojiChar": "🐚", - "emoji": "\uD83D\uDC1A", - "description": "spiral shell", - "aliases": [ - "shell" - ], - "tags": [ - "sea", - "beach" - ] - }, - { - "emojiChar": "🐠", - "emoji": "\uD83D\uDC20", - "description": "tropical fish", - "aliases": [ - "tropical_fish" - ], - "tags": [] - }, - { - "emojiChar": "🐟", - "emoji": "\uD83D\uDC1F", - "description": "fish", - "aliases": [ - "fish" - ], - "tags": [] - }, - { - "emojiChar": "🐬", - "emoji": "\uD83D\uDC2C", - "description": "dolphin", - "aliases": [ - "dolphin", - "flipper" - ], - "tags": [] - }, - { - "emojiChar": "🐳", - "emoji": "\uD83D\uDC33", - "description": "spouting whale", - "aliases": [ - "whale" - ], - "tags": [ - "sea" - ] - }, - { - "emojiChar": "🐋", - "emoji": "\uD83D\uDC0B", - "description": "whale", - "aliases": [ - "whale2" - ], - "tags": [] - }, - { - "emojiChar": "🐄", - "emoji": "\uD83D\uDC04", - "description": "cow", - "aliases": [ - "cow2" - ], - "tags": [] - }, - { - "emojiChar": "🐏", - "emoji": "\uD83D\uDC0F", - "description": "ram", - "aliases": [ - "ram" - ], - "tags": [] - }, - { - "emojiChar": "🐀", - "emoji": "\uD83D\uDC00", - "description": "rat", - "aliases": [ - "rat" - ], - "tags": [] - }, - { - "emojiChar": "🐃", - "emoji": "\uD83D\uDC03", - "description": "water buffalo", - "aliases": [ - "water_buffalo" - ], - "tags": [] - }, - { - "emojiChar": "🐅", - "emoji": "\uD83D\uDC05", - "description": "tiger", - "aliases": [ - "tiger2" - ], - "tags": [] - }, - { - "emojiChar": "🐇", - "emoji": "\uD83D\uDC07", - "description": "rabbit", - "aliases": [ - "rabbit2" - ], - "tags": [] - }, - { - "emojiChar": "🐉", - "emoji": "\uD83D\uDC09", - "description": "dragon", - "aliases": [ - "dragon" - ], - "tags": [] - }, - { - "emojiChar": "🐎", - "emoji": "\uD83D\uDC0E", - "description": "horse", - "aliases": [ - "racehorse" - ], - "tags": [ - "speed" - ] - }, - { - "emojiChar": "🐐", - "emoji": "\uD83D\uDC10", - "description": "goat", - "aliases": [ - "goat" - ], - "tags": [] - }, - { - "emojiChar": "🐓", - "emoji": "\uD83D\uDC13", - "description": "rooster", - "aliases": [ - "rooster" - ], - "tags": [] - }, - { - "emojiChar": "🐕", - "emoji": "\uD83D\uDC15", - "description": "dog", - "aliases": [ - "dog2" - ], - "tags": [] - }, - { - "emojiChar": "🐖", - "emoji": "\uD83D\uDC16", - "description": "pig", - "aliases": [ - "pig2" - ], - "tags": [] - }, - { - "emojiChar": "🐁", - "emoji": "\uD83D\uDC01", - "description": "mouse", - "aliases": [ - "mouse2" - ], - "tags": [] - }, - { - "emojiChar": "🐂", - "emoji": "\uD83D\uDC02", - "description": "ox", - "aliases": [ - "ox" - ], - "tags": [] - }, - { - "emojiChar": "🐲", - "emoji": "\uD83D\uDC32", - "description": "dragon face", - "aliases": [ - "dragon_face" - ], - "tags": [] - }, - { - "emojiChar": "🐡", - "emoji": "\uD83D\uDC21", - "description": "blowfish", - "aliases": [ - "blowfish" - ], - "tags": [] - }, - { - "emojiChar": "🐊", - "emoji": "\uD83D\uDC0A", - "description": "crocodile", - "aliases": [ - "crocodile" - ], - "tags": [] - }, - { - "emojiChar": "🐫", - "emoji": "\uD83D\uDC2B", - "description": "bactrian camel", - "aliases": [ - "camel" - ], - "tags": [] - }, - { - "emojiChar": "🐪", - "emoji": "\uD83D\uDC2A", - "description": "dromedary camel", - "aliases": [ - "dromedary_camel" - ], - "tags": [ - "desert" - ] - }, - { - "emojiChar": "🐆", - "emoji": "\uD83D\uDC06", - "description": "leopard", - "aliases": [ - "leopard" - ], - "tags": [] - }, - { - "emojiChar": "🐈", - "emoji": "\uD83D\uDC08", - "description": "cat", - "aliases": [ - "cat2" - ], - "tags": [] - }, - { - "emojiChar": "🐩", - "emoji": "\uD83D\uDC29", - "description": "poodle", - "aliases": [ - "poodle" - ], - "tags": [ - "dog" - ] - }, - { - "emojiChar": "🐾", - "emoji": "\uD83D\uDC3E", - "description": "paw prints", - "aliases": [ - "feet", - "paw_prints" - ], - "tags": [] - }, - { - "emojiChar": "💐", - "emoji": "\uD83D\uDC90", - "description": "bouquet", - "aliases": [ - "bouquet" - ], - "tags": [ - "flowers" - ] - }, - { - "emojiChar": "🌸", - "emoji": "\uD83C\uDF38", - "description": "cherry blossom", - "aliases": [ - "cherry_blossom" - ], - "tags": [ - "flower", - "spring" - ] - }, - { - "emojiChar": "🌷", - "emoji": "\uD83C\uDF37", - "description": "tulip", - "aliases": [ - "tulip" - ], - "tags": [ - "flower" - ] - }, - { - "emojiChar": "🍀", - "emoji": "\uD83C\uDF40", - "description": "four leaf clover", - "aliases": [ - "four_leaf_clover" - ], - "tags": [ - "luck" - ] - }, - { - "emojiChar": "🌹", - "emoji": "\uD83C\uDF39", - "description": "rose", - "aliases": [ - "rose" - ], - "tags": [ - "flower" - ] - }, - { - "emojiChar": "🌻", - "emoji": "\uD83C\uDF3B", - "description": "sunflower", - "aliases": [ - "sunflower" - ], - "tags": [] - }, - { - "emojiChar": "🌺", - "emoji": "\uD83C\uDF3A", - "description": "hibiscus", - "aliases": [ - "hibiscus" - ], - "tags": [] - }, - { - "emojiChar": "🍁", - "emoji": "\uD83C\uDF41", - "description": "maple leaf", - "aliases": [ - "maple_leaf" - ], - "tags": [ - "canada" - ] - }, - { - "emojiChar": "🍃", - "emoji": "\uD83C\uDF43", - "description": "leaf fluttering in wind", - "aliases": [ - "leaves" - ], - "tags": [ - "leaf" - ] - }, - { - "emojiChar": "🍂", - "emoji": "\uD83C\uDF42", - "description": "fallen leaf", - "aliases": [ - "fallen_leaf" - ], - "tags": [ - "autumn" - ] - }, - { - "emojiChar": "🌿", - "emoji": "\uD83C\uDF3F", - "description": "herb", - "aliases": [ - "herb" - ], - "tags": [] - }, - { - "emojiChar": "🌾", - "emoji": "\uD83C\uDF3E", - "description": "ear of rice", - "aliases": [ - "ear_of_rice" - ], - "tags": [] - }, - { - "emojiChar": "🍄", - "emoji": "\uD83C\uDF44", - "description": "mushroom", - "aliases": [ - "mushroom" - ], - "tags": [] - }, - { - "emojiChar": "🌵", - "emoji": "\uD83C\uDF35", - "description": "cactus", - "aliases": [ - "cactus" - ], - "tags": [] - }, - { - "emojiChar": "🌴", - "emoji": "\uD83C\uDF34", - "description": "palm tree", - "aliases": [ - "palm_tree" - ], - "tags": [] - }, - { - "emojiChar": "🌲", - "emoji": "\uD83C\uDF32", - "description": "evergreen tree", - "aliases": [ - "evergreen_tree" - ], - "tags": [ - "wood" - ] - }, - { - "emojiChar": "🌳", - "emoji": "\uD83C\uDF33", - "description": "deciduous tree", - "aliases": [ - "deciduous_tree" - ], - "tags": [ - "wood" - ] - }, - { - "emojiChar": "🌰", - "emoji": "\uD83C\uDF30", - "description": "chestnut", - "aliases": [ - "chestnut" - ], - "tags": [] - }, - { - "emojiChar": "🌱", - "emoji": "\uD83C\uDF31", - "description": "seedling", - "aliases": [ - "seedling" - ], - "tags": [ - "plant" - ] - }, - { - "emojiChar": "🌼", - "emoji": "\uD83C\uDF3C", - "description": "blossom", - "aliases": [ - "blossom" - ], - "tags": [] - }, - { - "emojiChar": "🌐", - "emoji": "\uD83C\uDF10", - "description": "globe with meridians", - "aliases": [ - "globe_with_meridians" - ], - "tags": [ - "world", - "global", - "international" - ] - }, - { - "emojiChar": "🌞", - "emoji": "\uD83C\uDF1E", - "description": "sun with face", - "aliases": [ - "sun_with_face" - ], - "tags": [ - "summer" - ] - }, - { - "emojiChar": "🌝", - "emoji": "\uD83C\uDF1D", - "description": "full moon with face", - "aliases": [ - "full_moon_with_face" - ], - "tags": [] - }, - { - "emojiChar": "🌚", - "emoji": "\uD83C\uDF1A", - "description": "new moon with face", - "aliases": [ - "new_moon_with_face" - ], - "tags": [] - }, - { - "emojiChar": "🌑", - "emoji": "\uD83C\uDF11", - "description": "new moon symbol", - "aliases": [ - "new_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌒", - "emoji": "\uD83C\uDF12", - "description": "waxing crescent moon symbol", - "aliases": [ - "waxing_crescent_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌓", - "emoji": "\uD83C\uDF13", - "description": "first quarter moon symbol", - "aliases": [ - "first_quarter_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌔", - "emoji": "\uD83C\uDF14", - "description": "waxing gibbous moon symbol", - "aliases": [ - "moon", - "waxing_gibbous_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌕", - "emoji": "\uD83C\uDF15", - "description": "full moon symbol", - "aliases": [ - "full_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌖", - "emoji": "\uD83C\uDF16", - "description": "waning gibbous moon symbol", - "aliases": [ - "waning_gibbous_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌗", - "emoji": "\uD83C\uDF17", - "description": "last quarter moon symbol", - "aliases": [ - "last_quarter_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌘", - "emoji": "\uD83C\uDF18", - "description": "waning crescent moon symbol", - "aliases": [ - "waning_crescent_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌜", - "emoji": "\uD83C\uDF1C", - "description": "last quarter moon with face", - "aliases": [ - "last_quarter_moon_with_face" - ], - "tags": [] - }, - { - "emojiChar": "🌛", - "emoji": "\uD83C\uDF1B", - "description": "first quarter moon with face", - "aliases": [ - "first_quarter_moon_with_face" - ], - "tags": [] - }, - { - "emojiChar": "🌙", - "emoji": "\uD83C\uDF19", - "description": "crescent moon", - "aliases": [ - "crescent_moon" - ], - "tags": [ - "night" - ] - }, - { - "emojiChar": "🌍", - "emoji": "\uD83C\uDF0D", - "description": "earth globe europe-africa", - "aliases": [ - "earth_africa" - ], - "tags": [ - "globe", - "world", - "international" - ] - }, - { - "emojiChar": "🌎", - "emoji": "\uD83C\uDF0E", - "description": "earth globe americas", - "aliases": [ - "earth_americas" - ], - "tags": [ - "globe", - "world", - "international" - ] - }, - { - "emojiChar": "🌏", - "emoji": "\uD83C\uDF0F", - "description": "earth globe asia-australia", - "aliases": [ - "earth_asia" - ], - "tags": [ - "globe", - "world", - "international" - ] - }, - { - "emojiChar": "🌋", - "emoji": "\uD83C\uDF0B", - "description": "volcano", - "aliases": [ - "volcano" - ], - "tags": [] - }, - { - "emojiChar": "🌌", - "emoji": "\uD83C\uDF0C", - "description": "milky way", - "aliases": [ - "milky_way" - ], - "tags": [] - }, - { - "emojiChar": "🌠", - "emoji": "\uD83C\uDF20", - "description": "shooting star", - "aliases": [ - "stars" - ], - "tags": [] - }, - { - "emojiChar": "⭐", - "emoji": "\u2B50", - "description": "white medium star", - "aliases": [ - "star" - ], - "tags": [] - }, - { - "emojiChar": "☀", - "emoji": "\u2600", - "description": "black sun with rays", - "aliases": [ - "sunny" - ], - "tags": [ - "weather" - ] - }, - { - "emojiChar": "⛅", - "emoji": "\u26C5", - "description": "sun behind cloud", - "aliases": [ - "partly_sunny" - ], - "tags": [ - "weather", - "cloud" - ] - }, - { - "emojiChar": "☁", - "emoji": "\u2601", - "description": "cloud", - "aliases": [ - "cloud" - ], - "tags": [] - }, - { - "emojiChar": "⚡", - "emoji": "\u26A1", - "description": "high voltage sign", - "aliases": [ - "zap" - ], - "tags": [ - "lightning", - "thunder" - ] - }, - { - "emojiChar": "☔", - "emoji": "\u2614", - "description": "umbrella with rain drops", - "aliases": [ - "umbrella" - ], - "tags": [ - "rain", - "weather" - ] - }, - { - "emojiChar": "❄", - "emoji": "\u2744", - "description": "snowflake", - "aliases": [ - "snowflake" - ], - "tags": [ - "winter", - "cold", - "weather" - ] - }, - { - "emojiChar": "⛄", - "emoji": "\u26C4", - "description": "snowman without snow", - "aliases": [ - "snowman" - ], - "tags": [ - "winter", - "christmas" - ] - }, - { - "emojiChar": "🌀", - "emoji": "\uD83C\uDF00", - "description": "cyclone", - "aliases": [ - "cyclone" - ], - "tags": [ - "swirl" - ] - }, - { - "emojiChar": "🌁", - "emoji": "\uD83C\uDF01", - "description": "foggy", - "aliases": [ - "foggy" - ], - "tags": [ - "karl" - ] - }, - { - "emojiChar": "🌈", - "emoji": "\uD83C\uDF08", - "description": "rainbow", - "aliases": [ - "rainbow" - ], - "tags": [ - "pride" - ] - }, - { - "emojiChar": "🌊", - "emoji": "\uD83C\uDF0A", - "description": "water wave", - "aliases": [ - "ocean" - ], - "tags": [ - "sea" - ] - }, - { - "emojiChar": "🎍", - "emoji": "\uD83C\uDF8D", - "description": "pine decoration", - "aliases": [ - "bamboo" - ], - "tags": [] - }, - { - "emojiChar": "💝", - "emoji": "\uD83D\uDC9D", - "description": "heart with ribbon", - "aliases": [ - "gift_heart" - ], - "tags": [ - "chocolates" - ] - }, - { - "emojiChar": "🎎", - "emoji": "\uD83C\uDF8E", - "description": "japanese dolls", - "aliases": [ - "dolls" - ], - "tags": [] - }, - { - "emojiChar": "🎒", - "emoji": "\uD83C\uDF92", - "description": "school satchel", - "aliases": [ - "school_satchel" - ], - "tags": [] - }, - { - "emojiChar": "🎓", - "emoji": "\uD83C\uDF93", - "description": "graduation cap", - "aliases": [ - "mortar_board" - ], - "tags": [ - "education", - "college", - "university", - "graduation" - ] - }, - { - "emojiChar": "🎏", - "emoji": "\uD83C\uDF8F", - "description": "carp streamer", - "aliases": [ - "flags" - ], - "tags": [] - }, - { - "emojiChar": "🎆", - "emoji": "\uD83C\uDF86", - "description": "fireworks", - "aliases": [ - "fireworks" - ], - "tags": [ - "festival", - "celebration" - ] - }, - { - "emojiChar": "🎇", - "emoji": "\uD83C\uDF87", - "description": "firework sparkler", - "aliases": [ - "sparkler" - ], - "tags": [] - }, - { - "emojiChar": "🎐", - "emoji": "\uD83C\uDF90", - "description": "wind chime", - "aliases": [ - "wind_chime" - ], - "tags": [] - }, - { - "emojiChar": "🎑", - "emoji": "\uD83C\uDF91", - "description": "moon viewing ceremony", - "aliases": [ - "rice_scene" - ], - "tags": [] - }, - { - "emojiChar": "🎃", - "emoji": "\uD83C\uDF83", - "description": "jack-o-lantern", - "aliases": [ - "jack_o_lantern", - "pumpkin" - ], - "tags": [ - "halloween" - ] - }, - { - "emojiChar": "👻", - "emoji": "\uD83D\uDC7B", - "description": "ghost", - "aliases": [ - "ghost" - ], - "tags": [ - "halloween" - ] - }, - { - "emojiChar": "🎅", - "emoji": "\uD83C\uDF85", - "description": "father christmas", - "supports_fitzpatrick": true, - "aliases": [ - "santa" - ], - "tags": [ - "christmas" - ] - }, - { - "emojiChar": "🎄", - "emoji": "\uD83C\uDF84", - "description": "christmas tree", - "aliases": [ - "christmas_tree" - ], - "tags": [] - }, - { - "emojiChar": "🎁", - "emoji": "\uD83C\uDF81", - "description": "wrapped present", - "aliases": [ - "gift" - ], - "tags": [ - "present", - "birthday", - "christmas" - ] - }, - { - "emojiChar": "🎋", - "emoji": "\uD83C\uDF8B", - "description": "tanabata tree", - "aliases": [ - "tanabata_tree" - ], - "tags": [] - }, - { - "emojiChar": "🎉", - "emoji": "\uD83C\uDF89", - "description": "party popper", - "aliases": [ - "tada" - ], - "tags": [ - "party" - ] - }, - { - "emojiChar": "🎊", - "emoji": "\uD83C\uDF8A", - "description": "confetti ball", - "aliases": [ - "confetti_ball" - ], - "tags": [] - }, - { - "emojiChar": "🎈", - "emoji": "\uD83C\uDF88", - "description": "balloon", - "aliases": [ - "balloon" - ], - "tags": [ - "party", - "birthday" - ] - }, - { - "emojiChar": "🎌", - "emoji": "\uD83C\uDF8C", - "description": "crossed flags", - "aliases": [ - "crossed_flags" - ], - "tags": [] - }, - { - "emojiChar": "🔮", - "emoji": "\uD83D\uDD2E", - "description": "crystal ball", - "aliases": [ - "crystal_ball" - ], - "tags": [ - "fortune" - ] - }, - { - "emojiChar": "🎥", - "emoji": "\uD83C\uDFA5", - "description": "movie camera", - "aliases": [ - "movie_camera" - ], - "tags": [ - "film", - "video" - ] - }, - { - "emojiChar": "📷", - "emoji": "\uD83D\uDCF7", - "description": "camera", - "aliases": [ - "camera" - ], - "tags": [ - "photo" - ] - }, - { - "emojiChar": "📹", - "emoji": "\uD83D\uDCF9", - "description": "video camera", - "aliases": [ - "video_camera" - ], - "tags": [] - }, - { - "emojiChar": "📼", - "emoji": "\uD83D\uDCFC", - "description": "videocassette", - "aliases": [ - "vhs" - ], - "tags": [] - }, - { - "emojiChar": "💿", - "emoji": "\uD83D\uDCBF", - "description": "optical disc", - "aliases": [ - "cd" - ], - "tags": [] - }, - { - "emojiChar": "📀", - "emoji": "\uD83D\uDCC0", - "description": "dvd", - "aliases": [ - "dvd" - ], - "tags": [] - }, - { - "emojiChar": "💽", - "emoji": "\uD83D\uDCBD", - "description": "minidisc", - "aliases": [ - "minidisc" - ], - "tags": [] - }, - { - "emojiChar": "💾", - "emoji": "\uD83D\uDCBE", - "description": "floppy disk", - "aliases": [ - "floppy_disk" - ], - "tags": [ - "save" - ] - }, - { - "emojiChar": "💻", - "emoji": "\uD83D\uDCBB", - "description": "personal computer", - "aliases": [ - "computer" - ], - "tags": [ - "desktop", - "screen" - ] - }, - { - "emojiChar": "📱", - "emoji": "\uD83D\uDCF1", - "description": "mobile phone", - "aliases": [ - "iphone" - ], - "tags": [ - "smartphone", - "mobile" - ] - }, - { - "emojiChar": "☎", - "emoji": "\u260E", - "description": "black telephone", - "aliases": [ - "phone", - "telephone" - ], - "tags": [] - }, - { - "emojiChar": "📞", - "emoji": "\uD83D\uDCDE", - "description": "telephone receiver", - "aliases": [ - "telephone_receiver" - ], - "tags": [ - "phone", - "call" - ] - }, - { - "emojiChar": "📟", - "emoji": "\uD83D\uDCDF", - "description": "pager", - "aliases": [ - "pager" - ], - "tags": [] - }, - { - "emojiChar": "📠", - "emoji": "\uD83D\uDCE0", - "description": "fax machine", - "aliases": [ - "fax" - ], - "tags": [] - }, - { - "emojiChar": "📡", - "emoji": "\uD83D\uDCE1", - "description": "satellite antenna", - "aliases": [ - "satellite_antenna" - ], - "tags": [ - "signal" - ] - }, - { - "emojiChar": "📺", - "emoji": "\uD83D\uDCFA", - "description": "television", - "aliases": [ - "tv" - ], - "tags": [] - }, - { - "emojiChar": "📻", - "emoji": "\uD83D\uDCFB", - "description": "radio", - "aliases": [ - "radio" - ], - "tags": [ - "podcast" - ] - }, - { - "emojiChar": "🔊", - "emoji": "\uD83D\uDD0A", - "description": "speaker with three sound waves", - "aliases": [ - "loud_sound" - ], - "tags": [ - "volume" - ] - }, - { - "emojiChar": "🔉", - "emoji": "\uD83D\uDD09", - "description": "speaker with one sound wave", - "aliases": [ - "sound" - ], - "tags": [ - "volume" - ] - }, - { - "emojiChar": "🔈", - "emoji": "\uD83D\uDD08", - "description": "speaker", - "aliases": [ - "speaker" - ], - "tags": [] - }, - { - "emojiChar": "🔇", - "emoji": "\uD83D\uDD07", - "description": "speaker with cancellation stroke", - "aliases": [ - "mute" - ], - "tags": [ - "sound", - "volume" - ] - }, - { - "emojiChar": "🔔", - "emoji": "\uD83D\uDD14", - "description": "bell", - "aliases": [ - "bell" - ], - "tags": [ - "sound", - "notification" - ] - }, - { - "emojiChar": "🔕", - "emoji": "\uD83D\uDD15", - "description": "bell with cancellation stroke", - "aliases": [ - "no_bell" - ], - "tags": [ - "volume", - "off" - ] - }, - { - "emojiChar": "📢", - "emoji": "\uD83D\uDCE2", - "description": "public address loudspeaker", - "aliases": [ - "loudspeaker" - ], - "tags": [ - "announcement" - ] - }, - { - "emojiChar": "📣", - "emoji": "\uD83D\uDCE3", - "description": "cheering megaphone", - "aliases": [ - "mega" - ], - "tags": [] - }, - { - "emojiChar": "⏳", - "emoji": "\u23F3", - "description": "hourglass with flowing sand", - "aliases": [ - "hourglass_flowing_sand" - ], - "tags": [ - "time" - ] - }, - { - "emojiChar": "⌛", - "emoji": "\u231B", - "description": "hourglass", - "aliases": [ - "hourglass" - ], - "tags": [ - "time" - ] - }, - { - "emojiChar": "⏰", - "emoji": "\u23F0", - "description": "alarm clock", - "aliases": [ - "alarm_clock" - ], - "tags": [ - "morning" - ] - }, - { - "emojiChar": "⌚", - "emoji": "\u231A", - "description": "watch", - "aliases": [ - "watch" - ], - "tags": [ - "time" - ] - }, - { - "emojiChar": "🔓", - "emoji": "\uD83D\uDD13", - "description": "open lock", - "aliases": [ - "unlock" - ], - "tags": [ - "security" - ] - }, - { - "emojiChar": "🔒", - "emoji": "\uD83D\uDD12", - "description": "lock", - "aliases": [ - "lock" - ], - "tags": [ - "security", - "private" - ] - }, - { - "emojiChar": "🔏", - "emoji": "\uD83D\uDD0F", - "description": "lock with ink pen", - "aliases": [ - "lock_with_ink_pen" - ], - "tags": [] - }, - { - "emojiChar": "🔐", - "emoji": "\uD83D\uDD10", - "description": "closed lock with key", - "aliases": [ - "closed_lock_with_key" - ], - "tags": [ - "security" - ] - }, - { - "emojiChar": "🔑", - "emoji": "\uD83D\uDD11", - "description": "key", - "aliases": [ - "key" - ], - "tags": [ - "lock", - "password" - ] - }, - { - "emojiChar": "🔎", - "emoji": "\uD83D\uDD0E", - "description": "right-pointing magnifying glass", - "aliases": [ - "mag_right" - ], - "tags": [] - }, - { - "emojiChar": "💡", - "emoji": "\uD83D\uDCA1", - "description": "electric light bulb", - "aliases": [ - "bulb" - ], - "tags": [ - "idea", - "light" - ] - }, - { - "emojiChar": "🔦", - "emoji": "\uD83D\uDD26", - "description": "electric torch", - "aliases": [ - "flashlight" - ], - "tags": [] - }, - { - "emojiChar": "🔆", - "emoji": "\uD83D\uDD06", - "description": "high brightness symbol", - "aliases": [ - "high_brightness" - ], - "tags": [] - }, - { - "emojiChar": "🔅", - "emoji": "\uD83D\uDD05", - "description": "low brightness symbol", - "aliases": [ - "low_brightness" - ], - "tags": [] - }, - { - "emojiChar": "🔌", - "emoji": "\uD83D\uDD0C", - "description": "electric plug", - "aliases": [ - "electric_plug" - ], - "tags": [] - }, - { - "emojiChar": "🔋", - "emoji": "\uD83D\uDD0B", - "description": "battery", - "aliases": [ - "battery" - ], - "tags": [ - "power" - ] - }, - { - "emojiChar": "🔍", - "emoji": "\uD83D\uDD0D", - "description": "left-pointing magnifying glass", - "aliases": [ - "mag" - ], - "tags": [ - "search", - "zoom" - ] - }, - { - "emojiChar": "🛁", - "emoji": "\uD83D\uDEC1", - "description": "bathtub", - "aliases": [ - "bathtub" - ], - "tags": [] - }, - { - "emojiChar": "🛀", - "emoji": "\uD83D\uDEC0", - "description": "bath", - "supports_fitzpatrick": true, - "aliases": [ - "bath" - ], - "tags": [ - "shower" - ] - }, - { - "emojiChar": "🚿", - "emoji": "\uD83D\uDEBF", - "description": "shower", - "aliases": [ - "shower" - ], - "tags": [ - "bath" - ] - }, - { - "emojiChar": "🚽", - "emoji": "\uD83D\uDEBD", - "description": "toilet", - "aliases": [ - "toilet" - ], - "tags": [ - "wc" - ] - }, - { - "emojiChar": "🔧", - "emoji": "\uD83D\uDD27", - "description": "wrench", - "aliases": [ - "wrench" - ], - "tags": [ - "tool" - ] - }, - { - "emojiChar": "🔩", - "emoji": "\uD83D\uDD29", - "description": "nut and bolt", - "aliases": [ - "nut_and_bolt" - ], - "tags": [] - }, - { - "emojiChar": "🔨", - "emoji": "\uD83D\uDD28", - "description": "hammer", - "aliases": [ - "hammer" - ], - "tags": [ - "tool" - ] - }, - { - "emojiChar": "🚪", - "emoji": "\uD83D\uDEAA", - "description": "door", - "aliases": [ - "door" - ], - "tags": [] - }, - { - "emojiChar": "🚬", - "emoji": "\uD83D\uDEAC", - "description": "smoking symbol", - "aliases": [ - "smoking" - ], - "tags": [ - "cigarette" - ] - }, - { - "emojiChar": "💣", - "emoji": "\uD83D\uDCA3", - "description": "bomb", - "aliases": [ - "bomb" - ], - "tags": [ - "boom" - ] - }, - { - "emojiChar": "🔫", - "emoji": "\uD83D\uDD2B", - "description": "pistol", - "aliases": [ - "gun" - ], - "tags": [ - "shoot", - "weapon" - ] - }, - { - "emojiChar": "🔪", - "emoji": "\uD83D\uDD2A", - "description": "hocho", - "aliases": [ - "hocho", - "knife" - ], - "tags": [ - "cut", - "chop" - ] - }, - { - "emojiChar": "💊", - "emoji": "\uD83D\uDC8A", - "description": "pill", - "aliases": [ - "pill" - ], - "tags": [ - "health", - "medicine" - ] - }, - { - "emojiChar": "💉", - "emoji": "\uD83D\uDC89", - "description": "syringe", - "aliases": [ - "syringe" - ], - "tags": [ - "health", - "hospital", - "needle" - ] - }, - { - "emojiChar": "💰", - "emoji": "\uD83D\uDCB0", - "description": "money bag", - "aliases": [ - "moneybag" - ], - "tags": [ - "dollar", - "cream" - ] - }, - { - "emojiChar": "💴", - "emoji": "\uD83D\uDCB4", - "description": "banknote with yen sign", - "aliases": [ - "yen" - ], - "tags": [] - }, - { - "emojiChar": "💵", - "emoji": "\uD83D\uDCB5", - "description": "banknote with dollar sign", - "aliases": [ - "dollar" - ], - "tags": [ - "money" - ] - }, - { - "emojiChar": "💷", - "emoji": "\uD83D\uDCB7", - "description": "banknote with pound sign", - "aliases": [ - "pound" - ], - "tags": [] - }, - { - "emojiChar": "💶", - "emoji": "\uD83D\uDCB6", - "description": "banknote with euro sign", - "aliases": [ - "euro" - ], - "tags": [] - }, - { - "emojiChar": "💳", - "emoji": "\uD83D\uDCB3", - "description": "credit card", - "aliases": [ - "credit_card" - ], - "tags": [ - "subscription" - ] - }, - { - "emojiChar": "💸", - "emoji": "\uD83D\uDCB8", - "description": "money with wings", - "aliases": [ - "money_with_wings" - ], - "tags": [ - "dollar" - ] - }, - { - "emojiChar": "📲", - "emoji": "\uD83D\uDCF2", - "description": "mobile phone with rightwards arrow at left", - "aliases": [ - "calling" - ], - "tags": [ - "call", - "incoming" - ] - }, - { - "emojiChar": "📧", - "emoji": "\uD83D\uDCE7", - "description": "e-mail symbol", - "aliases": [ - "e-mail" - ], - "tags": [] - }, - { - "emojiChar": "📥", - "emoji": "\uD83D\uDCE5", - "description": "inbox tray", - "aliases": [ - "inbox_tray" - ], - "tags": [] - }, - { - "emojiChar": "📤", - "emoji": "\uD83D\uDCE4", - "description": "outbox tray", - "aliases": [ - "outbox_tray" - ], - "tags": [] - }, - { - "emojiChar": "✉", - "emoji": "\u2709", - "description": "envelope", - "aliases": [ - "email", - "envelope" - ], - "tags": [ - "letter" - ] - }, - { - "emojiChar": "📩", - "emoji": "\uD83D\uDCE9", - "description": "envelope with downwards arrow above", - "aliases": [ - "envelope_with_arrow" - ], - "tags": [] - }, - { - "emojiChar": "📨", - "emoji": "\uD83D\uDCE8", - "description": "incoming envelope", - "aliases": [ - "incoming_envelope" - ], - "tags": [] - }, - { - "emojiChar": "📯", - "emoji": "\uD83D\uDCEF", - "description": "postal horn", - "aliases": [ - "postal_horn" - ], - "tags": [] - }, - { - "emojiChar": "📫", - "emoji": "\uD83D\uDCEB", - "description": "closed mailbox with raised flag", - "aliases": [ - "mailbox" - ], - "tags": [] - }, - { - "emojiChar": "📪", - "emoji": "\uD83D\uDCEA", - "description": "closed mailbox with lowered flag", - "aliases": [ - "mailbox_closed" - ], - "tags": [] - }, - { - "emojiChar": "📬", - "emoji": "\uD83D\uDCEC", - "description": "open mailbox with raised flag", - "aliases": [ - "mailbox_with_mail" - ], - "tags": [] - }, - { - "emojiChar": "📭", - "emoji": "\uD83D\uDCED", - "description": "open mailbox with lowered flag", - "aliases": [ - "mailbox_with_no_mail" - ], - "tags": [] - }, - { - "emojiChar": "📮", - "emoji": "\uD83D\uDCEE", - "description": "postbox", - "aliases": [ - "postbox" - ], - "tags": [] - }, - { - "emojiChar": "📦", - "emoji": "\uD83D\uDCE6", - "description": "package", - "aliases": [ - "package" - ], - "tags": [ - "shipping" - ] - }, - { - "emojiChar": "📝", - "emoji": "\uD83D\uDCDD", - "description": "memo", - "aliases": [ - "memo", - "pencil" - ], - "tags": [ - "document", - "note" - ] - }, - { - "emojiChar": "📄", - "emoji": "\uD83D\uDCC4", - "description": "page facing up", - "aliases": [ - "page_facing_up" - ], - "tags": [ - "document" - ] - }, - { - "emojiChar": "📃", - "emoji": "\uD83D\uDCC3", - "description": "page with curl", - "aliases": [ - "page_with_curl" - ], - "tags": [] - }, - { - "emojiChar": "📑", - "emoji": "\uD83D\uDCD1", - "description": "bookmark tabs", - "aliases": [ - "bookmark_tabs" - ], - "tags": [] - }, - { - "emojiChar": "📊", - "emoji": "\uD83D\uDCCA", - "description": "bar chart", - "aliases": [ - "bar_chart" - ], - "tags": [ - "stats", - "metrics" - ] - }, - { - "emojiChar": "📈", - "emoji": "\uD83D\uDCC8", - "description": "chart with upwards trend", - "aliases": [ - "chart_with_upwards_trend" - ], - "tags": [ - "graph", - "metrics" - ] - }, - { - "emojiChar": "📉", - "emoji": "\uD83D\uDCC9", - "description": "chart with downwards trend", - "aliases": [ - "chart_with_downwards_trend" - ], - "tags": [ - "graph", - "metrics" - ] - }, - { - "emojiChar": "📜", - "emoji": "\uD83D\uDCDC", - "description": "scroll", - "aliases": [ - "scroll" - ], - "tags": [ - "document" - ] - }, - { - "emojiChar": "📋", - "emoji": "\uD83D\uDCCB", - "description": "clipboard", - "aliases": [ - "clipboard" - ], - "tags": [] - }, - { - "emojiChar": "📅", - "emoji": "\uD83D\uDCC5", - "description": "calendar", - "aliases": [ - "date" - ], - "tags": [ - "calendar", - "schedule" - ] - }, - { - "emojiChar": "📆", - "emoji": "\uD83D\uDCC6", - "description": "tear-off calendar", - "aliases": [ - "calendar" - ], - "tags": [ - "schedule" - ] - }, - { - "emojiChar": "📇", - "emoji": "\uD83D\uDCC7", - "description": "card index", - "aliases": [ - "card_index" - ], - "tags": [] - }, - { - "emojiChar": "📁", - "emoji": "\uD83D\uDCC1", - "description": "file folder", - "aliases": [ - "file_folder" - ], - "tags": [ - "directory" - ] - }, - { - "emojiChar": "📂", - "emoji": "\uD83D\uDCC2", - "description": "open file folder", - "aliases": [ - "open_file_folder" - ], - "tags": [] - }, - { - "emojiChar": "✂", - "emoji": "\u2702", - "description": "black scissors", - "aliases": [ - "scissors" - ], - "tags": [ - "cut" - ] - }, - { - "emojiChar": "📌", - "emoji": "\uD83D\uDCCC", - "description": "pushpin", - "aliases": [ - "pushpin" - ], - "tags": [ - "location" - ] - }, - { - "emojiChar": "📎", - "emoji": "\uD83D\uDCCE", - "description": "paperclip", - "aliases": [ - "paperclip" - ], - "tags": [] - }, - { - "emojiChar": "✒", - "emoji": "\u2712", - "description": "black nib", - "aliases": [ - "black_nib" - ], - "tags": [] - }, - { - "emojiChar": "✏", - "emoji": "\u270F", - "description": "pencil", - "aliases": [ - "pencil2" - ], - "tags": [] - }, - { - "emojiChar": "📏", - "emoji": "\uD83D\uDCCF", - "description": "straight ruler", - "aliases": [ - "straight_ruler" - ], - "tags": [] - }, - { - "emojiChar": "📐", - "emoji": "\uD83D\uDCD0", - "description": "triangular ruler", - "aliases": [ - "triangular_ruler" - ], - "tags": [] - }, - { - "emojiChar": "📕", - "emoji": "\uD83D\uDCD5", - "description": "closed book", - "aliases": [ - "closed_book" - ], - "tags": [] - }, - { - "emojiChar": "📗", - "emoji": "\uD83D\uDCD7", - "description": "green book", - "aliases": [ - "green_book" - ], - "tags": [] - }, - { - "emojiChar": "📘", - "emoji": "\uD83D\uDCD8", - "description": "blue book", - "aliases": [ - "blue_book" - ], - "tags": [] - }, - { - "emojiChar": "📙", - "emoji": "\uD83D\uDCD9", - "description": "orange book", - "aliases": [ - "orange_book" - ], - "tags": [] - }, - { - "emojiChar": "📓", - "emoji": "\uD83D\uDCD3", - "description": "notebook", - "aliases": [ - "notebook" - ], - "tags": [] - }, - { - "emojiChar": "📔", - "emoji": "\uD83D\uDCD4", - "description": "notebook with decorative cover", - "aliases": [ - "notebook_with_decorative_cover" - ], - "tags": [] - }, - { - "emojiChar": "📒", - "emoji": "\uD83D\uDCD2", - "description": "ledger", - "aliases": [ - "ledger" - ], - "tags": [] - }, - { - "emojiChar": "📚", - "emoji": "\uD83D\uDCDA", - "description": "books", - "aliases": [ - "books" - ], - "tags": [ - "library" - ] - }, - { - "emojiChar": "📖", - "emoji": "\uD83D\uDCD6", - "description": "open book", - "aliases": [ - "book", - "open_book" - ], - "tags": [] - }, - { - "emojiChar": "🔖", - "emoji": "\uD83D\uDD16", - "description": "bookmark", - "aliases": [ - "bookmark" - ], - "tags": [] - }, - { - "emojiChar": "📛", - "emoji": "\uD83D\uDCDB", - "description": "name badge", - "aliases": [ - "name_badge" - ], - "tags": [] - }, - { - "emojiChar": "🔬", - "emoji": "\uD83D\uDD2C", - "description": "microscope", - "aliases": [ - "microscope" - ], - "tags": [ - "science", - "laboratory", - "investigate" - ] - }, - { - "emojiChar": "🔭", - "emoji": "\uD83D\uDD2D", - "description": "telescope", - "aliases": [ - "telescope" - ], - "tags": [] - }, - { - "emojiChar": "📰", - "emoji": "\uD83D\uDCF0", - "description": "newspaper", - "aliases": [ - "newspaper" - ], - "tags": [ - "press" - ] - }, - { - "emojiChar": "🎨", - "emoji": "\uD83C\uDFA8", - "description": "artist palette", - "aliases": [ - "art" - ], - "tags": [ - "design", - "paint" - ] - }, - { - "emojiChar": "🎬", - "emoji": "\uD83C\uDFAC", - "description": "clapper board", - "aliases": [ - "clapper" - ], - "tags": [ - "film" - ] - }, - { - "emojiChar": "🎤", - "emoji": "\uD83C\uDFA4", - "description": "microphone", - "aliases": [ - "microphone" - ], - "tags": [ - "sing" - ] - }, - { - "emojiChar": "🎧", - "emoji": "\uD83C\uDFA7", - "description": "headphone", - "aliases": [ - "headphones" - ], - "tags": [ - "music", - "earphones" - ] - }, - { - "emojiChar": "🎼", - "emoji": "\uD83C\uDFBC", - "description": "musical score", - "aliases": [ - "musical_score" - ], - "tags": [] - }, - { - "emojiChar": "🎵", - "emoji": "\uD83C\uDFB5", - "description": "musical note", - "aliases": [ - "musical_note" - ], - "tags": [] - }, - { - "emojiChar": "🎶", - "emoji": "\uD83C\uDFB6", - "description": "multiple musical notes", - "aliases": [ - "notes" - ], - "tags": [ - "music" - ] - }, - { - "emojiChar": "🎹", - "emoji": "\uD83C\uDFB9", - "description": "musical keyboard", - "aliases": [ - "musical_keyboard" - ], - "tags": [ - "piano" - ] - }, - { - "emojiChar": "🎻", - "emoji": "\uD83C\uDFBB", - "description": "violin", - "aliases": [ - "violin" - ], - "tags": [] - }, - { - "emojiChar": "🎺", - "emoji": "\uD83C\uDFBA", - "description": "trumpet", - "aliases": [ - "trumpet" - ], - "tags": [] - }, - { - "emojiChar": "🎷", - "emoji": "\uD83C\uDFB7", - "description": "saxophone", - "aliases": [ - "saxophone" - ], - "tags": [] - }, - { - "emojiChar": "🎸", - "emoji": "\uD83C\uDFB8", - "description": "guitar", - "aliases": [ - "guitar" - ], - "tags": [ - "rock" - ] - }, - { - "emojiChar": "👾", - "emoji": "\uD83D\uDC7E", - "description": "alien monster", - "aliases": [ - "space_invader" - ], - "tags": [ - "game", - "retro" - ] - }, - { - "emojiChar": "🎮", - "emoji": "\uD83C\uDFAE", - "description": "video game", - "aliases": [ - "video_game" - ], - "tags": [ - "play", - "controller", - "console" - ] - }, - { - "emojiChar": "🃏", - "emoji": "\uD83C\uDCCF", - "description": "playing card black joker", - "aliases": [ - "black_joker" - ], - "tags": [] - }, - { - "emojiChar": "🎴", - "emoji": "\uD83C\uDFB4", - "description": "flower playing cards", - "aliases": [ - "flower_playing_cards" - ], - "tags": [] - }, - { - "emojiChar": "🀄", - "emoji": "\uD83C\uDC04", - "description": "mahjong tile red dragon", - "aliases": [ - "mahjong" - ], - "tags": [] - }, - { - "emojiChar": "🎲", - "emoji": "\uD83C\uDFB2", - "description": "game die", - "aliases": [ - "game_die" - ], - "tags": [ - "dice", - "gambling" - ] - }, - { - "emojiChar": "🎯", - "emoji": "\uD83C\uDFAF", - "description": "direct hit", - "aliases": [ - "dart" - ], - "tags": [ - "target" - ] - }, - { - "emojiChar": "🏈", - "emoji": "\uD83C\uDFC8", - "description": "american football", - "aliases": [ - "football" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "🏀", - "emoji": "\uD83C\uDFC0", - "description": "basketball and hoop", - "aliases": [ - "basketball" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "⚽", - "emoji": "\u26BD", - "description": "soccer ball", - "aliases": [ - "soccer" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "⚾", - "emoji": "\u26BE", - "description": "baseball", - "aliases": [ - "baseball" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "🎾", - "emoji": "\uD83C\uDFBE", - "description": "tennis racquet and ball", - "aliases": [ - "tennis" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "🎱", - "emoji": "\uD83C\uDFB1", - "description": "billiards", - "aliases": [ - "8ball" - ], - "tags": [ - "pool", - "billiards" - ] - }, - { - "emojiChar": "🏉", - "emoji": "\uD83C\uDFC9", - "description": "rugby football", - "aliases": [ - "rugby_football" - ], - "tags": [] - }, - { - "emojiChar": "🎳", - "emoji": "\uD83C\uDFB3", - "description": "bowling", - "aliases": [ - "bowling" - ], - "tags": [] - }, - { - "emojiChar": "⛳", - "emoji": "\u26F3", - "description": "flag in hole", - "aliases": [ - "golf" - ], - "tags": [] - }, - { - "emojiChar": "🚵", - "emoji": "\uD83D\uDEB5", - "description": "mountain bicyclist", - "supports_fitzpatrick": true, - "aliases": [ - "mountain_bicyclist" - ], - "tags": [] - }, - { - "emojiChar": "🚴", - "emoji": "\uD83D\uDEB4", - "description": "bicyclist", - "supports_fitzpatrick": true, - "aliases": [ - "bicyclist" - ], - "tags": [] - }, - { - "emojiChar": "🏁", - "emoji": "\uD83C\uDFC1", - "description": "chequered flag", - "aliases": [ - "checkered_flag" - ], - "tags": [ - "milestone", - "finish" - ] - }, - { - "emojiChar": "🏇", - "emoji": "\uD83C\uDFC7", - "description": "horse racing", - "supports_fitzpatrick": true, - "aliases": [ - "horse_racing" - ], - "tags": [] - }, - { - "emojiChar": "🏆", - "emoji": "\uD83C\uDFC6", - "description": "trophy", - "aliases": [ - "trophy" - ], - "tags": [ - "award", - "contest", - "winner" - ] - }, - { - "emojiChar": "🎿", - "emoji": "\uD83C\uDFBF", - "description": "ski and ski boot", - "aliases": [ - "ski" - ], - "tags": [] - }, - { - "emojiChar": "🏂", - "emoji": "\uD83C\uDFC2", - "description": "snowboarder", - "supports_fitzpatrick": true, - "aliases": [ - "snowboarder" - ], - "tags": [] - }, - { - "emojiChar": "🏊", - "emoji": "\uD83C\uDFCA", - "description": "swimmer", - "supports_fitzpatrick": true, - "aliases": [ - "swimmer" - ], - "tags": [] - }, - { - "emojiChar": "🏄", - "emoji": "\uD83C\uDFC4", - "description": "surfer", - "supports_fitzpatrick": true, - "aliases": [ - "surfer" - ], - "tags": [] - }, - { - "emojiChar": "🎣", - "emoji": "\uD83C\uDFA3", - "description": "fishing pole and fish", - "aliases": [ - "fishing_pole_and_fish" - ], - "tags": [] - }, - { - "emojiChar": "☕", - "emoji": "\u2615", - "description": "hot beverage", - "aliases": [ - "coffee" - ], - "tags": [ - "cafe", - "espresso" - ] - }, - { - "emojiChar": "🍵", - "emoji": "\uD83C\uDF75", - "description": "teacup without handle", - "aliases": [ - "tea" - ], - "tags": [ - "green", - "breakfast" - ] - }, - { - "emojiChar": "🍶", - "emoji": "\uD83C\uDF76", - "description": "sake bottle and cup", - "aliases": [ - "sake" - ], - "tags": [] - }, - { - "emojiChar": "🍼", - "emoji": "\uD83C\uDF7C", - "description": "baby bottle", - "aliases": [ - "baby_bottle" - ], - "tags": [ - "milk" - ] - }, - { - "emojiChar": "🍺", - "emoji": "\uD83C\uDF7A", - "description": "beer mug", - "aliases": [ - "beer" - ], - "tags": [ - "drink" - ] - }, - { - "emojiChar": "🍻", - "emoji": "\uD83C\uDF7B", - "description": "clinking beer mugs", - "aliases": [ - "beers" - ], - "tags": [ - "drinks" - ] - }, - { - "emojiChar": "🍸", - "emoji": "\uD83C\uDF78", - "description": "cocktail glass", - "aliases": [ - "cocktail" - ], - "tags": [ - "drink" - ] - }, - { - "emojiChar": "🍹", - "emoji": "\uD83C\uDF79", - "description": "tropical drink", - "aliases": [ - "tropical_drink" - ], - "tags": [ - "summer", - "vacation" - ] - }, - { - "emojiChar": "🍷", - "emoji": "\uD83C\uDF77", - "description": "wine glass", - "aliases": [ - "wine_glass" - ], - "tags": [] - }, - { - "emojiChar": "🍴", - "emoji": "\uD83C\uDF74", - "description": "fork and knife", - "aliases": [ - "fork_and_knife" - ], - "tags": [ - "cutlery" - ] - }, - { - "emojiChar": "🍕", - "emoji": "\uD83C\uDF55", - "description": "slice of pizza", - "aliases": [ - "pizza" - ], - "tags": [] - }, - { - "emojiChar": "🍔", - "emoji": "\uD83C\uDF54", - "description": "hamburger", - "aliases": [ - "hamburger" - ], - "tags": [ - "burger" - ] - }, - { - "emojiChar": "🍟", - "emoji": "\uD83C\uDF5F", - "description": "french fries", - "aliases": [ - "fries" - ], - "tags": [] - }, - { - "emojiChar": "🍗", - "emoji": "\uD83C\uDF57", - "description": "poultry leg", - "aliases": [ - "poultry_leg" - ], - "tags": [ - "meat", - "chicken" - ] - }, - { - "emojiChar": "🍖", - "emoji": "\uD83C\uDF56", - "description": "meat on bone", - "aliases": [ - "meat_on_bone" - ], - "tags": [] - }, - { - "emojiChar": "🍝", - "emoji": "\uD83C\uDF5D", - "description": "spaghetti", - "aliases": [ - "spaghetti" - ], - "tags": [ - "pasta" - ] - }, - { - "emojiChar": "🍛", - "emoji": "\uD83C\uDF5B", - "description": "curry and rice", - "aliases": [ - "curry" - ], - "tags": [] - }, - { - "emojiChar": "🍤", - "emoji": "\uD83C\uDF64", - "description": "fried shrimp", - "aliases": [ - "fried_shrimp" - ], - "tags": [ - "tempura" - ] - }, - { - "emojiChar": "🍱", - "emoji": "\uD83C\uDF71", - "description": "bento box", - "aliases": [ - "bento" - ], - "tags": [] - }, - { - "emojiChar": "🍣", - "emoji": "\uD83C\uDF63", - "description": "sushi", - "aliases": [ - "sushi" - ], - "tags": [] - }, - { - "emojiChar": "🍥", - "emoji": "\uD83C\uDF65", - "description": "fish cake with swirl design", - "aliases": [ - "fish_cake" - ], - "tags": [] - }, - { - "emojiChar": "🍙", - "emoji": "\uD83C\uDF59", - "description": "rice ball", - "aliases": [ - "rice_ball" - ], - "tags": [] - }, - { - "emojiChar": "🍘", - "emoji": "\uD83C\uDF58", - "description": "rice cracker", - "aliases": [ - "rice_cracker" - ], - "tags": [] - }, - { - "emojiChar": "🍚", - "emoji": "\uD83C\uDF5A", - "description": "cooked rice", - "aliases": [ - "rice" - ], - "tags": [] - }, - { - "emojiChar": "🍜", - "emoji": "\uD83C\uDF5C", - "description": "steaming bowl", - "aliases": [ - "ramen" - ], - "tags": [ - "noodle" - ] - }, - { - "emojiChar": "🍲", - "emoji": "\uD83C\uDF72", - "description": "pot of food", - "aliases": [ - "stew" - ], - "tags": [] - }, - { - "emojiChar": "🍢", - "emoji": "\uD83C\uDF62", - "description": "oden", - "aliases": [ - "oden" - ], - "tags": [] - }, - { - "emojiChar": "🍡", - "emoji": "\uD83C\uDF61", - "description": "dango", - "aliases": [ - "dango" - ], - "tags": [] - }, - { - "emojiChar": "🍳", - "emoji": "\uD83C\uDF73", - "description": "cooking", - "aliases": [ - "cooking" - ], - "tags": [ - "breakfast" - ] - }, - { - "emojiChar": "🍞", - "emoji": "\uD83C\uDF5E", - "description": "bread", - "aliases": [ - "bread" - ], - "tags": [ - "toast" - ] - }, - { - "emojiChar": "🍩", - "emoji": "\uD83C\uDF69", - "description": "doughnut", - "aliases": [ - "doughnut" - ], - "tags": [] - }, - { - "emojiChar": "🍮", - "emoji": "\uD83C\uDF6E", - "description": "custard", - "aliases": [ - "custard" - ], - "tags": [] - }, - { - "emojiChar": "🍦", - "emoji": "\uD83C\uDF66", - "description": "soft ice cream", - "aliases": [ - "icecream" - ], - "tags": [] - }, - { - "emojiChar": "🍨", - "emoji": "\uD83C\uDF68", - "description": "ice cream", - "aliases": [ - "ice_cream" - ], - "tags": [] - }, - { - "emojiChar": "🍧", - "emoji": "\uD83C\uDF67", - "description": "shaved ice", - "aliases": [ - "shaved_ice" - ], - "tags": [] - }, - { - "emojiChar": "🎂", - "emoji": "\uD83C\uDF82", - "description": "birthday cake", - "aliases": [ - "birthday" - ], - "tags": [ - "party" - ] - }, - { - "emojiChar": "🍰", - "emoji": "\uD83C\uDF70", - "description": "shortcake", - "aliases": [ - "cake" - ], - "tags": [ - "dessert" - ] - }, - { - "emojiChar": "🍪", - "emoji": "\uD83C\uDF6A", - "description": "cookie", - "aliases": [ - "cookie" - ], - "tags": [] - }, - { - "emojiChar": "🍫", - "emoji": "\uD83C\uDF6B", - "description": "chocolate bar", - "aliases": [ - "chocolate_bar" - ], - "tags": [] - }, - { - "emojiChar": "🍬", - "emoji": "\uD83C\uDF6C", - "description": "candy", - "aliases": [ - "candy" - ], - "tags": [ - "sweet" - ] - }, - { - "emojiChar": "🍭", - "emoji": "\uD83C\uDF6D", - "description": "lollipop", - "aliases": [ - "lollipop" - ], - "tags": [] - }, - { - "emojiChar": "🍯", - "emoji": "\uD83C\uDF6F", - "description": "honey pot", - "aliases": [ - "honey_pot" - ], - "tags": [] - }, - { - "emojiChar": "🍎", - "emoji": "\uD83C\uDF4E", - "description": "red apple", - "aliases": [ - "apple" - ], - "tags": [] - }, - { - "emojiChar": "🍏", - "emoji": "\uD83C\uDF4F", - "description": "green apple", - "aliases": [ - "green_apple" - ], - "tags": [ - "fruit" - ] - }, - { - "emojiChar": "🍊", - "emoji": "\uD83C\uDF4A", - "description": "tangerine", - "aliases": [ - "tangerine" - ], - "tags": [] - }, - { - "emojiChar": "🍋", - "emoji": "\uD83C\uDF4B", - "description": "lemon", - "aliases": [ - "lemon" - ], - "tags": [] - }, - { - "emojiChar": "🍒", - "emoji": "\uD83C\uDF52", - "description": "cherries", - "aliases": [ - "cherries" - ], - "tags": [ - "fruit" - ] - }, - { - "emojiChar": "🍇", - "emoji": "\uD83C\uDF47", - "description": "grapes", - "aliases": [ - "grapes" - ], - "tags": [] - }, - { - "emojiChar": "🍉", - "emoji": "\uD83C\uDF49", - "description": "watermelon", - "aliases": [ - "watermelon" - ], - "tags": [] - }, - { - "emojiChar": "🍓", - "emoji": "\uD83C\uDF53", - "description": "strawberry", - "aliases": [ - "strawberry" - ], - "tags": [ - "fruit" - ] - }, - { - "emojiChar": "🍑", - "emoji": "\uD83C\uDF51", - "description": "peach", - "aliases": [ - "peach" - ], - "tags": [] - }, - { - "emojiChar": "🍈", - "emoji": "\uD83C\uDF48", - "description": "melon", - "aliases": [ - "melon" - ], - "tags": [] - }, - { - "emojiChar": "🍌", - "emoji": "\uD83C\uDF4C", - "description": "banana", - "aliases": [ - "banana" - ], - "tags": [ - "fruit" - ] - }, - { - "emojiChar": "🍐", - "emoji": "\uD83C\uDF50", - "description": "pear", - "aliases": [ - "pear" - ], - "tags": [] - }, - { - "emojiChar": "🍍", - "emoji": "\uD83C\uDF4D", - "description": "pineapple", - "aliases": [ - "pineapple" - ], - "tags": [] - }, - { - "emojiChar": "🍠", - "emoji": "\uD83C\uDF60", - "description": "roasted sweet potato", - "aliases": [ - "sweet_potato" - ], - "tags": [] - }, - { - "emojiChar": "🍆", - "emoji": "\uD83C\uDF46", - "description": "aubergine", - "aliases": [ - "eggplant" - ], - "tags": [ - "aubergine" - ] - }, - { - "emojiChar": "🍅", - "emoji": "\uD83C\uDF45", - "description": "tomato", - "aliases": [ - "tomato" - ], - "tags": [] - }, - { - "emojiChar": "🌽", - "emoji": "\uD83C\uDF3D", - "description": "ear of maize", - "aliases": [ - "corn" - ], - "tags": [] - }, - { - "emojiChar": "🏠", - "emoji": "\uD83C\uDFE0", - "description": "house building", - "aliases": [ - "house" - ], - "tags": [] - }, - { - "emojiChar": "🏡", - "emoji": "\uD83C\uDFE1", - "description": "house with garden", - "aliases": [ - "house_with_garden" - ], - "tags": [] - }, - { - "emojiChar": "🏫", - "emoji": "\uD83C\uDFEB", - "description": "school", - "aliases": [ - "school" - ], - "tags": [] - }, - { - "emojiChar": "🏢", - "emoji": "\uD83C\uDFE2", - "description": "office building", - "aliases": [ - "office" - ], - "tags": [] - }, - { - "emojiChar": "🏣", - "emoji": "\uD83C\uDFE3", - "description": "japanese post office", - "aliases": [ - "post_office" - ], - "tags": [] - }, - { - "emojiChar": "🏥", - "emoji": "\uD83C\uDFE5", - "description": "hospital", - "aliases": [ - "hospital" - ], - "tags": [] - }, - { - "emojiChar": "🏦", - "emoji": "\uD83C\uDFE6", - "description": "bank", - "aliases": [ - "bank" - ], - "tags": [] - }, - { - "emojiChar": "🏪", - "emoji": "\uD83C\uDFEA", - "description": "convenience store", - "aliases": [ - "convenience_store" - ], - "tags": [] - }, - { - "emojiChar": "🏩", - "emoji": "\uD83C\uDFE9", - "description": "love hotel", - "aliases": [ - "love_hotel" - ], - "tags": [] - }, - { - "emojiChar": "🏨", - "emoji": "\uD83C\uDFE8", - "description": "hotel", - "aliases": [ - "hotel" - ], - "tags": [] - }, - { - "emojiChar": "💒", - "emoji": "\uD83D\uDC92", - "description": "wedding", - "aliases": [ - "wedding" - ], - "tags": [ - "marriage" - ] - }, - { - "emojiChar": "⛪", - "emoji": "\u26EA", - "description": "church", - "aliases": [ - "church" - ], - "tags": [] - }, - { - "emojiChar": "🏬", - "emoji": "\uD83C\uDFEC", - "description": "department store", - "aliases": [ - "department_store" - ], - "tags": [] - }, - { - "emojiChar": "🏤", - "emoji": "\uD83C\uDFE4", - "description": "european post office", - "aliases": [ - "european_post_office" - ], - "tags": [] - }, - { - "emojiChar": "🌇", - "emoji": "\uD83C\uDF07", - "description": "sunset over buildings", - "aliases": [ - "city_sunrise" - ], - "tags": [] - }, - { - "emojiChar": "🌆", - "emoji": "\uD83C\uDF06", - "description": "cityscape at dusk", - "aliases": [ - "city_sunset" - ], - "tags": [] - }, - { - "emojiChar": "🏯", - "emoji": "\uD83C\uDFEF", - "description": "japanese castle", - "aliases": [ - "japanese_castle" - ], - "tags": [] - }, - { - "emojiChar": "🏰", - "emoji": "\uD83C\uDFF0", - "description": "european castle", - "aliases": [ - "european_castle" - ], - "tags": [] - }, - { - "emojiChar": "⛺", - "emoji": "\u26FA", - "description": "tent", - "aliases": [ - "tent" - ], - "tags": [ - "camping" - ] - }, - { - "emojiChar": "🏭", - "emoji": "\uD83C\uDFED", - "description": "factory", - "aliases": [ - "factory" - ], - "tags": [] - }, - { - "emojiChar": "🗼", - "emoji": "\uD83D\uDDFC", - "description": "tokyo tower", - "aliases": [ - "tokyo_tower" - ], - "tags": [] - }, - { - "emojiChar": "🗾", - "emoji": "\uD83D\uDDFE", - "description": "silhouette of japan", - "aliases": [ - "japan" - ], - "tags": [] - }, - { - "emojiChar": "🗻", - "emoji": "\uD83D\uDDFB", - "description": "mount fuji", - "aliases": [ - "mount_fuji" - ], - "tags": [] - }, - { - "emojiChar": "🌄", - "emoji": "\uD83C\uDF04", - "description": "sunrise over mountains", - "aliases": [ - "sunrise_over_mountains" - ], - "tags": [] - }, - { - "emojiChar": "🌅", - "emoji": "\uD83C\uDF05", - "description": "sunrise", - "aliases": [ - "sunrise" - ], - "tags": [] - }, - { - "emojiChar": "🌃", - "emoji": "\uD83C\uDF03", - "description": "night with stars", - "aliases": [ - "night_with_stars" - ], - "tags": [] - }, - { - "emojiChar": "🗽", - "emoji": "\uD83D\uDDFD", - "description": "statue of liberty", - "aliases": [ - "statue_of_liberty" - ], - "tags": [] - }, - { - "emojiChar": "🌉", - "emoji": "\uD83C\uDF09", - "description": "bridge at night", - "aliases": [ - "bridge_at_night" - ], - "tags": [] - }, - { - "emojiChar": "🎠", - "emoji": "\uD83C\uDFA0", - "description": "carousel horse", - "aliases": [ - "carousel_horse" - ], - "tags": [] - }, - { - "emojiChar": "🎡", - "emoji": "\uD83C\uDFA1", - "description": "ferris wheel", - "aliases": [ - "ferris_wheel" - ], - "tags": [] - }, - { - "emojiChar": "⛲", - "emoji": "\u26F2", - "description": "fountain", - "aliases": [ - "fountain" - ], - "tags": [] - }, - { - "emojiChar": "🎢", - "emoji": "\uD83C\uDFA2", - "description": "roller coaster", - "aliases": [ - "roller_coaster" - ], - "tags": [] - }, - { - "emojiChar": "🚢", - "emoji": "\uD83D\uDEA2", - "description": "ship", - "aliases": [ - "ship" - ], - "tags": [] - }, - { - "emojiChar": "⛵", - "emoji": "\u26F5", - "description": "sailboat", - "aliases": [ - "boat", - "sailboat" - ], - "tags": [] - }, - { - "emojiChar": "🚤", - "emoji": "\uD83D\uDEA4", - "description": "speedboat", - "aliases": [ - "speedboat" - ], - "tags": [ - "ship" - ] - }, - { - "emojiChar": "🚣", - "emoji": "\uD83D\uDEA3", - "description": "rowboat", - "supports_fitzpatrick": true, - "aliases": [ - "rowboat" - ], - "tags": [] - }, - { - "emojiChar": "⚓", - "emoji": "\u2693", - "description": "anchor", - "aliases": [ - "anchor" - ], - "tags": [ - "ship" - ] - }, - { - "emojiChar": "🚀", - "emoji": "\uD83D\uDE80", - "description": "rocket", - "aliases": [ - "rocket" - ], - "tags": [ - "ship", - "launch" - ] - }, - { - "emojiChar": "✈", - "emoji": "\u2708", - "description": "airplane", - "aliases": [ - "airplane" - ], - "tags": [ - "flight" - ] - }, - { - "emojiChar": "💺", - "emoji": "\uD83D\uDCBA", - "description": "seat", - "aliases": [ - "seat" - ], - "tags": [] - }, - { - "emojiChar": "🚁", - "emoji": "\uD83D\uDE81", - "description": "helicopter", - "aliases": [ - "helicopter" - ], - "tags": [] - }, - { - "emojiChar": "🚂", - "emoji": "\uD83D\uDE82", - "description": "steam locomotive", - "aliases": [ - "steam_locomotive" - ], - "tags": [ - "train" - ] - }, - { - "emojiChar": "🚊", - "emoji": "\uD83D\uDE8A", - "description": "tram", - "aliases": [ - "tram" - ], - "tags": [] - }, - { - "emojiChar": "🚉", - "emoji": "\uD83D\uDE89", - "description": "station", - "aliases": [ - "station" - ], - "tags": [] - }, - { - "emojiChar": "🚞", - "emoji": "\uD83D\uDE9E", - "description": "mountain railway", - "aliases": [ - "mountain_railway" - ], - "tags": [] - }, - { - "emojiChar": "🚆", - "emoji": "\uD83D\uDE86", - "description": "train", - "aliases": [ - "train2" - ], - "tags": [] - }, - { - "emojiChar": "🚄", - "emoji": "\uD83D\uDE84", - "description": "high-speed train", - "aliases": [ - "bullettrain_side" - ], - "tags": [ - "train" - ] - }, - { - "emojiChar": "🚅", - "emoji": "\uD83D\uDE85", - "description": "high-speed train with bullet nose", - "aliases": [ - "bullettrain_front" - ], - "tags": [ - "train" - ] - }, - { - "emojiChar": "🚈", - "emoji": "\uD83D\uDE88", - "description": "light rail", - "aliases": [ - "light_rail" - ], - "tags": [] - }, - { - "emojiChar": "🚇", - "emoji": "\uD83D\uDE87", - "description": "metro", - "aliases": [ - "metro" - ], - "tags": [] - }, - { - "emojiChar": "🚝", - "emoji": "\uD83D\uDE9D", - "description": "monorail", - "aliases": [ - "monorail" - ], - "tags": [] - }, - { - "emojiChar": "🚋", - "emoji": "\uD83D\uDE8B", - "description": "tram car", - "aliases": [ - "train" - ], - "tags": [] - }, - { - "emojiChar": "🚃", - "emoji": "\uD83D\uDE83", - "description": "railway car", - "aliases": [ - "railway_car" - ], - "tags": [] - }, - { - "emojiChar": "🚎", - "emoji": "\uD83D\uDE8E", - "description": "trolleybus", - "aliases": [ - "trolleybus" - ], - "tags": [] - }, - { - "emojiChar": "🚌", - "emoji": "\uD83D\uDE8C", - "description": "bus", - "aliases": [ - "bus" - ], - "tags": [] - }, - { - "emojiChar": "🚍", - "emoji": "\uD83D\uDE8D", - "description": "oncoming bus", - "aliases": [ - "oncoming_bus" - ], - "tags": [] - }, - { - "emojiChar": "🚙", - "emoji": "\uD83D\uDE99", - "description": "recreational vehicle", - "aliases": [ - "blue_car" - ], - "tags": [] - }, - { - "emojiChar": "🚘", - "emoji": "\uD83D\uDE98", - "description": "oncoming automobile", - "aliases": [ - "oncoming_automobile" - ], - "tags": [] - }, - { - "emojiChar": "🚗", - "emoji": "\uD83D\uDE97", - "description": "automobile", - "aliases": [ - "car", - "red_car" - ], - "tags": [] - }, - { - "emojiChar": "🚕", - "emoji": "\uD83D\uDE95", - "description": "taxi", - "aliases": [ - "taxi" - ], - "tags": [] - }, - { - "emojiChar": "🚖", - "emoji": "\uD83D\uDE96", - "description": "oncoming taxi", - "aliases": [ - "oncoming_taxi" - ], - "tags": [] - }, - { - "emojiChar": "🚛", - "emoji": "\uD83D\uDE9B", - "description": "articulated lorry", - "aliases": [ - "articulated_lorry" - ], - "tags": [] - }, - { - "emojiChar": "🚚", - "emoji": "\uD83D\uDE9A", - "description": "delivery truck", - "aliases": [ - "truck" - ], - "tags": [] - }, - { - "emojiChar": "🚨", - "emoji": "\uD83D\uDEA8", - "description": "police cars revolving light", - "aliases": [ - "rotating_light" - ], - "tags": [ - "911", - "emergency" - ] - }, - { - "emojiChar": "🚓", - "emoji": "\uD83D\uDE93", - "description": "police car", - "aliases": [ - "police_car" - ], - "tags": [] - }, - { - "emojiChar": "🚔", - "emoji": "\uD83D\uDE94", - "description": "oncoming police car", - "aliases": [ - "oncoming_police_car" - ], - "tags": [] - }, - { - "emojiChar": "🚒", - "emoji": "\uD83D\uDE92", - "description": "fire engine", - "aliases": [ - "fire_engine" - ], - "tags": [] - }, - { - "emojiChar": "🚑", - "emoji": "\uD83D\uDE91", - "description": "ambulance", - "aliases": [ - "ambulance" - ], - "tags": [] - }, - { - "emojiChar": "🚐", - "emoji": "\uD83D\uDE90", - "description": "minibus", - "aliases": [ - "minibus" - ], - "tags": [] - }, - { - "emojiChar": "🚲", - "emoji": "\uD83D\uDEB2", - "description": "bicycle", - "aliases": [ - "bike" - ], - "tags": [ - "bicycle" - ] - }, - { - "emojiChar": "🚡", - "emoji": "\uD83D\uDEA1", - "description": "aerial tramway", - "aliases": [ - "aerial_tramway" - ], - "tags": [] - }, - { - "emojiChar": "🚟", - "emoji": "\uD83D\uDE9F", - "description": "suspension railway", - "aliases": [ - "suspension_railway" - ], - "tags": [] - }, - { - "emojiChar": "🚠", - "emoji": "\uD83D\uDEA0", - "description": "mountain cableway", - "aliases": [ - "mountain_cableway" - ], - "tags": [] - }, - { - "emojiChar": "🚜", - "emoji": "\uD83D\uDE9C", - "description": "tractor", - "aliases": [ - "tractor" - ], - "tags": [] - }, - { - "emojiChar": "💈", - "emoji": "\uD83D\uDC88", - "description": "barber pole", - "aliases": [ - "barber" - ], - "tags": [] - }, - { - "emojiChar": "🚏", - "emoji": "\uD83D\uDE8F", - "description": "bus stop", - "aliases": [ - "busstop" - ], - "tags": [] - }, - { - "emojiChar": "🎫", - "emoji": "\uD83C\uDFAB", - "description": "ticket", - "aliases": [ - "ticket" - ], - "tags": [] - }, - { - "emojiChar": "🚦", - "emoji": "\uD83D\uDEA6", - "description": "vertical traffic light", - "aliases": [ - "vertical_traffic_light" - ], - "tags": [ - "semaphore" - ] - }, - { - "emojiChar": "🚥", - "emoji": "\uD83D\uDEA5", - "description": "horizontal traffic light", - "aliases": [ - "traffic_light" - ], - "tags": [] - }, - { - "emojiChar": "⚠", - "emoji": "\u26A0", - "description": "warning sign", - "aliases": [ - "warning" - ], - "tags": [ - "wip" - ] - }, - { - "emojiChar": "🚧", - "emoji": "\uD83D\uDEA7", - "description": "construction sign", - "aliases": [ - "construction" - ], - "tags": [ - "wip" - ] - }, - { - "emojiChar": "🔰", - "emoji": "\uD83D\uDD30", - "description": "japanese symbol for beginner", - "aliases": [ - "beginner" - ], - "tags": [] - }, - { - "emojiChar": "⛽", - "emoji": "\u26FD", - "description": "fuel pump", - "aliases": [ - "fuelpump" - ], - "tags": [] - }, - { - "emojiChar": "🏮", - "emoji": "\uD83C\uDFEE", - "description": "izakaya lantern", - "aliases": [ - "izakaya_lantern", - "lantern" - ], - "tags": [] - }, - { - "emojiChar": "🎰", - "emoji": "\uD83C\uDFB0", - "description": "slot machine", - "aliases": [ - "slot_machine" - ], - "tags": [] - }, - { - "emojiChar": "♨", - "emoji": "\u2668", - "description": "hot springs", - "aliases": [ - "hotsprings" - ], - "tags": [] - }, - { - "emojiChar": "🗿", - "emoji": "\uD83D\uDDFF", - "description": "moyai", - "aliases": [ - "moyai" - ], - "tags": [ - "stone" - ] - }, - { - "emojiChar": "🎪", - "emoji": "\uD83C\uDFAA", - "description": "circus tent", - "aliases": [ - "circus_tent" - ], - "tags": [] - }, - { - "emojiChar": "🎭", - "emoji": "\uD83C\uDFAD", - "description": "performing arts", - "aliases": [ - "performing_arts" - ], - "tags": [ - "theater", - "drama" - ] - }, - { - "emojiChar": "📍", - "emoji": "\uD83D\uDCCD", - "description": "round pushpin", - "aliases": [ - "round_pushpin" - ], - "tags": [ - "location" - ] - }, - { - "emojiChar": "🚩", - "emoji": "\uD83D\uDEA9", - "description": "triangular flag on post", - "aliases": [ - "triangular_flag_on_post" - ], - "tags": [] - }, - { - "emojiChar": "1⃣", - "emoji": "1\u20E3", - "description": "digit one + combining enclosing keycap", - "aliases": [ - "one" - ], - "tags": [] - }, - { - "emojiChar": "2⃣", - "emoji": "2\u20E3", - "description": "digit two + combining enclosing keycap", - "aliases": [ - "two" - ], - "tags": [] - }, - { - "emojiChar": "3⃣", - "emoji": "3\u20E3", - "description": "digit three + combining enclosing keycap", - "aliases": [ - "three" - ], - "tags": [] - }, - { - "emojiChar": "4⃣", - "emoji": "4\u20E3", - "description": "digit four + combining enclosing keycap", - "aliases": [ - "four" - ], - "tags": [] - }, - { - "emojiChar": "5⃣", - "emoji": "5\u20E3", - "description": "digit five + combining enclosing keycap", - "aliases": [ - "five" - ], - "tags": [] - }, - { - "emojiChar": "6⃣", - "emoji": "6\u20E3", - "description": "digit six + combining enclosing keycap", - "aliases": [ - "six" - ], - "tags": [] - }, - { - "emojiChar": "7⃣", - "emoji": "7\u20E3", - "description": "digit seven + combining enclosing keycap", - "aliases": [ - "seven" - ], - "tags": [] - }, - { - "emojiChar": "8⃣", - "emoji": "8\u20E3", - "description": "digit eight + combining enclosing keycap", - "aliases": [ - "eight" - ], - "tags": [] - }, - { - "emojiChar": "9⃣", - "emoji": "9\u20E3", - "description": "digit nine + combining enclosing keycap", - "aliases": [ - "nine" - ], - "tags": [] - }, - { - "emojiChar": "0⃣", - "emoji": "0\u20E3", - "description": "digit zero + combining enclosing keycap", - "aliases": [ - "zero" - ], - "tags": [] - }, - { - "emojiChar": "🔟", - "emoji": "\uD83D\uDD1F", - "description": "keycap ten", - "aliases": [ - "keycap_ten" - ], - "tags": [] - }, - { - "emojiChar": "🔢", - "emoji": "\uD83D\uDD22", - "description": "input symbol for numbers", - "aliases": [ - "1234" - ], - "tags": [ - "numbers" - ] - }, - { - "emojiChar": "#⃣", - "emoji": "#\u20E3", - "description": "number sign + combining enclosing keycap", - "aliases": [ - "hash" - ], - "tags": [ - "number" - ] - }, - { - "emojiChar": "🔣", - "emoji": "\uD83D\uDD23", - "description": "input symbol for symbols", - "aliases": [ - "symbols" - ], - "tags": [] - }, - { - "emojiChar": "⬆", - "emoji": "\u2B06", - "description": "upwards black arrow", - "aliases": [ - "arrow_up" - ], - "tags": [] - }, - { - "emojiChar": "⬇", - "emoji": "\u2B07", - "description": "downwards black arrow", - "aliases": [ - "arrow_down" - ], - "tags": [] - }, - { - "emojiChar": "⬅", - "emoji": "\u2B05", - "description": "leftwards black arrow", - "aliases": [ - "arrow_left" - ], - "tags": [] - }, - { - "emojiChar": "➡", - "emoji": "\u27A1", - "description": "black rightwards arrow", - "aliases": [ - "arrow_right" - ], - "tags": [] - }, - { - "emojiChar": "🔠", - "emoji": "\uD83D\uDD20", - "description": "input symbol for latin capital letters", - "aliases": [ - "capital_abcd" - ], - "tags": [ - "letters" - ] - }, - { - "emojiChar": "🔡", - "emoji": "\uD83D\uDD21", - "description": "input symbol for latin small letters", - "aliases": [ - "abcd" - ], - "tags": [] - }, - { - "emojiChar": "🔤", - "emoji": "\uD83D\uDD24", - "description": "input symbol for latin letters", - "aliases": [ - "abc" - ], - "tags": [ - "alphabet" - ] - }, - { - "emojiChar": "↗", - "emoji": "\u2197", - "description": "north east arrow", - "aliases": [ - "arrow_upper_right" - ], - "tags": [] - }, - { - "emojiChar": "↖", - "emoji": "\u2196", - "description": "north west arrow", - "aliases": [ - "arrow_upper_left" - ], - "tags": [] - }, - { - "emojiChar": "↘", - "emoji": "\u2198", - "description": "south east arrow", - "aliases": [ - "arrow_lower_right" - ], - "tags": [] - }, - { - "emojiChar": "↙", - "emoji": "\u2199", - "description": "south west arrow", - "aliases": [ - "arrow_lower_left" - ], - "tags": [] - }, - { - "emojiChar": "↔", - "emoji": "\u2194", - "description": "left right arrow", - "aliases": [ - "left_right_arrow" - ], - "tags": [] - }, - { - "emojiChar": "↕", - "emoji": "\u2195", - "description": "up down arrow", - "aliases": [ - "arrow_up_down" - ], - "tags": [] - }, - { - "emojiChar": "🔄", - "emoji": "\uD83D\uDD04", - "description": "anticlockwise downwards and upwards open circle arrows", - "aliases": [ - "arrows_counterclockwise" - ], - "tags": [ - "sync" - ] - }, - { - "emojiChar": "◀", - "emoji": "\u25C0", - "description": "black left-pointing triangle", - "aliases": [ - "arrow_backward" - ], - "tags": [] - }, - { - "emojiChar": "▶", - "emoji": "\u25B6", - "description": "black right-pointing triangle", - "aliases": [ - "arrow_forward" - ], - "tags": [] - }, - { - "emojiChar": "🔼", - "emoji": "\uD83D\uDD3C", - "description": "up-pointing small red triangle", - "aliases": [ - "arrow_up_small" - ], - "tags": [] - }, - { - "emojiChar": "🔽", - "emoji": "\uD83D\uDD3D", - "description": "down-pointing small red triangle", - "aliases": [ - "arrow_down_small" - ], - "tags": [] - }, - { - "emojiChar": "↩", - "emoji": "\u21A9", - "description": "leftwards arrow with hook", - "aliases": [ - "leftwards_arrow_with_hook" - ], - "tags": [ - "return" - ] - }, - { - "emojiChar": "↪", - "emoji": "\u21AA", - "description": "rightwards arrow with hook", - "aliases": [ - "arrow_right_hook" - ], - "tags": [] - }, - { - "emojiChar": "ℹ", - "emoji": "\u2139", - "description": "information source", - "aliases": [ - "information_source" - ], - "tags": [] - }, - { - "emojiChar": "⏪", - "emoji": "\u23EA", - "description": "black left-pointing double triangle", - "aliases": [ - "rewind" - ], - "tags": [] - }, - { - "emojiChar": "⏊", - "emoji": "\u23E9", - "description": "black right-pointing double triangle", - "aliases": [ - "fast_forward" - ], - "tags": [] - }, - { - "emojiChar": "⏫", - "emoji": "\u23EB", - "description": "black up-pointing double triangle", - "aliases": [ - "arrow_double_up" - ], - "tags": [] - }, - { - "emojiChar": "⏬", - "emoji": "\u23EC", - "description": "black down-pointing double triangle", - "aliases": [ - "arrow_double_down" - ], - "tags": [] - }, - { - "emojiChar": "⤾", - "emoji": "\u2935", - "description": "arrow pointing rightwards then curving downwards", - "aliases": [ - "arrow_heading_down" - ], - "tags": [] - }, - { - "emojiChar": "⤴", - "emoji": "\u2934", - "description": "arrow pointing rightwards then curving upwards", - "aliases": [ - "arrow_heading_up" - ], - "tags": [] - }, - { - "emojiChar": "🆗", - "emoji": "\uD83C\uDD97", - "description": "squared ok", - "aliases": [ - "ok" - ], - "tags": [ - "yes" - ] - }, - { - "emojiChar": "🔀", - "emoji": "\uD83D\uDD00", - "description": "twisted rightwards arrows", - "aliases": [ - "twisted_rightwards_arrows" - ], - "tags": [ - "shuffle" - ] - }, - { - "emojiChar": "🔁", - "emoji": "\uD83D\uDD01", - "description": "clockwise rightwards and leftwards open circle arrows", - "aliases": [ - "repeat" - ], - "tags": [ - "loop" - ] - }, - { - "emojiChar": "🔂", - "emoji": "\uD83D\uDD02", - "description": "clockwise rightwards and leftwards open circle arrows with circled one overlay", - "aliases": [ - "repeat_one" - ], - "tags": [] - }, - { - "emojiChar": "🆕", - "emoji": "\uD83C\uDD95", - "description": "squared new", - "aliases": [ - "new" - ], - "tags": [ - "fresh" - ] - }, - { - "emojiChar": "🆙", - "emoji": "\uD83C\uDD99", - "description": "squared up with exclamation mark", - "aliases": [ - "up" - ], - "tags": [] - }, - { - "emojiChar": "🆒", - "emoji": "\uD83C\uDD92", - "description": "squared cool", - "aliases": [ - "cool" - ], - "tags": [] - }, - { - "emojiChar": "🆓", - "emoji": "\uD83C\uDD93", - "description": "squared free", - "aliases": [ - "free" - ], - "tags": [] - }, - { - "emojiChar": "🆖", - "emoji": "\uD83C\uDD96", - "description": "squared ng", - "aliases": [ - "squared_ng" - ], - "tags": [] - }, - { - "emojiChar": "📶", - "emoji": "\uD83D\uDCF6", - "description": "antenna with bars", - "aliases": [ - "signal_strength" - ], - "tags": [ - "wifi" - ] - }, - { - "emojiChar": "🎦", - "emoji": "\uD83C\uDFA6", - "description": "cinema", - "aliases": [ - "cinema" - ], - "tags": [ - "film", - "movie" - ] - }, - { - "emojiChar": "🈁", - "emoji": "\uD83C\uDE01", - "description": "squared katakana koko", - "aliases": [ - "koko" - ], - "tags": [] - }, - { - "emojiChar": "🈯", - "emoji": "\uD83C\uDE2F", - "description": "squared cjk unified ideograph-6307", - "aliases": [ - "u6307" - ], - "tags": [] - }, - { - "emojiChar": "🈳", - "emoji": "\uD83C\uDE33", - "description": "squared cjk unified ideograph-7a7a", - "aliases": [ - "u7a7a" - ], - "tags": [] - }, - { - "emojiChar": "🈵", - "emoji": "\uD83C\uDE35", - "description": "squared cjk unified ideograph-6e80", - "aliases": [ - "u6e80" - ], - "tags": [] - }, - { - "emojiChar": "🈴", - "emoji": "\uD83C\uDE34", - "description": "squared cjk unified ideograph-5408", - "aliases": [ - "u5408" - ], - "tags": [] - }, - { - "emojiChar": "🈲", - "emoji": "\uD83C\uDE32", - "description": "squared cjk unified ideograph-7981", - "aliases": [ - "u7981" - ], - "tags": [] - }, - { - "emojiChar": "🉐", - "emoji": "\uD83C\uDE50", - "description": "circled ideograph advantage", - "aliases": [ - "ideograph_advantage" - ], - "tags": [] - }, - { - "emojiChar": "🈹", - "emoji": "\uD83C\uDE39", - "description": "squared cjk unified ideograph-5272", - "aliases": [ - "u5272" - ], - "tags": [] - }, - { - "emojiChar": "🈺", - "emoji": "\uD83C\uDE3A", - "description": "squared cjk unified ideograph-55b6", - "aliases": [ - "u55b6" - ], - "tags": [] - }, - { - "emojiChar": "🈶", - "emoji": "\uD83C\uDE36", - "description": "squared cjk unified ideograph-6709", - "aliases": [ - "u6709" - ], - "tags": [] - }, - { - "emojiChar": "🈚", - "emoji": "\uD83C\uDE1A", - "description": "squared cjk unified ideograph-7121", - "aliases": [ - "u7121" - ], - "tags": [] - }, - { - "emojiChar": "🚻", - "emoji": "\uD83D\uDEBB", - "description": "restroom", - "aliases": [ - "restroom" - ], - "tags": [ - "toilet" - ] - }, - { - "emojiChar": "🚹", - "emoji": "\uD83D\uDEB9", - "description": "mens symbol", - "aliases": [ - "mens" - ], - "tags": [] - }, - { - "emojiChar": "🚺", - "emoji": "\uD83D\uDEBA", - "description": "womens symbol", - "aliases": [ - "womens" - ], - "tags": [] - }, - { - "emojiChar": "🚼", - "emoji": "\uD83D\uDEBC", - "description": "baby symbol", - "aliases": [ - "baby_symbol" - ], - "tags": [] - }, - { - "emojiChar": "🚾", - "emoji": "\uD83D\uDEBE", - "description": "water closet", - "aliases": [ - "wc" - ], - "tags": [ - "toilet", - "restroom" - ] - }, - { - "emojiChar": "🚰", - "emoji": "\uD83D\uDEB0", - "description": "potable water symbol", - "aliases": [ - "potable_water" - ], - "tags": [] - }, - { - "emojiChar": "🚮", - "emoji": "\uD83D\uDEAE", - "description": "put litter in its place symbol", - "aliases": [ - "put_litter_in_its_place" - ], - "tags": [] - }, - { - "emojiChar": "🅿", - "emoji": "\uD83C\uDD7F", - "description": "negative squared latin capital letter p", - "aliases": [ - "parking" - ], - "tags": [] - }, - { - "emojiChar": "♿", - "emoji": "\u267F", - "description": "wheelchair symbol", - "aliases": [ - "wheelchair" - ], - "tags": [ - "accessibility" - ] - }, - { - "emojiChar": "🚭", - "emoji": "\uD83D\uDEAD", - "description": "no smoking symbol", - "aliases": [ - "no_smoking" - ], - "tags": [] - }, - { - "emojiChar": "🈷", - "emoji": "\uD83C\uDE37", - "description": "squared cjk unified ideograph-6708", - "aliases": [ - "u6708" - ], - "tags": [] - }, - { - "emojiChar": "🈸", - "emoji": "\uD83C\uDE38", - "description": "squared cjk unified ideograph-7533", - "aliases": [ - "u7533" - ], - "tags": [] - }, - { - "emojiChar": "🈂", - "emoji": "\uD83C\uDE02", - "description": "squared katakana sa", - "aliases": [ - "sa" - ], - "tags": [] - }, - { - "emojiChar": "Ⓜ", - "emoji": "\u24C2", - "description": "circled latin capital letter m", - "aliases": [ - "m" - ], - "tags": [] - }, - { - "emojiChar": "🛂", - "emoji": "\uD83D\uDEC2", - "description": "passport control", - "aliases": [ - "passport_control" - ], - "tags": [] - }, - { - "emojiChar": "🛄", - "emoji": "\uD83D\uDEC4", - "description": "baggage claim", - "aliases": [ - "baggage_claim" - ], - "tags": [ - "airport" - ] - }, - { - "emojiChar": "🛅", - "emoji": "\uD83D\uDEC5", - "description": "left luggage", - "aliases": [ - "left_luggage" - ], - "tags": [] - }, - { - "emojiChar": "🛃", - "emoji": "\uD83D\uDEC3", - "description": "customs", - "aliases": [ - "customs" - ], - "tags": [] - }, - { - "emojiChar": "🉑", - "emoji": "\uD83C\uDE51", - "description": "circled ideograph accept", - "aliases": [ - "accept" - ], - "tags": [] - }, - { - "emojiChar": "㊙", - "emoji": "\u3299", - "description": "circled ideograph secret", - "aliases": [ - "secret" - ], - "tags": [] - }, - { - "emojiChar": "㊗", - "emoji": "\u3297", - "description": "circled ideograph congratulation", - "aliases": [ - "congratulations" - ], - "tags": [] - }, - { - "emojiChar": "🆑", - "emoji": "\uD83C\uDD91", - "description": "squared cl", - "aliases": [ - "cl" - ], - "tags": [] - }, - { - "emojiChar": "🆘", - "emoji": "\uD83C\uDD98", - "description": "squared sos", - "aliases": [ - "sos" - ], - "tags": [ - "help", - "emergency" - ] - }, - { - "emojiChar": "🆔", - "emoji": "\uD83C\uDD94", - "description": "squared id", - "aliases": [ - "id" - ], - "tags": [] - }, - { - "emojiChar": "🚫", - "emoji": "\uD83D\uDEAB", - "description": "no entry sign", - "aliases": [ - "no_entry_sign" - ], - "tags": [ - "block", - "forbidden" - ] - }, - { - "emojiChar": "🔞", - "emoji": "\uD83D\uDD1E", - "description": "no one under eighteen symbol", - "aliases": [ - "underage" - ], - "tags": [] - }, - { - "emojiChar": "📵", - "emoji": "\uD83D\uDCF5", - "description": "no mobile phones", - "aliases": [ - "no_mobile_phones" - ], - "tags": [] - }, - { - "emojiChar": "🚯", - "emoji": "\uD83D\uDEAF", - "description": "do not litter symbol", - "aliases": [ - "do_not_litter" - ], - "tags": [] - }, - { - "emojiChar": "🚱", - "emoji": "\uD83D\uDEB1", - "description": "non-potable water symbol", - "aliases": [ - "non-potable_water" - ], - "tags": [] - }, - { - "emojiChar": "🚳", - "emoji": "\uD83D\uDEB3", - "description": "no bicycles", - "aliases": [ - "no_bicycles" - ], - "tags": [] - }, - { - "emojiChar": "🚷", - "emoji": "\uD83D\uDEB7", - "description": "no pedestrians", - "aliases": [ - "no_pedestrians" - ], - "tags": [] - }, - { - "emojiChar": "🚸", - "emoji": "\uD83D\uDEB8", - "description": "children crossing", - "aliases": [ - "children_crossing" - ], - "tags": [] - }, - { - "emojiChar": "⛔", - "emoji": "\u26D4", - "description": "no entry", - "aliases": [ - "no_entry" - ], - "tags": [ - "limit" - ] - }, - { - "emojiChar": "✳", - "emoji": "\u2733", - "description": "eight spoked asterisk", - "aliases": [ - "eight_spoked_asterisk" - ], - "tags": [] - }, - { - "emojiChar": "❇", - "emoji": "\u2747", - "description": "sparkle", - "aliases": [ - "sparkle" - ], - "tags": [] - }, - { - "emojiChar": "❎", - "emoji": "\u274E", - "description": "negative squared cross mark", - "aliases": [ - "negative_squared_cross_mark" - ], - "tags": [] - }, - { - "emojiChar": "✅", - "emoji": "\u2705", - "description": "white heavy check mark", - "aliases": [ - "white_check_mark" - ], - "tags": [] - }, - { - "emojiChar": "✴", - "emoji": "\u2734", - "description": "eight pointed black star", - "aliases": [ - "eight_pointed_black_star" - ], - "tags": [] - }, - { - "emojiChar": "💟", - "emoji": "\uD83D\uDC9F", - "description": "heart decoration", - "aliases": [ - "heart_decoration" - ], - "tags": [] - }, - { - "emojiChar": "🆚", - "emoji": "\uD83C\uDD9A", - "description": "squared vs", - "aliases": [ - "vs" - ], - "tags": [] - }, - { - "emojiChar": "📳", - "emoji": "\uD83D\uDCF3", - "description": "vibration mode", - "aliases": [ - "vibration_mode" - ], - "tags": [] - }, - { - "emojiChar": "📴", - "emoji": "\uD83D\uDCF4", - "description": "mobile phone off", - "aliases": [ - "mobile_phone_off" - ], - "tags": [ - "mute", - "off" - ] - }, - { - "emojiChar": "🅰", - "emoji": "\uD83C\uDD70", - "description": "negative squared latin capital letter a", - "aliases": [ - "a" - ], - "tags": [] - }, - { - "emojiChar": "🅱", - "emoji": "\uD83C\uDD71", - "description": "negative squared latin capital letter b", - "aliases": [ - "b" - ], - "tags": [] - }, - { - "emojiChar": "🆎", - "emoji": "\uD83C\uDD8E", - "description": "negative squared ab", - "aliases": [ - "ab" - ], - "tags": [] - }, - { - "emojiChar": "🅾", - "emoji": "\uD83C\uDD7E", - "description": "negative squared latin capital letter o", - "aliases": [ - "o2" - ], - "tags": [] - }, - { - "emojiChar": "💠", - "emoji": "\uD83D\uDCA0", - "description": "diamond shape with a dot inside", - "aliases": [ - "diamond_shape_with_a_dot_inside" - ], - "tags": [] - }, - { - "emojiChar": "➿", - "emoji": "\u27BF", - "description": "double curly loop", - "aliases": [ - "loop" - ], - "tags": [] - }, - { - "emojiChar": "♻", - "emoji": "\u267B", - "description": "black universal recycling symbol", - "aliases": [ - "recycle" - ], - "tags": [ - "environment", - "green" - ] - }, - { - "emojiChar": "♈", - "emoji": "\u2648", - "description": "aries", - "aliases": [ - "aries" - ], - "tags": [] - }, - { - "emojiChar": "♉", - "emoji": "\u2649", - "description": "taurus", - "aliases": [ - "taurus" - ], - "tags": [] - }, - { - "emojiChar": "♊", - "emoji": "\u264A", - "description": "gemini", - "aliases": [ - "gemini" - ], - "tags": [] - }, - { - "emojiChar": "♋", - "emoji": "\u264B", - "description": "cancer", - "aliases": [ - "cancer" - ], - "tags": [] - }, - { - "emojiChar": "♌", - "emoji": "\u264C", - "description": "leo", - "aliases": [ - "leo" - ], - "tags": [] - }, - { - "emojiChar": "♍", - "emoji": "\u264D", - "description": "virgo", - "aliases": [ - "virgo" - ], - "tags": [] - }, - { - "emojiChar": "♎", - "emoji": "\u264E", - "description": "libra", - "aliases": [ - "libra" - ], - "tags": [] - }, - { - "emojiChar": "♏", - "emoji": "\u264F", - "description": "scorpius", - "aliases": [ - "scorpius" - ], - "tags": [] - }, - { - "emojiChar": "♐", - "emoji": "\u2650", - "description": "sagittarius", - "aliases": [ - "sagittarius" - ], - "tags": [] - }, - { - "emojiChar": "♑", - "emoji": "\u2651", - "description": "capricorn", - "aliases": [ - "capricorn" - ], - "tags": [] - }, - { - "emojiChar": "♒", - "emoji": "\u2652", - "description": "aquarius", - "aliases": [ - "aquarius" - ], - "tags": [] - }, - { - "emojiChar": "♓", - "emoji": "\u2653", - "description": "pisces", - "aliases": [ - "pisces" - ], - "tags": [] - }, - { - "emojiChar": "⛎", - "emoji": "\u26CE", - "description": "ophiuchus", - "aliases": [ - "ophiuchus" - ], - "tags": [] - }, - { - "emojiChar": "🔯", - "emoji": "\uD83D\uDD2F", - "description": "six pointed star with middle dot", - "aliases": [ - "six_pointed_star" - ], - "tags": [] - }, - { - "emojiChar": "🏧", - "emoji": "\uD83C\uDFE7", - "description": "automated teller machine", - "aliases": [ - "atm" - ], - "tags": [] - }, - { - "emojiChar": "💹", - "emoji": "\uD83D\uDCB9", - "description": "chart with upwards trend and yen sign", - "aliases": [ - "chart" - ], - "tags": [] - }, - { - "emojiChar": "💲", - "emoji": "\uD83D\uDCB2", - "description": "heavy dollar sign", - "aliases": [ - "heavy_dollar_sign" - ], - "tags": [] - }, - { - "emojiChar": "💱", - "emoji": "\uD83D\uDCB1", - "description": "currency exchange", - "aliases": [ - "currency_exchange" - ], - "tags": [] - }, - { - "emojiChar": "Š", - "emoji": "\u00A9", - "description": "copyright sign", - "aliases": [ - "copyright" - ], - "tags": [] - }, - { - "emojiChar": "ÂŽ", - "emoji": "\u00AE", - "description": "registered sign", - "aliases": [ - "registered" - ], - "tags": [] - }, - { - "emojiChar": "™", - "emoji": "\u2122", - "description": "trade mark sign", - "aliases": [ - "tm" - ], - "tags": [ - "trademark" - ] - }, - { - "emojiChar": "❌", - "emoji": "\u274C", - "description": "cross mark", - "aliases": [ - "x" - ], - "tags": [] - }, - { - "emojiChar": "‼", - "emoji": "\u203C", - "description": "double exclamation mark", - "aliases": [ - "bangbang" - ], - "tags": [] - }, - { - "emojiChar": "⁉", - "emoji": "\u2049", - "description": "exclamation question mark", - "aliases": [ - "interrobang" - ], - "tags": [] - }, - { - "emojiChar": "❗", - "emoji": "\u2757", - "description": "heavy exclamation mark symbol", - "aliases": [ - "exclamation", - "heavy_exclamation_mark" - ], - "tags": [ - "bang" - ] - }, - { - "emojiChar": "❓", - "emoji": "\u2753", - "description": "black question mark ornament", - "aliases": [ - "question" - ], - "tags": [ - "confused" - ] - }, - { - "emojiChar": "❕", - "emoji": "\u2755", - "description": "white exclamation mark ornament", - "aliases": [ - "grey_exclamation" - ], - "tags": [] - }, - { - "emojiChar": "❔", - "emoji": "\u2754", - "description": "white question mark ornament", - "aliases": [ - "grey_question" - ], - "tags": [] - }, - { - "emojiChar": "⭕", - "emoji": "\u2B55", - "description": "heavy large circle", - "aliases": [ - "o" - ], - "tags": [] - }, - { - "emojiChar": "🔝", - "emoji": "\uD83D\uDD1D", - "description": "top with upwards arrow above", - "aliases": [ - "top" - ], - "tags": [] - }, - { - "emojiChar": "🔚", - "emoji": "\uD83D\uDD1A", - "description": "end with leftwards arrow above", - "aliases": [ - "end" - ], - "tags": [] - }, - { - "emojiChar": "🔙", - "emoji": "\uD83D\uDD19", - "description": "back with leftwards arrow above", - "aliases": [ - "back" - ], - "tags": [] - }, - { - "emojiChar": "🔛", - "emoji": "\uD83D\uDD1B", - "description": "on with exclamation mark with left right arrow above", - "aliases": [ - "on" - ], - "tags": [] - }, - { - "emojiChar": "🔜", - "emoji": "\uD83D\uDD1C", - "description": "soon with rightwards arrow above", - "aliases": [ - "soon" - ], - "tags": [] - }, - { - "emojiChar": "🔃", - "emoji": "\uD83D\uDD03", - "description": "clockwise downwards and upwards open circle arrows", - "aliases": [ - "arrows_clockwise" - ], - "tags": [] - }, - { - "emojiChar": "🕛", - "emoji": "\uD83D\uDD5B", - "description": "clock face twelve oclock", - "aliases": [ - "clock12" - ], - "tags": [] - }, - { - "emojiChar": "🕧", - "emoji": "\uD83D\uDD67", - "description": "clock face twelve-thirty", - "aliases": [ - "clock1230" - ], - "tags": [] - }, - { - "emojiChar": "🕐", - "emoji": "\uD83D\uDD50", - "description": "clock face one oclock", - "aliases": [ - "clock1" - ], - "tags": [] - }, - { - "emojiChar": "🕜", - "emoji": "\uD83D\uDD5C", - "description": "clock face one-thirty", - "aliases": [ - "clock130" - ], - "tags": [] - }, - { - "emojiChar": "🕑", - "emoji": "\uD83D\uDD51", - "description": "clock face two oclock", - "aliases": [ - "clock2" - ], - "tags": [] - }, - { - "emojiChar": "🕝", - "emoji": "\uD83D\uDD5D", - "description": "clock face two-thirty", - "aliases": [ - "clock230" - ], - "tags": [] - }, - { - "emojiChar": "🕒", - "emoji": "\uD83D\uDD52", - "description": "clock face three oclock", - "aliases": [ - "clock3" - ], - "tags": [] - }, - { - "emojiChar": "🕞", - "emoji": "\uD83D\uDD5E", - "description": "clock face three-thirty", - "aliases": [ - "clock330" - ], - "tags": [] - }, - { - "emojiChar": "🕓", - "emoji": "\uD83D\uDD53", - "description": "clock face four oclock", - "aliases": [ - "clock4" - ], - "tags": [] - }, - { - "emojiChar": "🕟", - "emoji": "\uD83D\uDD5F", - "description": "clock face four-thirty", - "aliases": [ - "clock430" - ], - "tags": [] - }, - { - "emojiChar": "🕔", - "emoji": "\uD83D\uDD54", - "description": "clock face five oclock", - "aliases": [ - "clock5" - ], - "tags": [] - }, - { - "emojiChar": "🕠", - "emoji": "\uD83D\uDD60", - "description": "clock face five-thirty", - "aliases": [ - "clock530" - ], - "tags": [] - }, - { - "emojiChar": "🕕", - "emoji": "\uD83D\uDD55", - "description": "clock face six oclock", - "aliases": [ - "clock6" - ], - "tags": [] - }, - { - "emojiChar": "🕖", - "emoji": "\uD83D\uDD56", - "description": "clock face seven oclock", - "aliases": [ - "clock7" - ], - "tags": [] - }, - { - "emojiChar": "🕗", - "emoji": "\uD83D\uDD57", - "description": "clock face eight oclock", - "aliases": [ - "clock8" - ], - "tags": [] - }, - { - "emojiChar": "🕘", - "emoji": "\uD83D\uDD58", - "description": "clock face nine oclock", - "aliases": [ - "clock9" - ], - "tags": [] - }, - { - "emojiChar": "🕙", - "emoji": "\uD83D\uDD59", - "description": "clock face ten oclock", - "aliases": [ - "clock10" - ], - "tags": [] - }, - { - "emojiChar": "🕚", - "emoji": "\uD83D\uDD5A", - "description": "clock face eleven oclock", - "aliases": [ - "clock11" - ], - "tags": [] - }, - { - "emojiChar": "🕡", - "emoji": "\uD83D\uDD61", - "description": "clock face six-thirty", - "aliases": [ - "clock630" - ], - "tags": [] - }, - { - "emojiChar": "🕢", - "emoji": "\uD83D\uDD62", - "description": "clock face seven-thirty", - "aliases": [ - "clock730" - ], - "tags": [] - }, - { - "emojiChar": "🕣", - "emoji": "\uD83D\uDD63", - "description": "clock face eight-thirty", - "aliases": [ - "clock830" - ], - "tags": [] - }, - { - "emojiChar": "🕤", - "emoji": "\uD83D\uDD64", - "description": "clock face nine-thirty", - "aliases": [ - "clock930" - ], - "tags": [] - }, - { - "emojiChar": "🕥", - "emoji": "\uD83D\uDD65", - "description": "clock face ten-thirty", - "aliases": [ - "clock1030" - ], - "tags": [] - }, - { - "emojiChar": "🕦", - "emoji": "\uD83D\uDD66", - "description": "clock face eleven-thirty", - "aliases": [ - "clock1130" - ], - "tags": [] - }, - { - "emojiChar": "✖", - "emoji": "\u2716", - "description": "heavy multiplication x", - "aliases": [ - "heavy_multiplication_x" - ], - "tags": [] - }, - { - "emojiChar": "➕", - "emoji": "\u2795", - "description": "heavy plus sign", - "aliases": [ - "heavy_plus_sign" - ], - "tags": [] - }, - { - "emojiChar": "➖", - "emoji": "\u2796", - "description": "heavy minus sign", - "aliases": [ - "heavy_minus_sign" - ], - "tags": [] - }, - { - "emojiChar": "➗", - "emoji": "\u2797", - "description": "heavy division sign", - "aliases": [ - "heavy_division_sign" - ], - "tags": [] - }, - { - "emojiChar": "♠", - "emoji": "\u2660", - "description": "black spade suit", - "aliases": [ - "spades" - ], - "tags": [] - }, - { - "emojiChar": "♥", - "emoji": "\u2665", - "description": "black heart suit", - "aliases": [ - "hearts" - ], - "tags": [] - }, - { - "emojiChar": "♣", - "emoji": "\u2663", - "description": "black club suit", - "aliases": [ - "clubs" - ], - "tags": [] - }, - { - "emojiChar": "♦", - "emoji": "\u2666", - "description": "black diamond suit", - "aliases": [ - "diamonds" - ], - "tags": [] - }, - { - "emojiChar": "💮", - "emoji": "\uD83D\uDCAE", - "description": "white flower", - "aliases": [ - "white_flower" - ], - "tags": [] - }, - { - "emojiChar": "💯", - "emoji": "\uD83D\uDCAF", - "description": "hundred points symbol", - "aliases": [ - "100" - ], - "tags": [ - "score", - "perfect" - ] - }, - { - "emojiChar": "✔", - "emoji": "\u2714", - "description": "heavy check mark", - "aliases": [ - "heavy_check_mark" - ], - "tags": [] - }, - { - "emojiChar": "☑", - "emoji": "\u2611", - "description": "ballot box with check", - "aliases": [ - "ballot_box_with_check" - ], - "tags": [] - }, - { - "emojiChar": "🔘", - "emoji": "\uD83D\uDD18", - "description": "radio button", - "aliases": [ - "radio_button" - ], - "tags": [] - }, - { - "emojiChar": "🔗", - "emoji": "\uD83D\uDD17", - "description": "link symbol", - "aliases": [ - "link" - ], - "tags": [] - }, - { - "emojiChar": "➰", - "emoji": "\u27B0", - "description": "curly loop", - "aliases": [ - "curly_loop" - ], - "tags": [] - }, - { - "emojiChar": "〰", - "emoji": "\u3030", - "description": "wavy dash", - "aliases": [ - "wavy_dash" - ], - "tags": [] - }, - { - "emojiChar": "〽", - "emoji": "\u303D", - "description": "part alternation mark", - "aliases": [ - "part_alternation_mark" - ], - "tags": [] - }, - { - "emojiChar": "🔱", - "emoji": "\uD83D\uDD31", - "description": "trident emblem", - "aliases": [ - "trident" - ], - "tags": [] - }, - { - "emojiChar": "◼", - "emoji": "\u25FC", - "description": "black medium square", - "aliases": [ - "black_medium_square" - ], - "tags": [] - }, - { - "emojiChar": "◻", - "emoji": "\u25FB", - "description": "white medium square", - "aliases": [ - "white_medium_square" - ], - "tags": [] - }, - { - "emojiChar": "◾", - "emoji": "\u25FE", - "description": "black medium small square", - "aliases": [ - "black_medium_small_square" - ], - "tags": [] - }, - { - "emojiChar": "◽", - "emoji": "\u25FD", - "description": "white medium small square", - "aliases": [ - "white_medium_small_square" - ], - "tags": [] - }, - { - "emojiChar": "▪", - "emoji": "\u25AA", - "description": "black small square", - "aliases": [ - "black_small_square" - ], - "tags": [] - }, - { - "emojiChar": "▫", - "emoji": "\u25AB", - "description": "white small square", - "aliases": [ - "white_small_square" - ], - "tags": [] - }, - { - "emojiChar": "🔺", - "emoji": "\uD83D\uDD3A", - "description": "up-pointing red triangle", - "aliases": [ - "small_red_triangle" - ], - "tags": [] - }, - { - "emojiChar": "🔲", - "emoji": "\uD83D\uDD32", - "description": "black square button", - "aliases": [ - "black_square_button" - ], - "tags": [] - }, - { - "emojiChar": "🔳", - "emoji": "\uD83D\uDD33", - "description": "white square button", - "aliases": [ - "white_square_button" - ], - "tags": [] - }, - { - "emojiChar": "⚫", - "emoji": "\u26AB", - "description": "medium black circle", - "aliases": [ - "black_circle" - ], - "tags": [] - }, - { - "emojiChar": "⚪", - "emoji": "\u26AA", - "description": "medium white circle", - "aliases": [ - "white_circle" - ], - "tags": [] - }, - { - "emojiChar": "🔴", - "emoji": "\uD83D\uDD34", - "description": "large red circle", - "aliases": [ - "red_circle" - ], - "tags": [] - }, - { - "emojiChar": "🔵", - "emoji": "\uD83D\uDD35", - "description": "large blue circle", - "aliases": [ - "large_blue_circle" - ], - "tags": [] - }, - { - "emojiChar": "🔻", - "emoji": "\uD83D\uDD3B", - "description": "down-pointing red triangle", - "aliases": [ - "small_red_triangle_down" - ], - "tags": [] - }, - { - "emojiChar": "⬜", - "emoji": "\u2B1C", - "description": "white large square", - "aliases": [ - "white_large_square" - ], - "tags": [] - }, - { - "emojiChar": "⬛", - "emoji": "\u2B1B", - "description": "black large square", - "aliases": [ - "black_large_square" - ], - "tags": [] - }, - { - "emojiChar": "🔶", - "emoji": "\uD83D\uDD36", - "description": "large orange diamond", - "aliases": [ - "large_orange_diamond" - ], - "tags": [] - }, - { - "emojiChar": "🔷", - "emoji": "\uD83D\uDD37", - "description": "large blue diamond", - "aliases": [ - "large_blue_diamond" - ], - "tags": [] - }, - { - "emojiChar": "🔸", - "emoji": "\uD83D\uDD38", - "description": "small orange diamond", - "aliases": [ - "small_orange_diamond" - ], - "tags": [] - }, - { - "emojiChar": "🔹", - "emoji": "\uD83D\uDD39", - "description": "small blue diamond", - "aliases": [ - "small_blue_diamond" - ], - "tags": [] - }, - { - "emojiChar": "🇦", - "emoji": "\uD83C\uDDE6", - "description": "regional indicator symbol letter a", - "aliases": [ - "regional_indicator_symbol_a" - ], - "tags": [ - "letter", - "a" - ] - }, - { - "emojiChar": "🇧", - "emoji": "\uD83C\uDDE7", - "description": "regional indicator symbol letter b", - "aliases": [ - "regional_indicator_symbol_b" - ], - "tags": [ - "letter", - "b" - ] - }, - { - "emojiChar": "🇨", - "emoji": "\uD83C\uDDE8", - "description": "regional indicator symbol letter c", - "aliases": [ - "regional_indicator_symbol_c" - ], - "tags": [ - "letter", - "c" - ] - }, - { - "emojiChar": "🇩", - "emoji": "\uD83C\uDDE9", - "description": "regional indicator symbol letter d", - "aliases": [ - "regional_indicator_symbol_d" - ], - "tags": [ - "letter", - "d" - ] - }, - { - "emojiChar": "🇪", - "emoji": "\uD83C\uDDEA", - "description": "regional indicator symbol letter e", - "aliases": [ - "regional_indicator_symbol_e" - ], - "tags": [ - "letter", - "e" - ] - }, - { - "emojiChar": "🇫", - "emoji": "\uD83C\uDDEB", - "description": "regional indicator symbol letter f", - "aliases": [ - "regional_indicator_symbol_f" - ], - "tags": [ - "letter", - "f" - ] - }, - { - "emojiChar": "🇬", - "emoji": "\uD83C\uDDEC", - "description": "regional indicator symbol letter g", - "aliases": [ - "regional_indicator_symbol_g" - ], - "tags": [ - "letter", - "g" - ] - }, - { - "emojiChar": "🇭", - "emoji": "\uD83C\uDDED", - "description": "regional indicator symbol letter h", - "aliases": [ - "regional_indicator_symbol_h" - ], - "tags": [ - "letter", - "h" - ] - }, - { - "emojiChar": "🇮", - "emoji": "\uD83C\uDDEE", - "description": "regional indicator symbol letter i", - "aliases": [ - "regional_indicator_symbol_i" - ], - "tags": [ - "letter", - "i" - ] - }, - { - "emojiChar": "🇯", - "emoji": "\uD83C\uDDEF", - "description": "regional indicator symbol letter j", - "aliases": [ - "regional_indicator_symbol_j" - ], - "tags": [ - "letter", - "j" - ] - }, - { - "emojiChar": "🇰", - "emoji": "\uD83C\uDDF0", - "description": "regional indicator symbol letter k", - "aliases": [ - "regional_indicator_symbol_k" - ], - "tags": [ - "letter", - "k" - ] - }, - { - "emojiChar": "🇱", - "emoji": "\uD83C\uDDF1", - "description": "regional indicator symbol letter l", - "aliases": [ - "regional_indicator_symbol_l" - ], - "tags": [ - "letter", - "l" - ] - }, - { - "emojiChar": "🇲", - "emoji": "\uD83C\uDDF2", - "description": "regional indicator symbol letter m", - "aliases": [ - "regional_indicator_symbol_m" - ], - "tags": [ - "letter", - "m" - ] - }, - { - "emojiChar": "🇳", - "emoji": "\uD83C\uDDF3", - "description": "regional indicator symbol letter n", - "aliases": [ - "regional_indicator_symbol_n" - ], - "tags": [ - "letter", - "n" - ] - }, - { - "emojiChar": "🇴", - "emoji": "\uD83C\uDDF4", - "description": "regional indicator symbol letter o", - "aliases": [ - "regional_indicator_symbol_o" - ], - "tags": [ - "letter", - "o" - ] - }, - { - "emojiChar": "🇵", - "emoji": "\uD83C\uDDF5", - "description": "regional indicator symbol letter p", - "aliases": [ - "regional_indicator_symbol_p" - ], - "tags": [ - "letter", - "p" - ] - }, - { - "emojiChar": "🇶", - "emoji": "\uD83C\uDDF6", - "description": "regional indicator symbol letter q", - "aliases": [ - "regional_indicator_symbol_q" - ], - "tags": [ - "letter", - "q" - ] - }, - { - "emojiChar": "🇷", - "emoji": "\uD83C\uDDF7", - "description": "regional indicator symbol letter r", - "aliases": [ - "regional_indicator_symbol_r" - ], - "tags": [ - "letter", - "r" - ] - }, - { - "emojiChar": "🇸", - "emoji": "\uD83C\uDDF8", - "description": "regional indicator symbol letter s", - "aliases": [ - "regional_indicator_symbol_s" - ], - "tags": [ - "letter", - "s" - ] - }, - { - "emojiChar": "🇹", - "emoji": "\uD83C\uDDF9", - "description": "regional indicator symbol letter t", - "aliases": [ - "regional_indicator_symbol_t" - ], - "tags": [ - "letter", - "t" - ] - }, - { - "emojiChar": "🇺", - "emoji": "\uD83C\uDDFA", - "description": "regional indicator symbol letter u", - "aliases": [ - "regional_indicator_symbol_u" - ], - "tags": [ - "letter", - "u" - ] - }, - { - "emojiChar": "🇻", - "emoji": "\uD83C\uDDFB", - "description": "regional indicator symbol letter v", - "aliases": [ - "regional_indicator_symbol_v" - ], - "tags": [ - "letter", - "v" - ] - }, - { - "emojiChar": "🇼", - "emoji": "\uD83C\uDDFC", - "description": "regional indicator symbol letter w", - "aliases": [ - "regional_indicator_symbol_w" - ], - "tags": [ - "letter", - "w" - ] - }, - { - "emojiChar": "🇽", - "emoji": "\uD83C\uDDFD", - "description": "regional indicator symbol letter x", - "aliases": [ - "regional_indicator_symbol_x" - ], - "tags": [ - "letter", - "x" - ] - }, - { - "emojiChar": "🇾", - "emoji": "\uD83C\uDDFE", - "description": "regional indicator symbol letter y", - "aliases": [ - "regional_indicator_symbol_y" - ], - "tags": [ - "letter", - "y" - ] - }, - { - "emojiChar": "🇿", - "emoji": "\uD83C\uDDFF", - "description": "regional indicator symbol letter z", - "aliases": [ - "regional_indicator_symbol_z" - ], - "tags": [ - "letter", - "z" - ] - }, - { - "emojiChar": "👨‍👩‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC66", - "description": "family (man, woman, boy)", - "aliases": [ - "family_man_woman_boy" - ], - "tags": [ - "family", - "man", - "woman", - "boy" - ] - }, - { - "emojiChar": "👨‍👩‍👧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC67", - "description": "family (man, woman, girl)", - "aliases": [ - "family_man_woman_girl" - ], - "tags": [ - "family", - "man", - "woman", - "girl" - ] - }, - { - "emojiChar": "👨‍👩‍👦‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66", - "description": "family (man, woman, boy, boy)", - "aliases": [ - "family_man_woman_boy_boy" - ], - "tags": [ - "family", - "man", - "woman", - "boy" - ] - }, - { - "emojiChar": "👨‍👩‍👧‍👧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67", - "description": "family (man, woman, girl, girl)", - "aliases": [ - "family_man_woman_girl_girl" - ], - "tags": [ - "family", - "man", - "woman", - "girl" - ] - }, - { - "emojiChar": "👨‍👩‍👧‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC66", - "description": "family (man, woman, girl, boy)", - "aliases": [ - "family_man_woman_girl_boy" - ], - "tags": [ - "family", - "man", - "woman", - "girl", - "boy" - ] - }, - { - "emojiChar": "👩‍👩‍👦", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC66", - "description": "family (woman, woman, boy)", - "aliases": [ - "family_woman_woman_boy" - ], - "tags": [ - "family", - "woman", - "boy" - ] - }, - { - "emojiChar": "👩‍👩‍👧", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67", - "description": "family (woman, woman, girl)", - "aliases": [ - "family_woman_woman_girl" - ], - "tags": [ - "family", - "woman", - "girl" - ] - }, - { - "emojiChar": "👩‍👩‍👧‍👦", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC66", - "description": "family (woman, woman, girl, boy)", - "aliases": [ - "family_woman_woman_girl_boy" - ], - "tags": [ - "family", - "woman", - "girl", - "boy" - ] - }, - { - "emojiChar": "👩‍👩‍👦‍👦", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66", - "description": "family (woman, woman, boy, boy)", - "aliases": [ - "family_woman_woman_boy_boy" - ], - "tags": [ - "family", - "woman", - "boy" - ] - }, - { - "emojiChar": "👩‍👩‍👧‍👧", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67", - "description": "family (woman, woman, girl, girl)", - "aliases": [ - "family_woman_woman_girl_girl" - ], - "tags": [ - "family", - "woman", - "girl" - ] - }, - { - "emojiChar": "👨‍👨‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC66", - "description": "family (man, man, boy)", - "aliases": [ - "family_man_man_boy" - ], - "tags": [ - "family", - "man", - "boy" - ] - }, - { - "emojiChar": "👨‍👨‍👧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC67", - "description": "family (man, man, girl)", - "aliases": [ - "family_man_man_girl" - ], - "tags": [ - "family", - "man", - "girl" - ] - }, - { - "emojiChar": "👨‍👨‍👧‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC67\u200D\uD83D\uDC66", - "description": "family (man, man, girl, boy)", - "aliases": [ - "family_man_man_girl_boy" - ], - "tags": [ - "family", - "man", - "girl", - "boy" - ] - }, - { - "emojiChar": "👨‍👨‍👦‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC66\u200D\uD83D\uDC66", - "description": "family (man, man, boy, boy)", - "aliases": [ - "family_man_man_boy_boy" - ], - "tags": [ - "family", - "man", - "boy" - ] - }, - { - "emojiChar": "👨‍👨‍👧‍👧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC67\u200D\uD83D\uDC67", - "description": "family (man, man, girl, girl)", - "aliases": [ - "family_man_man_girl_girl" - ], - "tags": [ - "family", - "man", - "girl" - ] - }, - { - "emojiChar": "👩‍❤️‍👩", - "emoji": "\uD83D\uDC69\u200D\u2764\uFE0F\u200D\uD83D\uDC69", - "description": "couple with heart (woman, woman)", - "aliases": [ - "couple_with_heart_woman_woman" - ], - "tags": [ - "couple", - "heart", - "woman" - ] - }, - { - "emojiChar": "👨‍❤️‍👨", - "emoji": "\uD83D\uDC68\u200D\u2764\uFE0F\u200D\uD83D\uDC68", - "description": "couple with heart (man, man)", - "aliases": [ - "couple_with_heart_man_man" - ], - "tags": [ - "couple", - "heart", - "man" - ] - }, - { - "emojiChar": "👩‍❤️‍💋‍👩", - "emoji": "\uD83D\uDC69\u200D\u2764\uFE0F\u200D\uD83D\uDC8B\u200D\uD83D\uDC69", - "description": "kiss (woman, woman)", - "aliases": [ - "couplekiss_woman_woman" - ], - "tags": [ - "couple", - "kiss", - "woman" - ] - }, - { - "emojiChar": "👨‍❤️‍💋‍👨", - "emoji": "\uD83D\uDC68\u200D\u2764\uFE0F\u200D\uD83D\uDC8B\u200D\uD83D\uDC68", - "description": "kiss (man, man)", - "aliases": [ - "couplekiss_man_man" - ], - "tags": [ - "couple", - "kiss", - "man" - ] - }, - { - "emojiChar": "🖖", - "emoji": "\uD83D\uDD96", - "description": "raised hand with part between middle and ring fingers", - "supports_fitzpatrick": true, - "aliases": [ - "vulcan_salute" - ], - "tags": [ - "vulcan", - "salute" - ] - }, - { - "emojiChar": "🖕", - "emoji": "\uD83D\uDD95", - "description": "reversed hand with middle finger extended", - "supports_fitzpatrick": true, - "aliases": [ - "middle_finger" - ], - "tags": [] - }, - { - "emojiChar": "🙂", - "emoji": "\uD83D\uDE42", - "description": "slightly smiling face", - "aliases": [ - "slightly_smiling", - "slight_smile" - ], - "tags": [] - }, - { - "emojiChar": "🤗", - "emoji": "\uD83E\uDD17", - "description": "hugging face", - "aliases": [ - "hugging", - "hug", - "hugs" - ], - "tags": [] - }, - { - "emojiChar": "🤔", - "emoji": "\uD83E\uDD14", - "description": "thinking face", - "aliases": [ - "thinking", - "think", - "thinker" - ], - "tags": [] - }, - { - "emojiChar": "🙄", - "emoji": "\uD83D\uDE44", - "description": "face with rolling eyes", - "aliases": [ - "eye_roll", - "rolling_eyes" - ], - "tags": [] - }, - { - "emojiChar": "🤐", - "emoji": "\uD83E\uDD10", - "description": "zipper-mouth face", - "aliases": [ - "zipper_mouth", - "zip_it", - "sealed_lips", - "lips_sealed" - ], - "tags": [] - }, - { - "emojiChar": "🤓", - "emoji": "\uD83E\uDD13", - "description": "nerd face", - "aliases": [ - "nerd", - "nerdy" - ], - "tags": [] - }, - { - "emojiChar": "☚", - "emoji": "\u2639", - "description": "white frowning face", - "aliases": [ - "frowning_face" - ], - "tags": [] - }, - { - "emojiChar": "🙁", - "emoji": "\uD83D\uDE41", - "description": "slightly frowning face", - "aliases": [ - "slightly_frowning" - ], - "tags": [] - }, - { - "emojiChar": "🙃", - "emoji": "\uD83D\uDE43", - "description": "upside-down face", - "aliases": [ - "upside_down", - "flipped_face" - ], - "tags": [] - }, - { - "emojiChar": "🤒", - "emoji": "\uD83E\uDD12", - "description": "face with thermometer", - "aliases": [ - "sick", - "ill", - "thermometer_face" - ], - "tags": [] - }, - { - "emojiChar": "🤕", - "emoji": "\uD83E\uDD15", - "description": "face with head bandage", - "aliases": [ - "injured", - "head_bandage", - "head_bandaged", - "bandaged" - ], - "tags": [] - }, - { - "emojiChar": "🤑", - "emoji": "\uD83E\uDD11", - "description": "money-mouth face", - "aliases": [ - "money_mouth", - "money_face" - ], - "tags": [] - }, - { - "emojiChar": "⛑", - "emoji": "\u26D1", - "description": "helmet with white crosse", - "aliases": [ - "helmet_white_cross" - ], - "tags": [] - }, - { - "emojiChar": "🕵", - "emoji": "\uD83D\uDD75", - "description": "sleuth or spy", - "supports_fitzpatrick": true, - "aliases": [ - "detective", - "sleuth", - "private_eye", - "spy" - ], - "tags": [] - }, - { - "emojiChar": "🗣", - "emoji": "\uD83D\uDDE3", - "description": "speaking head in silhouette", - "aliases": [ - "speaking_head_in_silhouette" - ], - "tags": [] - }, - { - "emojiChar": "🕴", - "emoji": "\uD83D\uDD74", - "description": "man in business suit levitating", - "supports_fitzpatrick": true, - "aliases": [ - "hovering_man", - "levitating_man" - ], - "tags": [] - }, - { - "emojiChar": "🤘", - "emoji": "\uD83E\uDD18", - "description": "sign of the horns", - "supports_fitzpatrick": true, - "aliases": [ - "horns_sign", - "rock_on", - "heavy_metal", - "devil_fingers" - ], - "tags": [] - }, - { - "emojiChar": "🖐", - "emoji": "\uD83D\uDD90", - "description": "raised hand with five fingers splayed", - "supports_fitzpatrick": true, - "aliases": [ - "raised_hand_with_fingers_splayed", - "splayed_hand" - ], - "tags": [] - }, - { - "emojiChar": "✍", - "emoji": "\u270D", - "description": "writing hand", - "supports_fitzpatrick": true, - "aliases": [ - "writing", - "writing_hand" - ], - "tags": [] - }, - { - "emojiChar": "👁", - "emoji": "\uD83D\uDC41", - "description": "eye", - "aliases": [ - "eye" - ], - "tags": [] - }, - { - "emojiChar": "❣", - "emoji": "\u2763", - "description": "heavy heart exclamation mark ornament", - "aliases": [ - "exclamation_heart" - ], - "tags": [] - }, - { - "emojiChar": "🕳", - "emoji": "\uD83D\uDD73", - "description": "hole", - "aliases": [ - "hole" - ], - "tags": [] - }, - { - "emojiChar": "🗯", - "emoji": "\uD83D\uDDEF", - "description": "right anger bubble", - "aliases": [ - "right_anger_bubble", - "zig_zag_bubble" - ], - "tags": [] - }, - { - "emojiChar": "🕶", - "emoji": "\uD83D\uDD76", - "description": "dark sunglasses", - "aliases": [ - "dark_sunglasses" - ], - "tags": [] - }, - { - "emojiChar": "🛍", - "emoji": "\uD83D\uDECD", - "description": "shopping bags", - "aliases": [ - "shopping_bags" - ], - "tags": [] - }, - { - "emojiChar": "📿", - "emoji": "\uD83D\uDCFF", - "description": "prayer beads", - "aliases": [ - "prayer_beads", - "dhikr_beads", - "rosary_beads" - ], - "tags": [] - }, - { - "emojiChar": "☠", - "emoji": "\u2620", - "description": "skull and crossbones", - "aliases": [ - "skull_crossbones" - ], - "tags": [] - }, - { - "emojiChar": "🤖", - "emoji": "\uD83E\uDD16", - "description": "robot face", - "aliases": [ - "robot_face", - "bot_face" - ], - "tags": [] - }, - { - "emojiChar": "🦁", - "emoji": "\uD83E\uDD81", - "description": "lion face", - "aliases": [ - "lion_face", - "cute_lion", - "timid_lion" - ], - "tags": [] - }, - { - "emojiChar": "🦄", - "emoji": "\uD83E\uDD84", - "description": "unicorn face", - "aliases": [ - "unicorn_face" - ], - "tags": [] - }, - { - "emojiChar": "🐿", - "emoji": "\uD83D\uDC3F", - "description": "chipmunk", - "aliases": [ - "chipmunk", - "squirrel" - ], - "tags": [] - }, - { - "emojiChar": "🦃", - "emoji": "\uD83E\uDD83", - "description": "turkey", - "aliases": [ - "turkey" - ], - "tags": [] - }, - { - "emojiChar": "🕊", - "emoji": "\uD83D\uDD4A", - "description": "dove of peace, carrying an olive branch", - "aliases": [ - "dove", - "dove_peace" - ], - "tags": [] - }, - { - "emojiChar": "🦀", - "emoji": "\uD83E\uDD80", - "description": "red crab", - "aliases": [ - "crab" - ], - "tags": [] - }, - { - "emojiChar": "🕷", - "emoji": "\uD83D\uDD77", - "description": "black spider with eight legs", - "aliases": [ - "spider" - ], - "tags": [] - }, - { - "emojiChar": "🕸", - "emoji": "\uD83D\uDD78", - "description": "spider web in orb form", - "aliases": [ - "spider_web", - "cobweb" - ], - "tags": [] - }, - { - "emojiChar": "🦂", - "emoji": "\uD83E\uDD82", - "description": "scorpion", - "aliases": [ - "scorpion" - ], - "tags": [] - }, - { - "emojiChar": "🏵", - "emoji": "\uD83C\uDFF5", - "description": "rosette", - "aliases": [ - "rosette" - ], - "tags": [] - }, - { - "emojiChar": "☘", - "emoji": "\u2618", - "description": "shamrock", - "aliases": [ - "shamrock", - "st_patrick" - ], - "tags": [] - }, - { - "emojiChar": "🌶", - "emoji": "\uD83C\uDF36", - "description": "hot pepper", - "aliases": [ - "hot_pepper", - "chili_pepper", - "spice", - "spicy" - ], - "tags": [] - }, - { - "emojiChar": "🧀", - "emoji": "\uD83E\uDDC0", - "description": "cheese wedge", - "aliases": [ - "cheese" - ], - "tags": [] - }, - { - "emojiChar": "🌭", - "emoji": "\uD83C\uDF2D", - "description": "hot dog", - "aliases": [ - "hot_dog" - ], - "tags": [] - }, - { - "emojiChar": "🌮", - "emoji": "\uD83C\uDF2E", - "description": "taco", - "aliases": [ - "taco" - ], - "tags": [] - }, - { - "emojiChar": "🌯", - "emoji": "\uD83C\uDF2F", - "description": "burrito", - "aliases": [ - "burrito", - "wrap" - ], - "tags": [] - }, - { - "emojiChar": "🍿", - "emoji": "\uD83C\uDF7F", - "description": "popcorn", - "aliases": [ - "popcorn" - ], - "tags": [] - }, - { - "emojiChar": "🍾", - "emoji": "\uD83C\uDF7E", - "description": "bottle with popping cork", - "aliases": [ - "champagne", - "sparkling_wine" - ], - "tags": [] - }, - { - "emojiChar": "🍽", - "emoji": "\uD83C\uDF7D", - "description": "fork and knife with plate", - "aliases": [ - "fork_knife_plate" - ], - "tags": [] - }, - { - "emojiChar": "🏺", - "emoji": "\uD83C\uDFFA", - "description": "amphora", - "aliases": [ - "amphora", - "jar", - "vase" - ], - "tags": [] - }, - { - "emojiChar": "🗺", - "emoji": "\uD83D\uDDFA", - "description": "world map", - "aliases": [ - "world_map" - ], - "tags": [] - }, - { - "emojiChar": "🏔", - "emoji": "\uD83C\uDFD4", - "description": "snow capped mountain", - "aliases": [ - "snow_capped_mountain", - "mont_fuji" - ], - "tags": [] - }, - { - "emojiChar": "⛰", - "emoji": "\u26F0", - "description": "mountain", - "aliases": [ - "mountain" - ], - "tags": [] - }, - { - "emojiChar": "🏕", - "emoji": "\uD83C\uDFD5", - "description": "camping with tent and tree", - "aliases": [ - "camping", - "campsite" - ], - "tags": [] - }, - { - "emojiChar": "🏖", - "emoji": "\uD83C\uDFD6", - "description": "beach with umbrella", - "aliases": [ - "breach" - ], - "tags": [] - }, - { - "emojiChar": "🏜", - "emoji": "\uD83C\uDFDC", - "description": "desert with cactus", - "aliases": [ - "desert" - ], - "tags": [] - }, - { - "emojiChar": "🏝", - "emoji": "\uD83C\uDFDD", - "description": "desert island with palm tree", - "aliases": [ - "desert_island" - ], - "tags": [] - }, - { - "emojiChar": "🏞", - "emoji": "\uD83C\uDFDE", - "description": "national park", - "aliases": [ - "national_park" - ], - "tags": [] - }, - { - "emojiChar": "🏟", - "emoji": "\uD83C\uDFDF", - "description": "stadium", - "aliases": [ - "stadium" - ], - "tags": [] - }, - { - "emojiChar": "🏛", - "emoji": "\uD83C\uDFDB", - "description": "classical building", - "aliases": [ - "classical_building" - ], - "tags": [] - }, - { - "emojiChar": "🏗", - "emoji": "\uD83C\uDFD7", - "description": "building in construction with crane", - "aliases": [ - "building_construction", - "crane" - ], - "tags": [] - }, - { - "emojiChar": "🏘", - "emoji": "\uD83C\uDFD8", - "description": "house buildings", - "aliases": [ - "house_buildings", - "multiple_houses" - ], - "tags": [] - }, - { - "emojiChar": "🏙", - "emoji": "\uD83C\uDFD9", - "description": "cityscape", - "aliases": [ - "cityscape" - ], - "tags": [] - }, - { - "emojiChar": "🏚", - "emoji": "\uD83C\uDFDA", - "description": "derelict house", - "aliases": [ - "derelict_house", - "old_house", - "abandoned_house" - ], - "tags": [] - }, - { - "emojiChar": "🛐", - "emoji": "\uD83D\uDED0", - "description": "place of worship", - "aliases": [ - "worship_building", - "worship_place", - "religious_building", - "religious_place" - ], - "tags": [] - }, - { - "emojiChar": "🕋", - "emoji": "\uD83D\uDD4B", - "description": "kaaba", - "aliases": [ - "kaaba", - "mecca" - ], - "tags": [] - }, - { - "emojiChar": "🕌", - "emoji": "\uD83D\uDD4C", - "description": "mosque with domed roof and minaret", - "aliases": [ - "mosque", - "minaret", - "domed_roof" - ], - "tags": [] - }, - { - "emojiChar": "🕍", - "emoji": "\uD83D\uDD4D", - "description": "synagogue with star of David", - "aliases": [ - "synagogue", - "temple", - "jewish" - ], - "tags": [] - }, - { - "emojiChar": "🖼", - "emoji": "\uD83D\uDDBC", - "description": "frame with picture or painting", - "aliases": [ - "picture_frame", - "painting", - "gallery" - ], - "tags": [] - }, - { - "emojiChar": "🛢", - "emoji": "\uD83D\uDEE2", - "description": "oil drum", - "aliases": [ - "oil_drum" - ], - "tags": [] - }, - { - "emojiChar": "🛣", - "emoji": "\uD83D\uDEE3", - "description": "motorway", - "aliases": [ - "motorway", - "highway", - "road", - "interstate", - "freeway" - ], - "tags": [] - }, - { - "emojiChar": "🛤", - "emoji": "\uD83D\uDEE4", - "description": "railway track", - "aliases": [ - "railway_track" - ], - "tags": [] - }, - { - "emojiChar": "🛳", - "emoji": "\uD83D\uDEF3", - "description": "passenger ship", - "aliases": [ - "passenger_ship" - ], - "tags": [] - }, - { - "emojiChar": "⛴", - "emoji": "\u26F4", - "description": "ferry", - "aliases": [ - "ferry" - ], - "tags": [] - }, - { - "emojiChar": "🛥", - "emoji": "\uD83D\uDEE5", - "description": "motor boat", - "aliases": [ - "motor_boat" - ], - "tags": [] - }, - { - "emojiChar": "🛩", - "emoji": "\uD83D\uDEE9", - "description": "small airplane", - "aliases": [ - "small_airplane" - ], - "tags": [] - }, - { - "emojiChar": "🛫", - "emoji": "\uD83D\uDEEB", - "description": "airplane departure", - "aliases": [ - "airplane_departure", - "take_off" - ], - "tags": [] - }, - { - "emojiChar": "🛬", - "emoji": "\uD83D\uDEEC", - "description": "airplane arriving", - "aliases": [ - "airplane_arriving", - "airplane_arrival", - "landing" - ], - "tags": [] - }, - { - "emojiChar": "🛰", - "emoji": "\uD83D\uDEF0", - "description": "satellite", - "aliases": [ - "satellite" - ], - "tags": [] - }, - { - "emojiChar": "🛎", - "emoji": "\uD83D\uDECE", - "description": "bellhop bell", - "aliases": [ - "bellhop_bell" - ], - "tags": [] - }, - { - "emojiChar": "🛌", - "emoji": "\uD83D\uDECC", - "description": "sleeping accommodation", - "supports_fitzpatrick": true, - "aliases": [ - "sleeping_accommodation" - ], - "tags": [] - }, - { - "emojiChar": "🛏", - "emoji": "\uD83D\uDECF", - "description": "bed or bedroom", - "aliases": [ - "bed", - "bedroom" - ], - "tags": [] - }, - { - "emojiChar": "🛋", - "emoji": "\uD83D\uDECB", - "description": "couch and lamp", - "aliases": [ - "couch_lamp", - "couch", - "sofa", - "lounge" - ], - "tags": [] - }, - { - "emojiChar": "⏱", - "emoji": "\u23F1", - "description": "stopwatch", - "aliases": [ - "stopwatch" - ], - "tags": [] - }, - { - "emojiChar": "⏲", - "emoji": "\u23F2", - "description": "timer clock", - "aliases": [ - "timer_clock" - ], - "tags": [] - }, - { - "emojiChar": "🕰", - "emoji": "\uD83D\uDD70", - "description": "mantelpiece clock", - "aliases": [ - "mantelpiece_clock" - ], - "tags": [] - }, - { - "emojiChar": "🌡", - "emoji": "\uD83C\uDF21", - "description": "thermometer", - "aliases": [ - "thermometer", - "hot_weather", - "temperature" - ], - "tags": [] - }, - { - "emojiChar": "⛈", - "emoji": "\u26C8", - "description": "thunder cloud and rain", - "aliases": [ - "thunder_cloud_rain" - ], - "tags": [] - }, - { - "emojiChar": "🌤", - "emoji": "\uD83C\uDF24", - "description": "white sun with small cloud", - "aliases": [ - "white_sun_small_cloud" - ], - "tags": [] - }, - { - "emojiChar": "🌥", - "emoji": "\uD83C\uDF25", - "description": "white sun behind cloud", - "aliases": [ - "white_sun_behind_cloud" - ], - "tags": [] - }, - { - "emojiChar": "🌦", - "emoji": "\uD83C\uDF26", - "description": "white sun behind cloud with rain", - "aliases": [ - "white_sun_behind_cloud_rain" - ], - "tags": [] - }, - { - "emojiChar": "🌧", - "emoji": "\uD83C\uDF27", - "description": "cloud with rain", - "aliases": [ - "cloud_rain" - ], - "tags": [] - }, - { - "emojiChar": "🌨", - "emoji": "\uD83C\uDF28", - "description": "cloud with snow", - "aliases": [ - "cloud_snow" - ], - "tags": [] - }, - { - "emojiChar": "🌩", - "emoji": "\uD83C\uDF29", - "description": "cloud with lightning", - "aliases": [ - "cloud_lightning" - ], - "tags": [] - }, - { - "emojiChar": "🌪", - "emoji": "\uD83C\uDF2A", - "description": "cloud with tornado", - "aliases": [ - "cloud_tornado" - ], - "tags": [] - }, - { - "emojiChar": "🌫", - "emoji": "\uD83C\uDF2B", - "description": "fog", - "aliases": [ - "fog" - ], - "tags": [] - }, - { - "emojiChar": "🌬", - "emoji": "\uD83C\uDF2C", - "description": "wind blowing face", - "aliases": [ - "wind_blowing_face", - "mother_nature", - "blowing_wind" - ], - "tags": [] - }, - { - "emojiChar": "☂", - "emoji": "\u2602", - "description": "open umbrella", - "aliases": [ - "open_umbrella" - ], - "tags": [] - }, - { - "emojiChar": "⛱", - "emoji": "\u26F1", - "description": "umbrella planted on the ground", - "aliases": [ - "planted_umbrella", - "umbrella_on_ground" - ], - "tags": [] - }, - { - "emojiChar": "☃", - "emoji": "\u2603", - "description": "snowman with snow", - "aliases": [ - "snowman_with_snow", - "snowing_snowman" - ], - "tags": [] - }, - { - "emojiChar": "☄", - "emoji": "\u2604", - "description": "comet", - "aliases": [ - "comet", - "light_beam", - "blue_beam" - ], - "tags": [] - }, - { - "emojiChar": "🕎", - "emoji": "\uD83D\uDD4E", - "description": "menorah with nine branches", - "aliases": [ - "menorah", - "candelabrum", - "chanukiah" - ], - "tags": [] - }, - { - "emojiChar": "🎖", - "emoji": "\uD83C\uDF96", - "description": "military medal with ribbon", - "aliases": [ - "military_medal", - "military_decoration" - ], - "tags": [] - }, - { - "emojiChar": "🎗", - "emoji": "\uD83C\uDF97", - "description": "reminder ribbon", - "aliases": [ - "reminder_ribbon", - "awareness_ribbon" - ], - "tags": [] - }, - { - "emojiChar": "🎞", - "emoji": "\uD83C\uDF9E", - "description": "film frames", - "aliases": [ - "film_frames" - ], - "tags": [] - }, - { - "emojiChar": "🎟", - "emoji": "\uD83C\uDF9F", - "description": "admission ticket", - "aliases": [ - "admission_ticket" - ], - "tags": [] - }, - { - "emojiChar": "🏷", - "emoji": "\uD83C\uDFF7", - "description": "label", - "aliases": [ - "label" - ], - "tags": [] - }, - { - "emojiChar": "🏌", - "emoji": "\uD83C\uDFCC", - "description": "golfer swinging a golf club", - "supports_fitzpatrick": true, - "aliases": [ - "golfer", - "golf_club" - ], - "tags": [] - }, - { - "emojiChar": "🏌️‍♂️", - "emoji": "\uD83C\uDFCC\uFE0F\u200D\u2642\uFE0F", - "description": "man golfing", - "supports_fitzpatrick": true, - "aliases": [ - "man_golfer", - "male_golfer", - "man_golfing", - "male_golfing" - ], - "tags": [] - }, - { - "emojiChar": "🏌️‍♀️", - "emoji": "\uD83C\uDFCC\uFE0F\u200D\u2640\uFE0F", - "description": "woman golfing", - "supports_fitzpatrick": true, - "aliases": [ - "woman_golfer", - "female_golfer", - "woman_golfing", - "female_golfing" - ], - "tags": [] - }, - { - "emojiChar": "⛸", - "emoji": "\u26F8", - "description": "single ice skate", - "aliases": [ - "ice_skate", - "ice_skating" - ], - "tags": [] - }, - { - "emojiChar": "⛷", - "emoji": "\u26F7", - "description": "skier", - "aliases": [ - "skier" - ], - "tags": [] - }, - { - "emojiChar": "⛹", - "emoji": "\u26F9", - "description": "person with ball", - "supports_fitzpatrick": true, - "aliases": [ - "person_with_ball" - ], - "tags": [] - }, - { - "emojiChar": "🏋", - "emoji": "\uD83C\uDFCB", - "description": "weight lifter", - "supports_fitzpatrick": true, - "aliases": [ - "weight_lifter" - ], - "tags": [] - }, - { - "emojiChar": "🏎", - "emoji": "\uD83C\uDFCE", - "description": "racing car", - "aliases": [ - "racing_car", - "formula_one", - "f1" - ], - "tags": [] - }, - { - "emojiChar": "🏍", - "emoji": "\uD83C\uDFCD", - "description": "racing motorcycle", - "aliases": [ - "racing_motorcycle", - "motorcycle", - "motorbike" - ], - "tags": [] - }, - { - "emojiChar": "🏅", - "emoji": "\uD83C\uDFC5", - "description": "sports medal", - "aliases": [ - "sports_medal", - "sports_decoration" - ], - "tags": [] - }, - { - "emojiChar": "🏏", - "emoji": "\uD83C\uDFCF", - "description": "cricket bat and ball", - "aliases": [ - "cricket_bat_and_ball", - "cricket_game" - ], - "tags": [] - }, - { - "emojiChar": "🏐", - "emoji": "\uD83C\uDFD0", - "description": "volleyball", - "aliases": [ - "volleyball" - ], - "tags": [] - }, - { - "emojiChar": "🏑", - "emoji": "\uD83C\uDFD1", - "description": "field hockey stick and ball", - "aliases": [ - "field_hockey" - ], - "tags": [] - }, - { - "emojiChar": "🏒", - "emoji": "\uD83C\uDFD2", - "description": "ice hockey stick and puck", - "aliases": [ - "ice_hockey" - ], - "tags": [] - }, - { - "emojiChar": "🏓", - "emoji": "\uD83C\uDFD3", - "description": "table tennis paddle and ball", - "aliases": [ - "table_tennis", - "ping_pong" - ], - "tags": [] - }, - { - "emojiChar": "🏸", - "emoji": "\uD83C\uDFF8", - "description": "badminton racket and shuttlecock", - "aliases": [ - "badminton" - ], - "tags": [] - }, - { - "emojiChar": "🕹", - "emoji": "\uD83D\uDD79", - "description": "joystick", - "aliases": [ - "joystick" - ], - "tags": [] - }, - { - "emojiChar": "⏭", - "emoji": "\u23ED", - "description": "black right-pointing double triangle with vertical bar", - "aliases": [ - "black_right_pointing_double_triangle_with_vertical_bar" - ], - "tags": [] - }, - { - "emojiChar": "⏯", - "emoji": "\u23EF", - "description": "black right-pointing triangle with double vertical bar", - "aliases": [ - "black_right_pointing_triangle_with_double_vertical_bar" - ], - "tags": [] - }, - { - "emojiChar": "⏎", - "emoji": "\u23EE", - "description": "black left-pointing double triangle with vertical bar", - "aliases": [ - "black_left_pointing_double_triangle_with_vertical_bar" - ], - "tags": [] - }, - { - "emojiChar": "⏸", - "emoji": "\u23F8", - "description": "double vertical bar", - "aliases": [ - "double_vertical_bar" - ], - "tags": [] - }, - { - "emojiChar": "⏚", - "emoji": "\u23F9", - "description": "black square for stop", - "aliases": [ - "black_square_for_stop" - ], - "tags": [] - }, - { - "emojiChar": "⏺", - "emoji": "\u23FA", - "description": "black circle for record", - "aliases": [ - "black_circle_for_record" - ], - "tags": [] - }, - { - "emojiChar": "🎙", - "emoji": "\uD83C\uDF99", - "description": "studio microphone", - "aliases": [ - "studio_microphone" - ], - "tags": [] - }, - { - "emojiChar": "🎚", - "emoji": "\uD83C\uDF9A", - "description": "level slider", - "aliases": [ - "level_slider" - ], - "tags": [] - }, - { - "emojiChar": "🎛", - "emoji": "\uD83C\uDF9B", - "description": "control knobs", - "aliases": [ - "control_knobs" - ], - "tags": [] - }, - { - "emojiChar": "*⃣", - "emoji": "*\u20E3", - "description": "keycap asterisk", - "aliases": [ - "keycap_asterisk", - "star_keycap" - ], - "tags": [] - }, - { - "emojiChar": "🖥", - "emoji": "\uD83D\uDDA5", - "description": "desktop computer", - "aliases": [ - "desktop_computer", - "pc_tower", - "imac" - ], - "tags": [] - }, - { - "emojiChar": "🖨", - "emoji": "\uD83D\uDDA8", - "description": "printer", - "aliases": [ - "printer" - ], - "tags": [] - }, - { - "emojiChar": "⌨", - "emoji": "\u2328", - "description": "keyboard", - "aliases": [ - "keyboard" - ], - "tags": [] - }, - { - "emojiChar": "🖱", - "emoji": "\uD83D\uDDB1", - "description": "three button mouse", - "aliases": [ - "computer_mouse", - "three_button_mouse" - ], - "tags": [] - }, - { - "emojiChar": "🖲", - "emoji": "\uD83D\uDDB2", - "description": "trackball", - "aliases": [ - "trackball" - ], - "tags": [] - }, - { - "emojiChar": "📽", - "emoji": "\uD83D\uDCFD", - "description": "film projector", - "aliases": [ - "film_projector" - ], - "tags": [] - }, - { - "emojiChar": "📸", - "emoji": "\uD83D\uDCF8", - "description": "camera with flash", - "aliases": [ - "camera_flash" - ], - "tags": [] - }, - { - "emojiChar": "🕯", - "emoji": "\uD83D\uDD6F", - "description": "candle burning", - "aliases": [ - "candle" - ], - "tags": [] - }, - { - "emojiChar": "🗞", - "emoji": "\uD83D\uDDDE", - "description": "newspaper rolled up for delivery", - "aliases": [ - "rolled_up_newspaper", - "newspaper_delivery" - ], - "tags": [] - }, - { - "emojiChar": "🗳", - "emoji": "\uD83D\uDDF3", - "description": "ballot bow with ballot", - "aliases": [ - "ballot", - "ballot_box" - ], - "tags": [] - }, - { - "emojiChar": "🖋", - "emoji": "\uD83D\uDD8B", - "description": "lower left fountain pen", - "aliases": [ - "lower_left_fountain_pen" - ], - "tags": [] - }, - { - "emojiChar": "🖊", - "emoji": "\uD83D\uDD8A", - "description": "lower left ballpoint pen", - "aliases": [ - "lower_left_ballpoint_pen" - ], - "tags": [] - }, - { - "emojiChar": "🖌", - "emoji": "\uD83D\uDD8C", - "description": "lower left paintbrush", - "aliases": [ - "lower_left_paintbrush" - ], - "tags": [] - }, - { - "emojiChar": "🖍", - "emoji": "\uD83D\uDD8D", - "description": "lower left crayon", - "aliases": [ - "lower_left_crayon" - ], - "tags": [] - }, - { - "emojiChar": "🗂", - "emoji": "\uD83D\uDDC2", - "description": "card index dividers", - "aliases": [ - "card_index_dividers" - ], - "tags": [] - }, - { - "emojiChar": "🗒", - "emoji": "\uD83D\uDDD2", - "description": "spiral note pad", - "aliases": [ - "spiral_note_pad" - ], - "tags": [] - }, - { - "emojiChar": "🗓", - "emoji": "\uD83D\uDDD3", - "description": "spiral calendar pad", - "aliases": [ - "spiral_calendar_pad" - ], - "tags": [] - }, - { - "emojiChar": "🖇", - "emoji": "\uD83D\uDD87", - "description": "multiple paperclips linked together", - "aliases": [ - "linked_paperclips" - ], - "tags": [] - }, - { - "emojiChar": "🗃", - "emoji": "\uD83D\uDDC3", - "description": "card file box", - "aliases": [ - "card_file_box" - ], - "tags": [] - }, - { - "emojiChar": "🗄", - "emoji": "\uD83D\uDDC4", - "description": "file cabinet", - "aliases": [ - "file_cabinet" - ], - "tags": [] - }, - { - "emojiChar": "🗑", - "emoji": "\uD83D\uDDD1", - "description": "wastebasket", - "aliases": [ - "wastebasket" - ], - "tags": [] - }, - { - "emojiChar": "🗝", - "emoji": "\uD83D\uDDDD", - "description": "an ornate old key", - "aliases": [ - "old_key" - ], - "tags": [] - }, - { - "emojiChar": "⛏", - "emoji": "\u26CF", - "description": "pick", - "aliases": [ - "pick" - ], - "tags": [] - }, - { - "emojiChar": "⚒", - "emoji": "\u2692", - "description": "hammer and pick", - "aliases": [ - "hammer_and_pick" - ], - "tags": [] - }, - { - "emojiChar": "🛠", - "emoji": "\uD83D\uDEE0", - "description": "hammer and wrench", - "aliases": [ - "hammer_and_wrench" - ], - "tags": [] - }, - { - "emojiChar": "⚙", - "emoji": "\u2699", - "description": "gear", - "aliases": [ - "gear" - ], - "tags": [] - }, - { - "emojiChar": "🗜", - "emoji": "\uD83D\uDDDC", - "description": "compression", - "aliases": [ - "compression" - ], - "tags": [] - }, - { - "emojiChar": "⚗", - "emoji": "\u2697", - "description": "alembic", - "aliases": [ - "alembic" - ], - "tags": [] - }, - { - "emojiChar": "⚖", - "emoji": "\u2696", - "description": "scales of justice", - "aliases": [ - "scales", - "scales_of_justice" - ], - "tags": [] - }, - { - "emojiChar": "⛓", - "emoji": "\u26D3", - "description": "chains", - "aliases": [ - "chains" - ], - "tags": [] - }, - { - "emojiChar": "🗡", - "emoji": "\uD83D\uDDE1", - "description": "dagger knife", - "aliases": [ - "dagger", - "dagger_knife", - "knife_weapon" - ], - "tags": [] - }, - { - "emojiChar": "⚔", - "emoji": "\u2694", - "description": "crossed swords", - "aliases": [ - "crossed_swords" - ], - "tags": [] - }, - { - "emojiChar": "🛡", - "emoji": "\uD83D\uDEE1", - "description": "shield", - "aliases": [ - "shield" - ], - "tags": [] - }, - { - "emojiChar": "🏹", - "emoji": "\uD83C\uDFF9", - "description": "bow and arrow", - "aliases": [ - "bow_and_arrow", - "bow_arrow", - "archery" - ], - "tags": [] - }, - { - "emojiChar": "⚰", - "emoji": "\u26B0", - "description": "coffin", - "aliases": [ - "coffin", - "funeral", - "casket" - ], - "tags": [] - }, - { - "emojiChar": "⚱", - "emoji": "\u26B1", - "description": "funeral urn", - "aliases": [ - "funeral_urn" - ], - "tags": [] - }, - { - "emojiChar": "🏳", - "emoji": "\uD83C\uDFF3", - "description": "waving white flag", - "aliases": [ - "waving_white_flag" - ], - "tags": [] - }, - { - "emojiChar": "🏴", - "emoji": "\uD83C\uDFF4", - "description": "waving black flag", - "aliases": [ - "waving_black_flag" - ], - "tags": [] - }, - { - "emojiChar": "⚜", - "emoji": "\u269C", - "description": "fleur-de-lis", - "aliases": [ - "fleur_de_lis", - "scouts" - ], - "tags": [] - }, - { - "emojiChar": "⚛", - "emoji": "\u269B", - "description": "atom symbol", - "aliases": [ - "atom", - "atom_symbol" - ], - "tags": [] - }, - { - "emojiChar": "🕉", - "emoji": "\uD83D\uDD49", - "description": "om symbol", - "aliases": [ - "om_symbol", - "pranava", - "aumkara", - "omkara" - ], - "tags": [] - }, - { - "emojiChar": "✡", - "emoji": "\u2721", - "description": "star of David", - "aliases": [ - "star_of_david" - ], - "tags": [] - }, - { - "emojiChar": "☸", - "emoji": "\u2638", - "description": "wheel of Dharma", - "aliases": [ - "wheel_of_dharma" - ], - "tags": [] - }, - { - "emojiChar": "☯", - "emoji": "\u262F", - "description": "yin yang", - "aliases": [ - "yin_yang" - ], - "tags": [] - }, - { - "emojiChar": "✝", - "emoji": "\u271D", - "description": "latin cross", - "aliases": [ - "latin_cross", - "christian_cross" - ], - "tags": [] - }, - { - "emojiChar": "☌", - "emoji": "\u2626", - "description": "orthodox cross", - "aliases": [ - "orthodox_cross" - ], - "tags": [] - }, - { - "emojiChar": "⛩", - "emoji": "\u26E9", - "description": "shinto shrine", - "aliases": [ - "shinto_shrine", - "kami_no_michi" - ], - "tags": [] - }, - { - "emojiChar": "☪", - "emoji": "\u262A", - "description": "star and crescent", - "aliases": [ - "star_and_crescent", - "star_crescent" - ], - "tags": [] - }, - { - "emojiChar": "☎", - "emoji": "\u262E", - "description": "peace symbol", - "aliases": [ - "peace_symbol", - "peace_sign" - ], - "tags": [] - }, - { - "emojiChar": "☢", - "emoji": "\u2622", - "description": "radioactive symbol", - "aliases": [ - "radioactive", - "radioactive_symbol", - "radioactive_sign" - ], - "tags": [] - }, - { - "emojiChar": "☣", - "emoji": "\u2623", - "description": "biohazard symbol", - "aliases": [ - "biohazard", - "biohazard_symbol", - "biohazard_sign" - ], - "tags": [] - }, - { - "emojiChar": "🗨", - "emoji": "\uD83D\uDDE8", - "description": "left speech bubble", - "aliases": [ - "left_speech_bubble" - ], - "tags": [] - }, - { - "emojiChar": "👁‍🗨", - "emoji": "\uD83D\uDC41\u200D\uD83D\uDDE8", - "description": "eye in speech bubble", - "aliases": [ - "eye_in_speech_bubble", - "i_am_a_witness" - ], - "tags": [] - }, - { - "emojiChar": "🤣", - "emoji": "\uD83E\uDD23", - "description": "rolling on the floor laughing", - "aliases": [ - "rolling_on_the_floor_laughing", - "rofl" - ], - "tags": [] - }, - { - "emojiChar": "🤠", - "emoji": "\uD83E\uDD20", - "description": "face with cowboy hat", - "aliases": [ - "face_with_cowboy_hat", - "cowboy" - ], - "tags": [] - }, - { - "emojiChar": "🤡", - "emoji": "\uD83E\uDD21", - "description": "clown face", - "aliases": [ - "clown_face", - "clown" - ], - "tags": [] - }, - { - "emojiChar": "🤥", - "emoji": "\uD83E\uDD25", - "description": "lying face", - "aliases": [ - "lying_face" - ], - "tags": [] - }, - { - "emojiChar": "🤤", - "emoji": "\uD83E\uDD24", - "description": "drooling face", - "aliases": [ - "drooling_face" - ], - "tags": [] - }, - { - "emojiChar": "🤢", - "emoji": "\uD83E\uDD22", - "description": "nauseated face", - "aliases": [ - "nauseated_face" - ], - "tags": [] - }, - { - "emojiChar": "🤧", - "emoji": "\uD83E\uDD27", - "description": "sneezing face", - "aliases": [ - "sneezing_face" - ], - "tags": [] - }, - { - "emojiChar": "🤴", - "emoji": "\uD83E\uDD34", - "description": "prince", - "supports_fitzpatrick": true, - "aliases": [ - "prince" - ], - "tags": [] - }, - { - "emojiChar": "🤶", - "emoji": "\uD83E\uDD36", - "description": "mother christmas", - "supports_fitzpatrick": true, - "aliases": [ - "mother_christmas" - ], - "tags": [] - }, - { - "emojiChar": "🤵", - "emoji": "\uD83E\uDD35", - "description": "man in tuxedo", - "supports_fitzpatrick": true, - "aliases": [ - "man_in_tuxedo" - ], - "tags": [] - }, - { - "emojiChar": "🤷", - "emoji": "\uD83E\uDD37", - "description": "shrug", - "supports_fitzpatrick": true, - "aliases": [ - "shrug" - ], - "tags": [] - }, - { - "emojiChar": "🤦", - "emoji": "\uD83E\uDD26", - "description": "face palm", - "supports_fitzpatrick": true, - "aliases": [ - "face_palm" - ], - "tags": [] - }, - { - "emojiChar": "🤰", - "emoji": "\uD83E\uDD30", - "description": "pregnant woman", - "supports_fitzpatrick": true, - "aliases": [ - "pregnant_woman" - ], - "tags": [] - }, - { - "emojiChar": "🕺", - "emoji": "\uD83D\uDD7A", - "description": "man dancing", - "supports_fitzpatrick": true, - "aliases": [ - "man_dancing" - ], - "tags": [] - }, - { - "emojiChar": "🤳", - "emoji": "\uD83E\uDD33", - "description": "selfie", - "supports_fitzpatrick": true, - "aliases": [ - "selfie" - ], - "tags": [] - }, - { - "emojiChar": "🤞", - "emoji": "\uD83E\uDD1E", - "description": "hand with index and middle fingers crossed", - "supports_fitzpatrick": true, - "aliases": [ - "hand_with_index_and_middle_fingers_crossed" - ], - "tags": [] - }, - { - "emojiChar": "🤙", - "emoji": "\uD83E\uDD19", - "description": "call me hand", - "supports_fitzpatrick": true, - "aliases": [ - "call_me_hand" - ], - "tags": [] - }, - { - "emojiChar": "🤛", - "emoji": "\uD83E\uDD1B", - "description": "left-facing fist", - "supports_fitzpatrick": true, - "aliases": [ - "left-facing_fist" - ], - "tags": [] - }, - { - "emojiChar": "🤜", - "emoji": "\uD83E\uDD1C", - "description": "right-facing fist", - "supports_fitzpatrick": true, - "aliases": [ - "right-facing_fist" - ], - "tags": [] - }, - { - "emojiChar": "🤚", - "emoji": "\uD83E\uDD1A", - "description": "raised back of hand", - "supports_fitzpatrick": true, - "aliases": [ - "raised_back_of_hand" - ], - "tags": [] - }, - { - "emojiChar": "🤝", - "emoji": "\uD83E\uDD1D", - "description": "handshake", - "supports_fitzpatrick": true, - "aliases": [ - "handshake" - ], - "tags": [] - }, - { - "emojiChar": "🖤", - "emoji": "\uD83D\uDDA4", - "description": "black heart", - "aliases": [ - "black_heart" - ], - "tags": [] - }, - { - "emojiChar": "🦍", - "emoji": "\uD83E\uDD8D", - "description": "gorilla", - "aliases": [ - "gorilla" - ], - "tags": [] - }, - { - "emojiChar": "🦊", - "emoji": "\uD83E\uDD8A", - "description": "fox face", - "aliases": [ - "fox_face" - ], - "tags": [] - }, - { - "emojiChar": "🦌", - "emoji": "\uD83E\uDD8C", - "description": "deer", - "aliases": [ - "deer" - ], - "tags": [] - }, - { - "emojiChar": "🦏", - "emoji": "\uD83E\uDD8F", - "description": "rhinoceros", - "aliases": [ - "rhinoceros" - ], - "tags": [] - }, - { - "emojiChar": "🦇", - "emoji": "\uD83E\uDD87", - "description": "bat", - "aliases": [ - "bat" - ], - "tags": [] - }, - { - "emojiChar": "🦅", - "emoji": "\uD83E\uDD85", - "description": "eagle", - "aliases": [ - "eagle" - ], - "tags": [] - }, - { - "emojiChar": "🦆", - "emoji": "\uD83E\uDD86", - "description": "duck", - "aliases": [ - "duck" - ], - "tags": [] - }, - { - "emojiChar": "🦉", - "emoji": "\uD83E\uDD89", - "description": "owl", - "aliases": [ - "owl" - ], - "tags": [] - }, - { - "emojiChar": "🦎", - "emoji": "\uD83E\uDD8E", - "description": "lizard", - "aliases": [ - "lizard" - ], - "tags": [] - }, - { - "emojiChar": "🦈", - "emoji": "\uD83E\uDD88", - "description": "shark", - "aliases": [ - "shark" - ], - "tags": [] - }, - { - "emojiChar": "🦐", - "emoji": "\uD83E\uDD90", - "description": "shrimp", - "aliases": [ - "shrimp" - ], - "tags": [] - }, - { - "emojiChar": "🦑", - "emoji": "\uD83E\uDD91", - "description": "squid", - "aliases": [ - "squid" - ], - "tags": [] - }, - { - "emojiChar": "🦋", - "emoji": "\uD83E\uDD8B", - "description": "butterfly", - "aliases": [ - "butterfly" - ], - "tags": [] - }, - { - "emojiChar": "🥀", - "emoji": "\uD83E\uDD40", - "description": "wilted flower", - "aliases": [ - "wilted_flower" - ], - "tags": [] - }, - { - "emojiChar": "🥝", - "emoji": "\uD83E\uDD5D", - "description": "kiwifruit", - "aliases": [ - "kiwifruit" - ], - "tags": [] - }, - { - "emojiChar": "🥑", - "emoji": "\uD83E\uDD51", - "description": "avocado", - "aliases": [ - "avocado" - ], - "tags": [] - }, - { - "emojiChar": "🥔", - "emoji": "\uD83E\uDD54", - "description": "potato", - "aliases": [ - "potato" - ], - "tags": [] - }, - { - "emojiChar": "🥕", - "emoji": "\uD83E\uDD55", - "description": "carrot", - "aliases": [ - "carrot" - ], - "tags": [] - }, - { - "emojiChar": "🥒", - "emoji": "\uD83E\uDD52", - "description": "cucumber", - "aliases": [ - "cucumber" - ], - "tags": [] - }, - { - "emojiChar": "🥜", - "emoji": "\uD83E\uDD5C", - "description": "peanuts", - "aliases": [ - "peanuts" - ], - "tags": [] - }, - { - "emojiChar": "🥐", - "emoji": "\uD83E\uDD50", - "description": "croissant", - "aliases": [ - "croissant" - ], - "tags": [] - }, - { - "emojiChar": "🥖", - "emoji": "\uD83E\uDD56", - "description": "baguette bread", - "aliases": [ - "baguette_bread" - ], - "tags": [] - }, - { - "emojiChar": "🥞", - "emoji": "\uD83E\uDD5E", - "description": "pancakes", - "aliases": [ - "pancakes" - ], - "tags": [] - }, - { - "emojiChar": "🥓", - "emoji": "\uD83E\uDD53", - "description": "bacon", - "aliases": [ - "bacon" - ], - "tags": [] - }, - { - "emojiChar": "🥙", - "emoji": "\uD83E\uDD59", - "description": "stuffed flatbread", - "aliases": [ - "stuffed_flatbread" - ], - "tags": [] - }, - { - "emojiChar": "🥚", - "emoji": "\uD83E\uDD5A", - "description": "egg", - "aliases": [ - "egg" - ], - "tags": [] - }, - { - "emojiChar": "🥘", - "emoji": "\uD83E\uDD58", - "description": "shallow pan of food", - "aliases": [ - "shallow_pan_of_food" - ], - "tags": [] - }, - { - "emojiChar": "🥗", - "emoji": "\uD83E\uDD57", - "description": "green salad", - "aliases": [ - "green_salad" - ], - "tags": [] - }, - { - "emojiChar": "🥛", - "emoji": "\uD83E\uDD5B", - "description": "glass of milk", - "aliases": [ - "glass_of_milk" - ], - "tags": [] - }, - { - "emojiChar": "🥂", - "emoji": "\uD83E\uDD42", - "description": "clinking glasses", - "aliases": [ - "clinking_glasses" - ], - "tags": [] - }, - { - "emojiChar": "🥃", - "emoji": "\uD83E\uDD43", - "description": "tumbler glass", - "aliases": [ - "tumbler_glass" - ], - "tags": [] - }, - { - "emojiChar": "🥄", - "emoji": "\uD83E\uDD44", - "description": "spoon", - "aliases": [ - "spoon" - ], - "tags": [] - }, - { - "emojiChar": "🛑", - "emoji": "\uD83D\uDED1", - "description": "octagonal sign", - "aliases": [ - "octagonal_sign", - "stop_sign" - ], - "tags": [] - }, - { - "emojiChar": "🛴", - "emoji": "\uD83D\uDEF4", - "description": "scooter", - "aliases": [ - "scooter" - ], - "tags": [] - }, - { - "emojiChar": "🛵", - "emoji": "\uD83D\uDEF5", - "description": "motor scooter", - "aliases": [ - "motor_scooter" - ], - "tags": [] - }, - { - "emojiChar": "🛶", - "emoji": "\uD83D\uDEF6", - "description": "canoe", - "aliases": [ - "canoe" - ], - "tags": [] - }, - { - "emojiChar": "🥇", - "emoji": "\uD83E\uDD47", - "description": "first place medal", - "aliases": [ - "first_place_medal" - ], - "tags": [] - }, - { - "emojiChar": "🥈", - "emoji": "\uD83E\uDD48", - "description": "second place medal", - "aliases": [ - "second_place_medal" - ], - "tags": [] - }, - { - "emojiChar": "🥉", - "emoji": "\uD83E\uDD49", - "description": "third place medal", - "aliases": [ - "third_place_medal" - ], - "tags": [] - }, - { - "emojiChar": "🥊", - "emoji": "\uD83E\uDD4A", - "description": "boxing glove", - "aliases": [ - "boxing_glove" - ], - "tags": [] - }, - { - "emojiChar": "🥋", - "emoji": "\uD83E\uDD4B", - "description": "martial arts uniform", - "aliases": [ - "martial_arts_uniform" - ], - "tags": [] - }, - { - "emojiChar": "🤸", - "emoji": "\uD83E\uDD38", - "description": "person doing cartwheel", - "supports_fitzpatrick": true, - "aliases": [ - "person_doing_cartwheel" - ], - "tags": [] - }, - { - "emojiChar": "🤸‍♂️", - "emoji": "\uD83E\uDD38\u200D\u2642\uFE0F", - "description": "man doing cartwheel", - "supports_fitzpatrick": true, - "aliases": [ - "man_doing_cartwheel", - "male_doing_cartwheel" - ], - "tags": [] - }, - { - "emojiChar": "🤸‍♀️", - "emoji": "\uD83E\uDD38\u200D\u2640\uFE0F", - "description": "woman doing cartwheel", - "supports_fitzpatrick": true, - "aliases": [ - "woman_doing_cartwheel", - "female_doing_cartwheel" - ], - "tags": [] - }, - { - "emojiChar": "🤼", - "emoji": "\uD83E\uDD3C", - "description": "wrestlers", - "supports_fitzpatrick": true, - "aliases": [ - "wrestlers" - ], - "tags": [] - }, - { - "emojiChar": "🤼‍♂️", - "emoji": "\uD83E\uDD3C\u200D\u2642\uFE0F", - "description": "man wrestlers", - "supports_fitzpatrick": true, - "aliases": [ - "man_wrestlers", - "male_wrestlers" - ], - "tags": [] - }, - { - "emojiChar": "🤼‍♀️", - "emoji": "\uD83E\uDD3C\u200D\u2640\uFE0F", - "description": "woman wrestlers", - "supports_fitzpatrick": true, - "aliases": [ - "woman_wrestlers", - "female_wrestlers" - ], - "tags": [] - }, - { - "emojiChar": "🤽", - "emoji": "\uD83E\uDD3D", - "description": "water polo", - "supports_fitzpatrick": true, - "aliases": [ - "water_polo" - ], - "tags": [] - }, - { - "emojiChar": "🤽‍♂️", - "emoji": "\uD83E\uDD3D\u200D\u2642\uFE0F", - "description": "man water polo", - "supports_fitzpatrick": true, - "aliases": [ - "man_water_polo", - "male_water_polo" - ], - "tags": [] - }, - { - "emojiChar": "🤽‍♀️", - "emoji": "\uD83E\uDD3D\u200D\u2640\uFE0F", - "description": "woman water polo", - "supports_fitzpatrick": true, - "aliases": [ - "woman_water_polo", - "female_water_polo" - ], - "tags": [] - }, - { - "emojiChar": "🤾", - "emoji": "\uD83E\uDD3E", - "description": "handball", - "supports_fitzpatrick": true, - "aliases": [ - "handball" - ], - "tags": [] - }, - { - "emojiChar": "🤾‍♂️", - "emoji": "\uD83E\uDD3E\u200D\u2642\uFE0F", - "description": "man handball", - "supports_fitzpatrick": true, - "aliases": [ - "man_handball", - "male_handball" - ], - "tags": [] - }, - { - "emojiChar": "🤾‍♀️", - "emoji": "\uD83E\uDD3E\u200D\u2640\uFE0F", - "description": "woman handball", - "supports_fitzpatrick": true, - "aliases": [ - "woman_handball", - "female_handball" - ], - "tags": [] - }, - { - "emojiChar": "🤺", - "emoji": "\uD83E\uDD3A", - "description": "fencer", - "aliases": [ - "fencer" - ], - "tags": [] - }, - { - "emojiChar": "🥅", - "emoji": "\uD83E\uDD45", - "description": "goal net", - "aliases": [ - "goal_net" - ], - "tags": [] - }, - { - "emojiChar": "🤹", - "emoji": "\uD83E\uDD39", - "description": "juggling", - "supports_fitzpatrick": true, - "aliases": [ - "juggling" - ], - "tags": [] - }, - { - "emojiChar": "🤹‍♂️", - "emoji": "\uD83E\uDD39\u200D\u2642\uFE0F", - "description": "man juggling", - "supports_fitzpatrick": true, - "aliases": [ - "man_juggling", - "male_juggling" - ], - "tags": [] - }, - { - "emojiChar": "🤹‍♀️", - "emoji": "\uD83E\uDD39\u200D\u2640\uFE0F", - "description": "woman juggling", - "supports_fitzpatrick": true, - "aliases": [ - "woman_juggling", - "female_juggling" - ], - "tags": [] - }, - { - "emojiChar": "🥁", - "emoji": "\uD83E\uDD41", - "description": "drum with drumsticks", - "aliases": [ - "drum_with_drumsticks" - ], - "tags": [] - }, - { - "emojiChar": "🛒", - "emoji": "\uD83D\uDED2", - "description": "shopping trolley", - "aliases": [ - "shopping_trolley", - "shopping_cart" - ], - "tags": [] - }, - { - "emojiChar": "👨‍⚕️", - "emoji": "\uD83D\uDC68\u200D\u2695\uFE0F", - "description": "man health worker", - "supports_fitzpatrick": true, - "aliases": [ - "male_health_worker", - "man_health_worker" - ], - "tags": [] - }, - { - "emojiChar": "👩‍⚕️", - "emoji": "\uD83D\uDC69\u200D\u2695\uFE0F", - "description": "woman health worker", - "supports_fitzpatrick": true, - "aliases": [ - "female_health_worker", - "woman_health_worker" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🎓", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDF93", - "description": "man student", - "supports_fitzpatrick": true, - "aliases": [ - "male_student", - "man_student" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🎓", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDF93", - "description": "woman student", - "supports_fitzpatrick": true, - "aliases": [ - "female_student", - "woman_student" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🏫", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDFEB", - "description": "man teacher", - "supports_fitzpatrick": true, - "aliases": [ - "male_teacher", - "man_teacher" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🏫", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDFEB", - "description": "woman teacher", - "supports_fitzpatrick": true, - "aliases": [ - "female_teacher", - "woman_teacher" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🌾", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDF3E", - "description": "man farmer", - "supports_fitzpatrick": true, - "aliases": [ - "male_farmer", - "man_farmer" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🌾", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDF3E", - "description": "woman famer", - "supports_fitzpatrick": true, - "aliases": [ - "female_farmer", - "woman_farmer" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🍳", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDF73", - "description": "man cook", - "supports_fitzpatrick": true, - "aliases": [ - "male_cook", - "man_cook" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🍳", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDF73", - "description": "woman cook", - "supports_fitzpatrick": true, - "aliases": [ - "female_cook", - "woman_cook" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🔧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDD27", - "description": "man mechanic", - "supports_fitzpatrick": true, - "aliases": [ - "male_mechanic", - "man_mechanic" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🔧", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDD27", - "description": "woman mechanic", - "supports_fitzpatrick": true, - "aliases": [ - "female_mechanic", - "woman_mechanic" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🏭", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDFED", - "description": "man factory worker", - "supports_fitzpatrick": true, - "aliases": [ - "male_factory_worker", - "man_factory_worker" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🏭", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDFED", - "description": "woman factory worker", - "supports_fitzpatrick": true, - "aliases": [ - "female_factory_worker", - "woman_factory_worker" - ], - "tags": [] - }, - { - "emojiChar": "👨‍💼", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDCBC", - "description": "man office worker", - "supports_fitzpatrick": true, - "aliases": [ - "male_office_worker", - "man_office_worker" - ], - "tags": [] - }, - { - "emojiChar": "👩‍💼", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDCBC", - "description": "woman office worker", - "supports_fitzpatrick": true, - "aliases": [ - "female_office_worker", - "woman_office_worker" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🔬", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDD2C", - "description": "man scientist", - "supports_fitzpatrick": true, - "aliases": [ - "male_scientist", - "man_scientist" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🔬", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDD2C", - "description": "woman scientist", - "supports_fitzpatrick": true, - "aliases": [ - "female_scientist", - "woman_scientist" - ], - "tags": [] - }, - { - "emojiChar": "👨‍💻", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDCBB", - "description": "man technologist", - "supports_fitzpatrick": true, - "aliases": [ - "male_technologist", - "man_technologist" - ], - "tags": [] - }, - { - "emojiChar": "👩‍💻", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDCBB", - "description": "woman technologist", - "supports_fitzpatrick": true, - "aliases": [ - "female_technologist", - "woman_technologist" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🎤", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDFA4", - "description": "man singer", - "supports_fitzpatrick": true, - "aliases": [ - "male_singer", - "man_singer" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🎤", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDFA4", - "description": "woman singer", - "supports_fitzpatrick": true, - "aliases": [ - "female_singer", - "woman_singer" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🎨", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDFA8", - "description": "man artist", - "supports_fitzpatrick": true, - "aliases": [ - "male_artist", - "man_artist" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🎨", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDFA8", - "description": "woman artist", - "supports_fitzpatrick": true, - "aliases": [ - "female_artist", - "woman_artist" - ], - "tags": [] - }, - { - "emojiChar": "👨‍✈️", - "emoji": "\uD83D\uDC68\u200D\u2708\uFE0F", - "description": "man pilot", - "supports_fitzpatrick": true, - "aliases": [ - "male_pilot", - "man_pilot" - ], - "tags": [] - }, - { - "emojiChar": "👩‍✈️", - "emoji": "\uD83D\uDC69\u200D\u2708\uFE0F", - "description": "woman pilot", - "supports_fitzpatrick": true, - "aliases": [ - "female_pilot", - "woman_pilot" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🚀", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDE80", - "description": "man astronaut", - "supports_fitzpatrick": true, - "aliases": [ - "male_astronaut", - "man_astronaut" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🚀", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDE80", - "description": "woman astronaut", - "supports_fitzpatrick": true, - "aliases": [ - "female_astronaut", - "woman_astronaut" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🚒", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDE92", - "description": "man firefighter", - "supports_fitzpatrick": true, - "aliases": [ - "male_firefighter", - "man_firefighter" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🚒", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDE92", - "description": "woman firefighter", - "supports_fitzpatrick": true, - "aliases": [ - "female_firefighter", - "woman_firefighter" - ], - "tags": [] - }, - { - "emojiChar": "🤦‍♀️", - "emoji": "\uD83E\uDD26\u200D\u2640\uFE0F", - "description": "woman facepalm", - "supports_fitzpatrick": true, - "aliases": [ - "female_facepalm", - "woman_facepalm" - ], - "tags": [] - }, - { - "emojiChar": "🤷‍♂️", - "emoji": "\uD83E\uDD37\u200D\u2642\uFE0F", - "description": "man shrug", - "supports_fitzpatrick": true, - "aliases": [ - "male_shrug", - "man_shrug" - ], - "tags": [] - }, - { - "emojiChar": "🤷‍♀️", - "emoji": "\uD83E\uDD37\u200D\u2640\uFE0F", - "description": "woman shrug", - "supports_fitzpatrick": true, - "aliases": [ - "female_shrug", - "woman_shrug" - ], - "tags": [] - }, - { - "emojiChar": "⚕", - "emoji": "\u2695", - "description": "medical symbol", - "aliases": [ - "medical_symbol", - "staff_of_aesculapius" - ], - "tags": [] - }, - { - "emojiChar": "👨‍⚖️", - "emoji": "\uD83D\uDC68\u200D\u2696\uFE0F", - "description": "man judge", - "aliases": [ - "man_judge", - "male_judge" - ], - "tags": [] - }, - { - "emojiChar": "👩‍⚖️", - "emoji": "\uD83D\uDC69\u200D\u2696\uFE0F", - "description": "woman judge", - "aliases": [ - "woman_judge", - "female_judge" - ], - "tags": [] - }, - { - "emojiChar": "🤩", - "emoji": "\uD83E\uDD29", - "description": "star-struck", - "aliases": [ - "star_struck", - "excited", - "star_eyes", - "starry_eyed", - "wow_face", - "face_with_starry_eyes", - "grinning_face_with_star_eyes" - ], - "tags": [] - }, - { - "emojiChar": "🤪", - "emoji": "\uD83E\uDD2A", - "description": "zany face", - "aliases": [ - "zany_face", - "crazy_eyes", - "wild", - "goofy_face", - "grinning_face_with_one_large_and_one_small_eye" - ], - "tags": [] - }, - { - "emojiChar": "🤭", - "emoji": "\uD83E\uDD2D", - "description": "face with hand over mouth", - "aliases": [ - "face_with_hand_over_mouth", - "blushing_face_with_hand_over_mouth", - "smiling_face_with_smiling_eyes_and_hand_covering_mouth" - ], - "tags": [] - }, - { - "emojiChar": "🤫", - "emoji": "\uD83E\uDD2B", - "description": "shushing face", - "aliases": [ - "shushing_face", - "hush", - "quiet", - "shh", - "face_with_finger_covering_closed_lips" - ], - "tags": [] - }, - { - "emojiChar": "🤨", - "emoji": "\uD83E\uDD28", - "description": "face with raised eyebrow", - "aliases": [ - "face_with_raised_eyebrow", - "colbert", - "the_rock", - "face_with_one_eyebrow_raised" - ], - "tags": [] - }, - { - "emojiChar": "🤮", - "emoji": "\uD83E\uDD2E", - "description": "face vomiting", - "aliases": [ - "face_vomiting", - "spew", - "throwing_up", - "vomit", - "vomiting_face", - "face_with_open_mouth_vomiting" - ], - "tags": [] - }, - { - "emojiChar": "🤯", - "emoji": "\uD83E\uDD2F", - "description": "exploding head", - "aliases": [ - "exploding_head", - "mind_blown", - "shocked_face_with_exploding_head" - ], - "tags": [] - }, - { - "emojiChar": "🧐", - "emoji": "\uD83E\uDDD0", - "description": "face with monocle", - "aliases": [ - "face_with_monocle" - ], - "tags": [] - }, - { - "emojiChar": "🤬", - "emoji": "\uD83E\uDD2C", - "description": "face with symbols on mouth", - "aliases": [ - "face_with_symbols_on_mouth", - "cursing", - "cussing", - "grawlix", - "swearing", - "face_with_symbols_over_mouth", - "serious_face_with_symbols_covering_mouth" - ], - "tags": [] - }, - { - "emojiChar": "🧡", - "emoji": "\uD83E\uDDE1", - "description": "orange heart", - "aliases": [ - "orange_heart" - ], - "tags": [] - }, - { - "emojiChar": "🤟", - "emoji": "\uD83E\uDD1F", - "description": "love you gesture", - "supports_fitzpatrick": true, - "aliases": [ - "love_you_gesture", - "i_love_you_hand_sign" - ], - "tags": [] - }, - { - "emojiChar": "🤲", - "emoji": "\uD83E\uDD32", - "description": "palms up together", - "supports_fitzpatrick": true, - "aliases": [ - "palms_up_together", - "dua", - "palms_together_facing_up" - ], - "tags": [] - }, - { - "emojiChar": "🧠", - "emoji": "\uD83E\uDDE0", - "description": "brain", - "aliases": [ - "brain" - ], - "tags": [] - }, - { - "emojiChar": "🧒", - "emoji": "\uD83E\uDDD2", - "description": "child", - "supports_fitzpatrick": true, - "aliases": [ - "child", - "gender_neutral_child" - ], - "tags": [] - }, - { - "emojiChar": "🧑", - "emoji": "\uD83E\uDDD1", - "description": "person", - "supports_fitzpatrick": true, - "aliases": [ - "person", - "gender_neutral_adult", - "gender_neutral_person" - ], - "tags": [] - }, - { - "emojiChar": "🧔", - "emoji": "\uD83E\uDDD4", - "description": "man: beard", - "supports_fitzpatrick": true, - "aliases": [ - "beard", - "bearded_man", - "bearded_person", - "man_with_beard", - "person_with_beard" - ], - "tags": [] - }, - { - "emojiChar": "🧓", - "emoji": "\uD83E\uDDD3", - "description": "older person", - "supports_fitzpatrick": true, - "aliases": [ - "older_person", - "gender_neutral_older_person", - "older_adult", - "gender_neutral_older_adult" - ], - "tags": [] - }, - { - "emojiChar": "🧕", - "emoji": "\uD83E\uDDD5", - "description": "person with headscarf", - "supports_fitzpatrick": true, - "aliases": [ - "person_with_headscarf", - "woman_with_headscarf", - "hijab" - ], - "tags": [] - }, - { - "emojiChar": "🤱", - "emoji": "\uD83E\uDD31", - "description": "breastfeeding", - "supports_fitzpatrick": true, - "aliases": [ - "breastfeeding" - ], - "tags": [] - }, - { - "emojiChar": "🧙", - "emoji": "\uD83E\uDDD9", - "description": "mage", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "mage", - "gender_neutral_mage" - ], - "tags": [ - "mage" - ] - }, - { - "emojiChar": "🧙‍♂️", - "emoji": "\uD83E\uDDD9\u200D\u2642\uFE0F", - "description": "man mage", - "supports_fitzpatrick": true, - "aliases": [ - "man_mage", - "wizard", - "sorcerer" - ], - "tags": [ - "mage" - ] - }, - { - "emojiChar": "🧙‍♀️", - "emoji": "\uD83E\uDDD9\u200D\u2640\uFE0F", - "description": "woman mage", - "supports_fitzpatrick": true, - "aliases": [ - "woman_mage", - "witch", - "sorceress" - ], - "tags": [ - "mage" - ] - }, - { - "emojiChar": "🧚", - "emoji": "\uD83E\uDDDA", - "description": "fairy", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "fairy", - "gender_neutral_fairy" - ], - "tags": [ - "fairy" - ] - }, - { - "emojiChar": "🧚‍♂️", - "emoji": "\uD83E\uDDDA\u200D\u2642\uFE0F", - "description": "man fairy", - "supports_fitzpatrick": true, - "aliases": [ - "man_fairy" - ], - "tags": [ - "fairy" - ] - }, - { - "emojiChar": "🧚‍♀️", - "emoji": "\uD83E\uDDDA\u200D\u2640\uFE0F", - "description": "woman fairy", - "supports_fitzpatrick": true, - "aliases": [ - "woman_fairy" - ], - "tags": [ - "fairy" - ] - }, - { - "emojiChar": "🧛", - "emoji": "\uD83E\uDDDB", - "description": "vampire", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "vampire", - "gender_neutral_vampire" - ], - "tags": [ - "vampire" - ] - }, - { - "emojiChar": "🧛‍♂️", - "emoji": "\uD83E\uDDDB\u200D\u2642\uFE0F", - "description": "man vampire", - "supports_fitzpatrick": true, - "aliases": [ - "man_vampire", - "dracula" - ], - "tags": [ - "vampire" - ] - }, - { - "emojiChar": "🧛‍♀️", - "emoji": "\uD83E\uDDDB\u200D\u2640\uFE0F", - "description": "woman vampire", - "supports_fitzpatrick": true, - "aliases": [ - "woman_vampire" - ], - "tags": [ - "vampire" - ] - }, - { - "emojiChar": "🧜", - "emoji": "\uD83E\uDDDC", - "description": "merperson", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "merperson", - "gender_neutral_merperson" - ], - "tags": [ - "merperson" - ] - }, - { - "emojiChar": "🧜‍♂️", - "emoji": "\uD83E\uDDDC\u200D\u2642\uFE0F", - "description": "merman", - "supports_fitzpatrick": true, - "aliases": [ - "merman", - "merboy", - "man_merperson" - ], - "tags": [ - "merperson" - ] - }, - { - "emojiChar": "🧜‍♀️", - "emoji": "\uD83E\uDDDC\u200D\u2640\uFE0F", - "description": "mermaid", - "supports_fitzpatrick": true, - "aliases": [ - "mermaid", - "mergirl", - "woman_merperson" - ], - "tags": [ - "merperson" - ] - }, - { - "emojiChar": "🧝", - "emoji": "\uD83E\uDDDD", - "description": "elf", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "elf", - "gender_neutral_elf" - ], - "tags": [ - "elf" - ] - }, - { - "emojiChar": "🧝‍♂️", - "emoji": "\uD83E\uDDDD\u200D\u2642\uFE0F", - "description": "man elf", - "supports_fitzpatrick": true, - "aliases": [ - "man_elf", - "legolas" - ], - "tags": [ - "elf" - ] - }, - { - "emojiChar": "🧝‍♀️", - "emoji": "\uD83E\uDDDD\u200D\u2640\uFE0F", - "description": "woman elf", - "supports_fitzpatrick": true, - "aliases": [ - "woman_elf" - ], - "tags": [ - "elf" - ] - }, - { - "emojiChar": "🧞", - "emoji": "\uD83E\uDDDE", - "description": "genie", - "supports_gender": true, - "aliases": [ - "genie", - "gender_neutral_genie", - "djinni", - "jinni" - ], - "tags": [ - "genie" - ] - }, - { - "emojiChar": "🧞‍♂️", - "emoji": "\uD83E\uDDDE\u200D\u2642\uFE0F", - "description": "man genie", - "aliases": [ - "man_genie" - ], - "tags": [ - "genie" - ] - }, - { - "emojiChar": "🧞‍♀️", - "emoji": "\uD83E\uDDDE\u200D\u2640\uFE0F", - "description": "woman genie", - "aliases": [ - "woman_genie" - ], - "tags": [ - "genie" - ] - }, - { - "emojiChar": "🧟", - "emoji": "\uD83E\uDDDF", - "description": "zombie", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "zombie", - "gender_neutral_zombie" - ], - "tags": [ - "zombie" - ] - }, - { - "emojiChar": "🧟‍♂️", - "emoji": "\uD83E\uDDDF\u200D\u2642\uFE0F", - "description": "man zombie", - "supports_fitzpatrick": true, - "aliases": [ - "man_zombie" - ], - "tags": [ - "zombie" - ] - }, - { - "emojiChar": "🧟‍♀️", - "emoji": "\uD83E\uDDDF\u200D\u2640\uFE0F", - "description": "woman zombie", - "supports_fitzpatrick": true, - "aliases": [ - "woman_zombie" - ], - "tags": [ - "zombie" - ] - }, - { - "emojiChar": "🧖", - "emoji": "\uD83E\uDDD6", - "description": "person in steamy room", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "person_in_steamy_room", - "sauna" - ], - "tags": [ - "person_in_steamy_room" - ] - }, - { - "emojiChar": "🧖‍♂️", - "emoji": "\uD83E\uDDD6\u200D\u2642\uFE0F", - "description": "man in steamy room", - "supports_fitzpatrick": true, - "aliases": [ - "man_in_steamy_room", - "man_in_sauna" - ], - "tags": [ - "person_in_steamy_room" - ] - }, - { - "emojiChar": "🧖‍♀️", - "emoji": "\uD83E\uDDD6\u200D\u2640\uFE0F", - "description": "woman in steamy room", - "supports_fitzpatrick": true, - "aliases": [ - "woman_in_steamy_room", - "woman_in_sauna" - ], - "tags": [ - "person_in_steamy_room" - ] - }, - { - "emojiChar": "🧗", - "emoji": "\uD83E\uDDD7", - "description": "person climbing", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "person_climbing", - "climber", - "rock_climbing" - ], - "tags": [ - "person_climbing" - ] - }, - { - "emojiChar": "🧗‍♂️", - "emoji": "\uD83E\uDDD7\u200D\u2642\uFE0F", - "description": "man climbing", - "supports_fitzpatrick": true, - "aliases": [ - "man_climbing", - "man_climber", - "man_rock_climbing" - ], - "tags": [ - "person_climbing" - ] - }, - { - "emojiChar": "🧗‍♀️", - "emoji": "\uD83E\uDDD7\u200D\u2640\uFE0F", - "description": "woman climbing", - "supports_fitzpatrick": true, - "aliases": [ - "woman_climbing", - "woman_climber", - "woman_rock_climbing" - ], - "tags": [ - "person_climbing" - ] - }, - { - "emojiChar": "🧘", - "emoji": "\uD83E\uDDD8", - "description": "person in lotus position", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "person_in_lotus_position", - "yoga", - "meditation" - ], - "tags": [ - "person_in_lotus_position" - ] - }, - { - "emojiChar": "🧘‍♂️", - "emoji": "\uD83E\uDDD8\u200D\u2642\uFE0F", - "description": "man in lotus position", - "supports_fitzpatrick": true, - "aliases": [ - "man_in_lotus_position", - "man_yoga", - "man_meditation" - ], - "tags": [ - "person_in_lotus_position" - ] - }, - { - "emojiChar": "🧘‍♀️", - "emoji": "\uD83E\uDDD8\u200D\u2640\uFE0F", - "description": "woman in lotus position", - "supports_fitzpatrick": true, - "aliases": [ - "woman_in_lotus_position", - "woman_yoga", - "woman_meditation" - ], - "tags": [ - "person_in_lotus_position" - ] - }, - { - "emojiChar": "🦓", - "emoji": "\uD83E\uDD93", - "description": "zebra face", - "aliases": [ - "zebra_face", - "zebra" - ], - "tags": [] - }, - { - "emojiChar": "🦒", - "emoji": "\uD83E\uDD92", - "description": "giraffe face", - "aliases": [ - "giraffe_face", - "giraffe" - ], - "tags": [] - }, - { - "emojiChar": "🦔", - "emoji": "\uD83E\uDD94", - "description": "hedgehog", - "aliases": [ - "hedgehog" - ], - "tags": [] - }, - { - "emojiChar": "🦕", - "emoji": "\uD83E\uDD95", - "description": "sauropod", - "aliases": [ - "sauropod", - "brontosaurus", - "diplodocus", - "dinosaur" - ], - "tags": [] - }, - { - "emojiChar": "🦖", - "emoji": "\uD83E\uDD96", - "description": "T-Rex", - "aliases": [ - "trex", - "t_rex", - "tyrannosaurus_rex" - ], - "tags": [] - }, - { - "emojiChar": "🦗", - "emoji": "\uD83E\uDD97", - "description": "cricket", - "aliases": [ - "cricket" - ], - "tags": [] - }, - { - "emojiChar": "🥥", - "emoji": "\uD83E\uDD65", - "description": "coconut", - "aliases": [ - "coconut", - "cocoanut" - ], - "tags": [] - }, - { - "emojiChar": "🥦", - "emoji": "\uD83E\uDD66", - "description": "broccoli", - "aliases": [ - "broccoli" - ], - "tags": [] - }, - { - "emojiChar": "🥨", - "emoji": "\uD83E\uDD68", - "description": "pretzel", - "aliases": [ - "pretzel" - ], - "tags": [] - }, - { - "emojiChar": "🥩", - "emoji": "\uD83E\uDD69", - "description": "cut of meat", - "aliases": [ - "cut_of_meat", - "meat", - "steak" - ], - "tags": [] - }, - { - "emojiChar": "🥪", - "emoji": "\uD83E\uDD6A", - "description": "sandwich", - "aliases": [ - "sandwich" - ], - "tags": [] - }, - { - "emojiChar": "🥣", - "emoji": "\uD83E\uDD63", - "description": "bowl with spoon", - "aliases": [ - "bowl_with_spoon", - "cereal_bowl" - ], - "tags": [] - }, - { - "emojiChar": "🥫", - "emoji": "\uD83E\uDD6B", - "description": "canned food", - "aliases": [ - "canned_food", - "tin_can", - "can_of_food", - "tinned_food" - ], - "tags": [] - }, - { - "emojiChar": "🥟", - "emoji": "\uD83E\uDD5F", - "description": "dumpling", - "aliases": [ - "dumpling", - "jiaozi", - "gyoza", - "pierogi", - "empanada", - "xiaolongbao" - ], - "tags": [] - }, - { - "emojiChar": "🥠", - "emoji": "\uD83E\uDD60", - "description": "fortune cookie", - "aliases": [ - "fortune_cookie" - ], - "tags": [] - }, - { - "emojiChar": "🥡", - "emoji": "\uD83E\uDD61", - "description": "takeout box", - "aliases": [ - "takeout_box", - "chinese_food_box", - "oyster_pail" - ], - "tags": [] - }, - { - "emojiChar": "🥧", - "emoji": "\uD83E\uDD67", - "description": "pie", - "aliases": [ - "pie" - ], - "tags": [] - }, - { - "emojiChar": "🥤", - "emoji": "\uD83E\uDD64", - "description": "cup with straw", - "aliases": [ - "cup_with_straw", - "milkshake", - "smoothie", - "soda_pop", - "soft_drink", - "to_go_cup" - ], - "tags": [] - }, - { - "emojiChar": "🥢", - "emoji": "\uD83E\uDD62", - "description": "chopsticks", - "aliases": [ - "chopsticks" - ], - "tags": [] - }, - { - "emojiChar": "🛸", - "emoji": "\uD83D\uDEF8", - "description": "flying saucer", - "aliases": [ - "flying_saucer", - "ufo", - "unidentified_flying_object" - ], - "tags": [] - }, - { - "emojiChar": "🛷", - "emoji": "\uD83D\uDEF7", - "description": "sled", - "aliases": [ - "sled" - ], - "tags": [] - }, - { - "emojiChar": "🥌", - "emoji": "\uD83E\uDD4C", - "description": "curling stone", - "aliases": [ - "curling_stone" - ], - "tags": [] - }, - { - "emojiChar": "🧣", - "emoji": "\uD83E\uDDE3", - "description": "scarf", - "aliases": [ - "scarf" - ], - "tags": [] - }, - { - "emojiChar": "🧤", - "emoji": "\uD83E\uDDE4", - "description": "gloves", - "aliases": [ - "gloves" - ], - "tags": [] - }, - { - "emojiChar": "🧥", - "emoji": "\uD83E\uDDE5", - "description": "coat", - "aliases": [ - "coat" - ], - "tags": [] - }, - { - "emojiChar": "🧦", - "emoji": "\uD83E\uDDE6", - "description": "socks", - "aliases": [ - "socks" - ], - "tags": [] - }, - { - "emojiChar": "🧢", - "emoji": "\uD83E\uDDE2", - "description": "billed cap", - "aliases": [ - "billed_cap", - "baseball_cap", - "billed_hat" - ], - "tags": [] - }, - { - "emojiChar": "🥰", - "emoji": "\uD83E\uDD70", - "description": "smiling face with hearts", - "aliases": [ - "smiling_face_with_hearts", - "in_love_face", - "smiling_face_with_smiling_eyes_and_three_hearts" - ], - "tags": [] - }, - { - "emojiChar": "🥵", - "emoji": "\uD83E\uDD75", - "description": "hot face", - "aliases": [ - "hot_face", - "overheated_face" - ], - "tags": [] - }, - { - "emojiChar": "🥶", - "emoji": "\uD83E\uDD76", - "description": "cold face", - "aliases": [ - "cold_face", - "freezing_face" - ], - "tags": [] - }, - { - "emojiChar": "🥴", - "emoji": "\uD83E\uDD74", - "description": "woozy face", - "aliases": [ - "woozy_face", - "drunk_face", - "face_with_uneven_eyes_and_wavy_mouth" - ], - "tags": [] - }, - { - "emojiChar": "🥳", - "emoji": "\uD83E\uDD73", - "description": "partying face", - "aliases": [ - "partying_face", - "party_face", - "face_with_party_horn_and_party_hat" - ], - "tags": [] - }, - { - "emojiChar": "🥺", - "emoji": "\uD83E\uDD7A", - "description": "pleading face", - "aliases": [ - "pleading_face", - "face_with_pleading_eyes" - ], - "tags": [] - }, - { - "emojiChar": "🦵", - "emoji": "\uD83E\uDDB5", - "description": "leg", - "supports_fitzpatrick": true, - "aliases": [ - "leg" - ], - "tags": [] - }, - { - "emojiChar": "🦶", - "emoji": "\uD83E\uDDB6", - "description": "foot", - "supports_fitzpatrick": true, - "aliases": [ - "foot" - ], - "tags": [] - }, - { - "emojiChar": "🦷", - "emoji": "\uD83E\uDDB7", - "description": "tooth", - "aliases": [ - "tooth" - ], - "tags": [] - }, - { - "emojiChar": "🦴", - "emoji": "\uD83E\uDDB4", - "description": "bone", - "aliases": [ - "bone" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🦰", - "emoji": "\uD83D\uDC68\u200D\uD83E\uDDB0", - "description": "man: red hair", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_red_hair", - "man_redhead", - "man_ginger" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🦰", - "emoji": "\uD83D\uDC69\u200D\uD83E\uDDB0", - "description": "woman: red hair", - "supports_fitzpatrick": true, - "aliases": [ - "woman_with_red_hair", - "woman_redhead", - "woman_ginger" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🦱", - "emoji": "\uD83D\uDC68\u200D\uD83E\uDDB1", - "description": "man: curly hair", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_curly_hair" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🦱", - "emoji": "\uD83D\uDC69\u200D\uD83E\uDDB1", - "description": "woman: curly hair", - "supports_fitzpatrick": true, - "aliases": [ - "woman_with_curly_hair" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🦳", - "emoji": "\uD83D\uDC68\u200D\uD83E\uDDB3", - "description": "man: white hair", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_white_hair", - "man_with_gray_hair", - "man_with_grey_hair" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🦳", - "emoji": "\uD83D\uDC69\u200D\uD83E\uDDB3", - "description": "woman: white hair", - "supports_fitzpatrick": true, - "aliases": [ - "woman_with_white_hair", - "woman_with_gray_hair", - "woman_with_grey_hair" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🦲", - "emoji": "\uD83D\uDC68\u200D\uD83E\uDDB2", - "description": "man: bald", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_no_hair", - "bald_man" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🦲", - "emoji": "\uD83D\uDC69\u200D\uD83E\uDDB2", - "description": "woman: bald", - "supports_fitzpatrick": true, - "aliases": [ - "woman_with_no_hair", - "bald_woman" - ], - "tags": [] - }, - { - "emojiChar": "🦸", - "emoji": "\uD83E\uDDB8", - "description": "superhero", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "superhero" - ], - "tags": [] - }, - { - "emojiChar": "🦸‍♂️", - "emoji": "\uD83E\uDDB8\u200D\u2642\uFE0F", - "description": "man superhero", - "supports_fitzpatrick": true, - "aliases": [ - "man_superhero" - ], - "tags": [] - }, - { - "emojiChar": "🦸‍♀️", - "emoji": "\uD83E\uDDB8\u200D\u2640\uFE0F", - "description": "woman superhero", - "supports_fitzpatrick": true, - "aliases": [ - "woman_superhero" - ], - "tags": [] - }, - { - "emojiChar": "🦹", - "emoji": "\uD83E\uDDB9", - "description": "supervillain", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "supervillain" - ], - "tags": [] - }, - { - "emojiChar": "🦹‍♂️", - "emoji": "\uD83E\uDDB9\u200D\u2642\uFE0F", - "description": "man_supervillain", - "supports_fitzpatrick": true, - "aliases": [ - "man_supervillain" - ], - "tags": [] - }, - { - "emojiChar": "🦹‍♀️", - "emoji": "\uD83E\uDDB9\u200D\u2640\uFE0F", - "description": "woman_supervillain", - "supports_fitzpatrick": true, - "aliases": [ - "woman_supervillain" - ], - "tags": [] - }, - { - "emojiChar": "🦝", - "emoji": "\uD83E\uDD9D", - "description": "raccoon", - "aliases": [ - "raccoon" - ], - "tags": [] - }, - { - "emojiChar": "🦙", - "emoji": "\uD83E\uDD99", - "description": "llama", - "aliases": [ - "llama", - "alpaca" - ], - "tags": [] - }, - { - "emojiChar": "🦛", - "emoji": "\uD83E\uDD9B", - "description": "hippopotamus", - "aliases": [ - "hippo", - "hippopotamus" - ], - "tags": [] - }, - { - "emojiChar": "🦘", - "emoji": "\uD83E\uDD98", - "description": "kangaroo", - "aliases": [ - "roo", - "kangaroo" - ], - "tags": [] - }, - { - "emojiChar": "🦡", - "emoji": "\uD83E\uDDA1", - "description": "badger", - "aliases": [ - "badger" - ], - "tags": [] - }, - { - "emojiChar": "🦢", - "emoji": "\uD83E\uDDA2", - "description": "swan", - "aliases": [ - "swan" - ], - "tags": [] - }, - { - "emojiChar": "🦚", - "emoji": "\uD83E\uDD9A", - "description": "peacock", - "aliases": [ - "peacock" - ], - "tags": [] - }, - { - "emojiChar": "🦜", - "emoji": "\uD83E\uDD9C", - "description": "parrot", - "aliases": [ - "parrot" - ], - "tags": [] - }, - { - "emojiChar": "🦟", - "emoji": "\uD83E\uDD9F", - "description": "mosquito", - "aliases": [ - "mosquito" - ], - "tags": [] - }, - { - "emojiChar": "🦠", - "emoji": "\uD83E\uDDA0", - "description": "microbe", - "aliases": [ - "microbe" - ], - "tags": [] - }, - { - "emojiChar": "🥭", - "emoji": "\uD83E\uDD6D", - "description": "mango", - "aliases": [ - "mango" - ], - "tags": [] - }, - { - "emojiChar": "🥬", - "emoji": "\uD83E\uDD6C", - "description": "leafy green", - "aliases": [ - "leafy_green", - "bok_choy", - "chinese_cabbage", - "cos_lettuce", - "romaine_lettuce", - "leafy_greens" - ], - "tags": [] - }, - { - "emojiChar": "🥯", - "emoji": "\uD83E\uDD6F", - "description": "bagel", - "aliases": [ - "bagel" - ], - "tags": [] - }, - { - "emojiChar": "🧂", - "emoji": "\uD83E\uDDC2", - "description": "salt shaker", - "aliases": [ - "salt_shaker", - "salt" - ], - "tags": [] - }, - { - "emojiChar": "🥮", - "emoji": "\uD83E\uDD6E", - "description": "moon cake", - "aliases": [ - "moon_cake", - "mooncake" - ], - "tags": [] - }, - { - "emojiChar": "🦞", - "emoji": "\uD83E\uDD9E", - "description": "lobster", - "aliases": [ - "lobster" - ], - "tags": [] - }, - { - "emojiChar": "🧁", - "emoji": "\uD83E\uDDC1", - "description": "cupcake", - "aliases": [ - "cupcake", - "fairy_cake" - ], - "tags": [] - }, - { - "emojiChar": "🧭", - "emoji": "\uD83E\uDDED", - "description": "compass", - "aliases": [ - "compass" - ], - "tags": [] - }, - { - "emojiChar": "🧱", - "emoji": "\uD83E\uDDF1", - "description": "brick", - "aliases": [ - "brick", - "bricks" - ], - "tags": [] - }, - { - "emojiChar": "🛹", - "emoji": "\uD83D\uDEF9", - "description": "skateboard", - "aliases": [ - "skateboard" - ], - "tags": [] - }, - { - "emojiChar": "🧳", - "emoji": "\uD83E\uDDF3", - "description": "luggage", - "aliases": [ - "lugagge", - "suitcase" - ], - "tags": [] - }, - { - "emojiChar": "🧨", - "emoji": "\uD83E\uDDE8", - "description": "firecracker", - "aliases": [ - "firecracker", - "dynamite" - ], - "tags": [] - }, - { - "emojiChar": "🧧", - "emoji": "\uD83E\uDDE7", - "description": "red gift envelope", - "aliases": [ - "red_envelope", - "red_gift_envelope", - "ang_pao", - "hongbao", - "lai_see", - "red_packet" - ], - "tags": [] - }, - { - "emojiChar": "🥎", - "emoji": "\uD83E\uDD4E", - "description": "softball", - "aliases": [ - "softball" - ], - "tags": [] - }, - { - "emojiChar": "🥏", - "emoji": "\uD83E\uDD4F", - "description": "flying disc", - "aliases": [ - "flying_disc" - ], - "tags": [] - }, - { - "emojiChar": "🥍", - "emoji": "\uD83E\uDD4D", - "description": "lacrosse stick and ball", - "aliases": [ - "lacrosse", - "lacrosse_stick_and_ball" - ], - "tags": [] - }, - { - "emojiChar": "🧿", - "emoji": "\uD83E\uDDFF", - "description": "nazar amulet", - "aliases": [ - "nazar_amulet", - "evil_eye_talisman", - "nazar_boncugu" - ], - "tags": [] - }, - { - "emojiChar": "🧩", - "emoji": "\uD83E\uDDE9", - "description": "jigsaw puzzle piece", - "aliases": [ - "jigsaw", - "puzzle_piece", - "jigsaw_puzzle_piece" - ], - "tags": [] - }, - { - "emojiChar": "🧸", - "emoji": "\uD83E\uDDF8", - "description": "teddy bear", - "aliases": [ - "teddy_bear" - ], - "tags": [] - }, - { - "emojiChar": "♟️", - "emoji": "\u265F\uFE0F", - "description": "black chess pawn", - "aliases": [ - "black_chess_pawn", - "chess_pawn" - ], - "tags": [] - }, - { - "emojiChar": "🧵", - "emoji": "\uD83E\uDDF5", - "description": "spool of thread", - "aliases": [ - "spool_of_thread", - "thread" - ], - "tags": [] - }, - { - "emojiChar": "🧶", - "emoji": "\uD83E\uDDF6", - "description": "ball of yarn", - "aliases": [ - "ball_of_yarn", - "yarn" - ], - "tags": [] - }, - { - "emojiChar": "🥽", - "emoji": "\uD83E\uDD7D", - "description": "goggles", - "aliases": [ - "goggles" - ], - "tags": [] - }, - { - "emojiChar": "🥼", - "emoji": "\uD83E\uDD7C", - "description": "lab coat", - "aliases": [ - "lab_coat" - ], - "tags": [] - }, - { - "emojiChar": "🥾", - "emoji": "\uD83E\uDD7E", - "description": "hiking boot", - "aliases": [ - "hiking_boot" - ], - "tags": [] - }, - { - "emojiChar": "🥿", - "emoji": "\uD83E\uDD7F", - "description": "flat shoe", - "aliases": [ - "flat_shoe" - ], - "tags": [] - }, - { - "emojiChar": "🧮", - "emoji": "\uD83E\uDDEE", - "description": "abacus", - "aliases": [ - "abacus" - ], - "tags": [] - }, - { - "emojiChar": "🧾", - "emoji": "\uD83E\uDDFE", - "description": "receipt", - "aliases": [ - "receipt" - ], - "tags": [] - }, - { - "emojiChar": "🧰", - "emoji": "\uD83E\uDDF0", - "description": "toolbox", - "aliases": [ - "toolbox" - ], - "tags": [] - }, - { - "emojiChar": "🧲", - "emoji": "\uD83E\uDDF2", - "description": "magnet", - "aliases": [ - "magnet" - ], - "tags": [] - }, - { - "emojiChar": "🧪", - "emoji": "\uD83E\uDDEA", - "description": "test tube", - "aliases": [ - "test_tube" - ], - "tags": [] - }, - { - "emojiChar": "🧫", - "emoji": "\uD83E\uDDEB", - "description": "petri dish", - "aliases": [ - "petri_dish" - ], - "tags": [] - }, - { - "emojiChar": "🧬", - "emoji": "\uD83E\uDDEC", - "description": "dna", - "aliases": [ - "dna", - "dna_double_helix" - ], - "tags": [] - }, - { - "emojiChar": "🧴", - "emoji": "\uD83E\uDDF4", - "description": "lotion bottle", - "aliases": [ - "lotion_bottle" - ], - "tags": [] - }, - { - "emojiChar": "🧷", - "emoji": "\uD83E\uDDF7", - "description": "safety pin", - "aliases": [ - "safety_pin" - ], - "tags": [] - }, - { - "emojiChar": "🧹", - "emoji": "\uD83E\uDDF9", - "description": "broom", - "aliases": [ - "broom" - ], - "tags": [] - }, - { - "emojiChar": "🧺", - "emoji": "\uD83E\uDDFA", - "description": "basket", - "aliases": [ - "basket" - ], - "tags": [] - }, - { - "emojiChar": "🧻", - "emoji": "\uD83E\uDDFB", - "description": "roll of paper", - "aliases": [ - "roll_of_paper", - "toilet_paper" - ], - "tags": [] - }, - { - "emojiChar": "🧼", - "emoji": "\uD83E\uDDFC", - "description": "bar of soap", - "aliases": [ - "bar_of_soap", - "soap" - ], - "tags": [] - }, - { - "emojiChar": "🧽", - "emoji": "\uD83E\uDDFD", - "description": "sponge", - "aliases": [ - "sponge" - ], - "tags": [] - }, - { - "emojiChar": "🧯", - "emoji": "\uD83E\uDDEF", - "description": "fire extinguisher", - "aliases": [ - "fire_extinguisher" - ], - "tags": [] - }, - { - "emojiChar": "♾️", - "emoji": "\u267E\uFE0F", - "description": "infinity", - "aliases": [ - "infinity", - "permanent_paper_sign" - ], - "tags": [] - }, - { - "emojiChar": "♾🏴‍☠️", - "emoji": "\u267E\uD83C\uDFF4\u200D\u2620\uFE0F", - "description": "pirate flag", - "aliases": [ - "pirate_flag", - "jolly_roger" - ], - "tags": [] - }, - { - "emojiChar": "🇦🇨", - "emoji": "\uD83C\uDDE6\uD83C\uDDE8", - "description": "regional indicator symbol letter a + regional indicator symbol letter c", - "aliases": [ - "ac" - ], - "tags": [ - "flag", - "ascension island" - ] - }, - { - "emojiChar": "🇦🇩", - "emoji": "\uD83C\uDDE6\uD83C\uDDE9", - "description": "regional indicator symbol letter a + regional indicator symbol letter d", - "aliases": [ - "ad" - ], - "tags": [ - "flag", - "andorra" - ] - }, - { - "emojiChar": "🇦🇪", - "emoji": "\uD83C\uDDE6\uD83C\uDDEA", - "description": "regional indicator symbol letter a + regional indicator symbol letter e", - "aliases": [ - "ae" - ], - "tags": [ - "flag", - "united arab emirates" - ] - }, - { - "emojiChar": "🇦🇫", - "emoji": "\uD83C\uDDE6\uD83C\uDDEB", - "description": "regional indicator symbol letter a + regional indicator symbol letter f", - "aliases": [ - "af" - ], - "tags": [ - "flag", - "afghanistan" - ] - }, - { - "emojiChar": "🇦🇬", - "emoji": "\uD83C\uDDE6\uD83C\uDDEC", - "description": "regional indicator symbol letter a + regional indicator symbol letter g", - "aliases": [ - "ag" - ], - "tags": [ - "flag", - "antigua and barbuda" - ] - }, - { - "emojiChar": "🇦🇮", - "emoji": "\uD83C\uDDE6\uD83C\uDDEE", - "description": "regional indicator symbol letter a + regional indicator symbol letter i", - "aliases": [ - "ai" - ], - "tags": [ - "flag", - "anguilla" - ] - }, - { - "emojiChar": "🇦🇱", - "emoji": "\uD83C\uDDE6\uD83C\uDDF1", - "description": "regional indicator symbol letter a + regional indicator symbol letter l", - "aliases": [ - "al" - ], - "tags": [ - "flag", - "albania" - ] - }, - { - "emojiChar": "🇦🇲", - "emoji": "\uD83C\uDDE6\uD83C\uDDF2", - "description": "regional indicator symbol letter a + regional indicator symbol letter m", - "aliases": [ - "am" - ], - "tags": [ - "flag", - "armenia" - ] - }, - { - "emojiChar": "🇦🇴", - "emoji": "\uD83C\uDDE6\uD83C\uDDF4", - "description": "regional indicator symbol letter a + regional indicator symbol letter o", - "aliases": [ - "ao" - ], - "tags": [ - "flag", - "angola" - ] - }, - { - "emojiChar": "🇦🇶", - "emoji": "\uD83C\uDDE6\uD83C\uDDF6", - "description": "regional indicator symbol letter a + regional indicator symbol letter q", - "aliases": [ - "aq" - ], - "tags": [ - "flag", - "antarctica" - ] - }, - { - "emojiChar": "🇦🇷", - "emoji": "\uD83C\uDDE6\uD83C\uDDF7", - "description": "regional indicator symbol letter a + regional indicator symbol letter r", - "aliases": [ - "ar" - ], - "tags": [ - "flag", - "argentina" - ] - }, - { - "emojiChar": "🇦🇸", - "emoji": "\uD83C\uDDE6\uD83C\uDDF8", - "description": "regional indicator symbol letter a + regional indicator symbol letter s", - "aliases": [ - "as" - ], - "tags": [ - "flag", - "american samoa" - ] - }, - { - "emojiChar": "🇦🇹", - "emoji": "\uD83C\uDDE6\uD83C\uDDF9", - "description": "regional indicator symbol letter a + regional indicator symbol letter t", - "aliases": [ - "at" - ], - "tags": [ - "flag", - "austria" - ] - }, - { - "emojiChar": "🇦🇺", - "emoji": "\uD83C\uDDE6\uD83C\uDDFA", - "description": "regional indicator symbol letter a + regional indicator symbol letter u", - "aliases": [ - "au" - ], - "tags": [ - "flag", - "australia" - ] - }, - { - "emojiChar": "🇦🇼", - "emoji": "\uD83C\uDDE6\uD83C\uDDFC", - "description": "regional indicator symbol letter a + regional indicator symbol letter w", - "aliases": [ - "aw" - ], - "tags": [ - "flag", - "aruba" - ] - }, - { - "emojiChar": "🇦🇽", - "emoji": "\uD83C\uDDE6\uD83C\uDDFD", - "description": "regional indicator symbol letter a + regional indicator symbol letter x", - "aliases": [ - "ax" - ], - "tags": [ - "flag", - "aland islands" - ] - }, - { - "emojiChar": "🇦🇿", - "emoji": "\uD83C\uDDE6\uD83C\uDDFF", - "description": "regional indicator symbol letter a + regional indicator symbol letter z", - "aliases": [ - "az" - ], - "tags": [ - "flag", - "azerbaijan" - ] - }, - { - "emojiChar": "🇧🇦", - "emoji": "\uD83C\uDDE7\uD83C\uDDE6", - "description": "regional indicator symbol letter b + regional indicator symbol letter a", - "aliases": [ - "ba" - ], - "tags": [ - "flag", - "bosnia and herzegovina" - ] - }, - { - "emojiChar": "🇧🇧", - "emoji": "\uD83C\uDDE7\uD83C\uDDE7", - "description": "regional indicator symbol letter b + regional indicator symbol letter b", - "aliases": [ - "bb" - ], - "tags": [ - "flag", - "barbados" - ] - }, - { - "emojiChar": "🇧🇩", - "emoji": "\uD83C\uDDE7\uD83C\uDDE9", - "description": "regional indicator symbol letter b + regional indicator symbol letter d", - "aliases": [ - "bd" - ], - "tags": [ - "flag", - "bangladesh" - ] - }, - { - "emojiChar": "🇧🇪", - "emoji": "\uD83C\uDDE7\uD83C\uDDEA", - "description": "regional indicator symbol letter b + regional indicator symbol letter e", - "aliases": [ - "be" - ], - "tags": [ - "flag", - "belgium" - ] - }, - { - "emojiChar": "🇧🇫", - "emoji": "\uD83C\uDDE7\uD83C\uDDEB", - "description": "regional indicator symbol letter b + regional indicator symbol letter f", - "aliases": [ - "bf" - ], - "tags": [ - "flag", - "burkina faso" - ] - }, - { - "emojiChar": "🇧🇬", - "emoji": "\uD83C\uDDE7\uD83C\uDDEC", - "description": "regional indicator symbol letter b + regional indicator symbol letter g", - "aliases": [ - "bg" - ], - "tags": [ - "flag", - "bulgaria" - ] - }, - { - "emojiChar": "🇧🇭", - "emoji": "\uD83C\uDDE7\uD83C\uDDED", - "description": "regional indicator symbol letter b + regional indicator symbol letter h", - "aliases": [ - "bh" - ], - "tags": [ - "flag", - "bahrain" - ] - }, - { - "emojiChar": "🇧🇮", - "emoji": "\uD83C\uDDE7\uD83C\uDDEE", - "description": "regional indicator symbol letter b + regional indicator symbol letter i", - "aliases": [ - "bi" - ], - "tags": [ - "flag", - "burundi" - ] - }, - { - "emojiChar": "🇧🇯", - "emoji": "\uD83C\uDDE7\uD83C\uDDEF", - "description": "regional indicator symbol letter b + regional indicator symbol letter j", - "aliases": [ - "bj" - ], - "tags": [ - "flag", - "benin" - ] - }, - { - "emojiChar": "🇧🇱", - "emoji": "\uD83C\uDDE7\uD83C\uDDF1", - "description": "regional indicator symbol letter b + regional indicator symbol letter l", - "aliases": [ - "bl" - ], - "tags": [ - "flag", - "st. barthelemy" - ] - }, - { - "emojiChar": "🇧🇲", - "emoji": "\uD83C\uDDE7\uD83C\uDDF2", - "description": "regional indicator symbol letter b + regional indicator symbol letter m", - "aliases": [ - "bm" - ], - "tags": [ - "flag", - "bermuda" - ] - }, - { - "emojiChar": "🇧🇳", - "emoji": "\uD83C\uDDE7\uD83C\uDDF3", - "description": "regional indicator symbol letter b + regional indicator symbol letter n", - "aliases": [ - "bn" - ], - "tags": [ - "flag", - "brunei darussalam" - ] - }, - { - "emojiChar": "🇧🇴", - "emoji": "\uD83C\uDDE7\uD83C\uDDF4", - "description": "regional indicator symbol letter b + regional indicator symbol letter o", - "aliases": [ - "bo" - ], - "tags": [ - "flag", - "bolivia" - ] - }, - { - "emojiChar": "🇧🇶", - "emoji": "\uD83C\uDDE7\uD83C\uDDF6", - "description": "regional indicator symbol letter b + regional indicator symbol letter q", - "aliases": [ - "bq" - ], - "tags": [ - "flag", - "caribbean netherlands", - "bonaire" - ] - }, - { - "emojiChar": "🇧🇷", - "emoji": "\uD83C\uDDE7\uD83C\uDDF7", - "description": "regional indicator symbol letter b + regional indicator symbol letter r", - "aliases": [ - "br" - ], - "tags": [ - "flag", - "brazil" - ] - }, - { - "emojiChar": "🇧🇸", - "emoji": "\uD83C\uDDE7\uD83C\uDDF8", - "description": "regional indicator symbol letter b + regional indicator symbol letter s", - "aliases": [ - "bs" - ], - "tags": [ - "flag", - "bahamas" - ] - }, - { - "emojiChar": "🇧🇹", - "emoji": "\uD83C\uDDE7\uD83C\uDDF9", - "description": "regional indicator symbol letter b + regional indicator symbol letter t", - "aliases": [ - "bt" - ], - "tags": [ - "flag", - "bhutan" - ] - }, - { - "emojiChar": "🇧🇻", - "emoji": "\uD83C\uDDE7\uD83C\uDDFB", - "description": "regional indicator symbol letter b + regional indicator symbol letter v", - "aliases": [ - "bv" - ], - "tags": [ - "flag", - "bouvet island" - ] - }, - { - "emojiChar": "🇧🇼", - "emoji": "\uD83C\uDDE7\uD83C\uDDFC", - "description": "regional indicator symbol letter b + regional indicator symbol letter w", - "aliases": [ - "bw" - ], - "tags": [ - "flag", - "botswana" - ] - }, - { - "emojiChar": "🇧🇾", - "emoji": "\uD83C\uDDE7\uD83C\uDDFE", - "description": "regional indicator symbol letter b + regional indicator symbol letter y", - "aliases": [ - "by" - ], - "tags": [ - "flag", - "belarus" - ] - }, - { - "emojiChar": "🇧🇿", - "emoji": "\uD83C\uDDE7\uD83C\uDDFF", - "description": "regional indicator symbol letter b + regional indicator symbol letter z", - "aliases": [ - "bz" - ], - "tags": [ - "flag", - "belize" - ] - }, - { - "emojiChar": "🇨🇦", - "emoji": "\uD83C\uDDE8\uD83C\uDDE6", - "description": "regional indicator symbol letter c + regional indicator symbol letter a", - "aliases": [ - "ca" - ], - "tags": [ - "flag", - "canada" - ] - }, - { - "emojiChar": "🇨🇨", - "emoji": "\uD83C\uDDE8\uD83C\uDDE8", - "description": "regional indicator symbol letter c + regional indicator symbol letter c", - "aliases": [ - "cc" - ], - "tags": [ - "flag", - "cocos (keeling) islands" - ] - }, - { - "emojiChar": "🇨🇩", - "emoji": "\uD83C\uDDE8\uD83C\uDDE9", - "description": "regional indicator symbol letter c + regional indicator symbol letter d", - "aliases": [ - "cd_flag" - ], - "tags": [ - "flag", - "democratic republic of the congo" - ] - }, - { - "emojiChar": "🇨🇫", - "emoji": "\uD83C\uDDE8\uD83C\uDDEB", - "description": "regional indicator symbol letter c + regional indicator symbol letter f", - "aliases": [ - "cf" - ], - "tags": [ - "flag", - "central african republic" - ] - }, - { - "emojiChar": "🇨🇬", - "emoji": "\uD83C\uDDE8\uD83C\uDDEC", - "description": "regional indicator symbol letter c + regional indicator symbol letter g", - "aliases": [ - "cg" - ], - "tags": [ - "flag", - "republic of the congo" - ] - }, - { - "emojiChar": "🇨🇭", - "emoji": "\uD83C\uDDE8\uD83C\uDDED", - "description": "regional indicator symbol letter c + regional indicator symbol letter h", - "aliases": [ - "ch" - ], - "tags": [ - "flag", - "switzerland" - ] - }, - { - "emojiChar": "🇨🇮", - "emoji": "\uD83C\uDDE8\uD83C\uDDEE", - "description": "regional indicator symbol letter c + regional indicator symbol letter i", - "aliases": [ - "ci" - ], - "tags": [ - "flag", - "ivory coast" - ] - }, - { - "emojiChar": "🇨🇰", - "emoji": "\uD83C\uDDE8\uD83C\uDDF0", - "description": "regional indicator symbol letter c + regional indicator symbol letter k", - "aliases": [ - "ck" - ], - "tags": [ - "flag", - "cook islands" - ] - }, - { - "emojiChar": "🇨🇱", - "emoji": "\uD83C\uDDE8\uD83C\uDDF1", - "description": "regional indicator symbol letter c + regional indicator symbol letter l", - "aliases": [ - "cl_flag" - ], - "tags": [ - "flag", - "chile" - ] - }, - { - "emojiChar": "🇨🇲", - "emoji": "\uD83C\uDDE8\uD83C\uDDF2", - "description": "regional indicator symbol letter c + regional indicator symbol letter m", - "aliases": [ - "cm" - ], - "tags": [ - "flag", - "cameroon" - ] - }, - { - "emojiChar": "🇨🇳", - "emoji": "\uD83C\uDDE8\uD83C\uDDF3", - "description": "regional indicator symbol letter c + regional indicator symbol letter n", - "aliases": [ - "cn" - ], - "tags": [ - "flag", - "china" - ] - }, - { - "emojiChar": "🇨🇴", - "emoji": "\uD83C\uDDE8\uD83C\uDDF4", - "description": "regional indicator symbol letter c + regional indicator symbol letter o", - "aliases": [ - "co" - ], - "tags": [ - "flag", - "colombia" - ] - }, - { - "emojiChar": "🇨🇵", - "emoji": "\uD83C\uDDE8\uD83C\uDDF5", - "description": "regional indicator symbol letter c + regional indicator symbol letter p", - "aliases": [ - "cp" - ], - "tags": [ - "flag", - "clipperton island" - ] - }, - { - "emojiChar": "🇨🇷", - "emoji": "\uD83C\uDDE8\uD83C\uDDF7", - "description": "regional indicator symbol letter c + regional indicator symbol letter r", - "aliases": [ - "cr" - ], - "tags": [ - "flag", - "costa rica" - ] - }, - { - "emojiChar": "🇨🇺", - "emoji": "\uD83C\uDDE8\uD83C\uDDFA", - "description": "regional indicator symbol letter c + regional indicator symbol letter u", - "aliases": [ - "cu" - ], - "tags": [ - "flag", - "cuba" - ] - }, - { - "emojiChar": "🇨🇻", - "emoji": "\uD83C\uDDE8\uD83C\uDDFB", - "description": "regional indicator symbol letter c + regional indicator symbol letter v", - "aliases": [ - "cv" - ], - "tags": [ - "flag", - "cape verde" - ] - }, - { - "emojiChar": "🇨🇼", - "emoji": "\uD83C\uDDE8\uD83C\uDDFC", - "description": "regional indicator symbol letter c + regional indicator symbol letter w", - "aliases": [ - "cw" - ], - "tags": [ - "flag", - "curacao" - ] - }, - { - "emojiChar": "🇨🇽", - "emoji": "\uD83C\uDDE8\uD83C\uDDFD", - "description": "regional indicator symbol letter c + regional indicator symbol letter x", - "aliases": [ - "cx" - ], - "tags": [ - "flag", - "christmas island" - ] - }, - { - "emojiChar": "🇨🇾", - "emoji": "\uD83C\uDDE8\uD83C\uDDFE", - "description": "regional indicator symbol letter c + regional indicator symbol letter y", - "aliases": [ - "cy" - ], - "tags": [ - "flag", - "cyprus" - ] - }, - { - "emojiChar": "🇨🇿", - "emoji": "\uD83C\uDDE8\uD83C\uDDFF", - "description": "regional indicator symbol letter c + regional indicator symbol letter z", - "aliases": [ - "cz" - ], - "tags": [ - "flag", - "czech republic" - ] - }, - { - "emojiChar": "🇩🇪", - "emoji": "\uD83C\uDDE9\uD83C\uDDEA", - "description": "regional indicator symbol letter d + regional indicator symbol letter e", - "aliases": [ - "de" - ], - "tags": [ - "flag", - "germany" - ] - }, - { - "emojiChar": "🇩🇬", - "emoji": "\uD83C\uDDE9\uD83C\uDDEC", - "description": "regional indicator symbol letter d + regional indicator symbol letter g", - "aliases": [ - "dg" - ], - "tags": [ - "flag", - "diego garcia" - ] - }, - { - "emojiChar": "🇩🇯", - "emoji": "\uD83C\uDDE9\uD83C\uDDEF", - "description": "regional indicator symbol letter d + regional indicator symbol letter j", - "aliases": [ - "dj" - ], - "tags": [ - "flag", - "djibouti" - ] - }, - { - "emojiChar": "🇩🇰", - "emoji": "\uD83C\uDDE9\uD83C\uDDF0", - "description": "regional indicator symbol letter d + regional indicator symbol letter k", - "aliases": [ - "dk" - ], - "tags": [ - "flag", - "denmark" - ] - }, - { - "emojiChar": "🇩🇲", - "emoji": "\uD83C\uDDE9\uD83C\uDDF2", - "description": "regional indicator symbol letter d + regional indicator symbol letter m", - "aliases": [ - "dm" - ], - "tags": [ - "flag", - "dominica" - ] - }, - { - "emojiChar": "🇩🇴", - "emoji": "\uD83C\uDDE9\uD83C\uDDF4", - "description": "regional indicator symbol letter d + regional indicator symbol letter o", - "aliases": [ - "do" - ], - "tags": [ - "flag", - "dominican republic" - ] - }, - { - "emojiChar": "🇩🇿", - "emoji": "\uD83C\uDDE9\uD83C\uDDFF", - "description": "regional indicator symbol letter d + regional indicator symbol letter z", - "aliases": [ - "dz" - ], - "tags": [ - "flag", - "algeria" - ] - }, - { - "emojiChar": "🇪🇦", - "emoji": "\uD83C\uDDEA\uD83C\uDDE6", - "description": "regional indicator symbol letter e + regional indicator symbol letter a", - "aliases": [ - "ea" - ], - "tags": [ - "flag", - "ceuta & melilla" - ] - }, - { - "emojiChar": "🇪🇨", - "emoji": "\uD83C\uDDEA\uD83C\uDDE8", - "description": "regional indicator symbol letter e + regional indicator symbol letter c", - "aliases": [ - "ec" - ], - "tags": [ - "flag", - "ecuador" - ] - }, - { - "emojiChar": "🇪🇪", - "emoji": "\uD83C\uDDEA\uD83C\uDDEA", - "description": "regional indicator symbol letter e + regional indicator symbol letter e", - "aliases": [ - "ee" - ], - "tags": [ - "flag", - "estonia" - ] - }, - { - "emojiChar": "🇪🇬", - "emoji": "\uD83C\uDDEA\uD83C\uDDEC", - "description": "regional indicator symbol letter e + regional indicator symbol letter g", - "aliases": [ - "eg" - ], - "tags": [ - "flag", - "egypt" - ] - }, - { - "emojiChar": "🇪🇭", - "emoji": "\uD83C\uDDEA\uD83C\uDDED", - "description": "regional indicator symbol letter e + regional indicator symbol letter h", - "aliases": [ - "eh" - ], - "tags": [ - "flag", - "western sahara" - ] - }, - { - "emojiChar": "🇪🇷", - "emoji": "\uD83C\uDDEA\uD83C\uDDF7", - "description": "regional indicator symbol letter e + regional indicator symbol letter r", - "aliases": [ - "er" - ], - "tags": [ - "flag", - "eritrea" - ] - }, - { - "emojiChar": "🇪🇸", - "emoji": "\uD83C\uDDEA\uD83C\uDDF8", - "description": "regional indicator symbol letter e + regional indicator symbol letter s", - "aliases": [ - "es" - ], - "tags": [ - "flag", - "spain" - ] - }, - { - "emojiChar": "🇪🇹", - "emoji": "\uD83C\uDDEA\uD83C\uDDF9", - "description": "regional indicator symbol letter e + regional indicator symbol letter t", - "aliases": [ - "et" - ], - "tags": [ - "flag", - "ethiopia" - ] - }, - { - "emojiChar": "🇪🇺", - "emoji": "\uD83C\uDDEA\uD83C\uDDFA", - "description": "regional indicator symbol letter e + regional indicator symbol letter u", - "aliases": [ - "eu" - ], - "tags": [ - "flag", - "european union" - ] - }, - { - "emojiChar": "🇫🇮", - "emoji": "\uD83C\uDDEB\uD83C\uDDEE", - "description": "regional indicator symbol letter f + regional indicator symbol letter i", - "aliases": [ - "fi" - ], - "tags": [ - "flag", - "finland" - ] - }, - { - "emojiChar": "🇫🇯", - "emoji": "\uD83C\uDDEB\uD83C\uDDEF", - "description": "regional indicator symbol letter f + regional indicator symbol letter j", - "aliases": [ - "fj" - ], - "tags": [ - "flag", - "fiji" - ] - }, - { - "emojiChar": "🇫🇰", - "emoji": "\uD83C\uDDEB\uD83C\uDDF0", - "description": "regional indicator symbol letter f + regional indicator symbol letter k", - "aliases": [ - "fk" - ], - "tags": [ - "flag", - "falkland islands" - ] - }, - { - "emojiChar": "🇫🇲", - "emoji": "\uD83C\uDDEB\uD83C\uDDF2", - "description": "regional indicator symbol letter f + regional indicator symbol letter m", - "aliases": [ - "fm" - ], - "tags": [ - "flag", - "micronesia" - ] - }, - { - "emojiChar": "🇫🇴", - "emoji": "\uD83C\uDDEB\uD83C\uDDF4", - "description": "regional indicator symbol letter f + regional indicator symbol letter o", - "aliases": [ - "fo" - ], - "tags": [ - "flag", - "faroe islands" - ] - }, - { - "emojiChar": "🇫🇷", - "emoji": "\uD83C\uDDEB\uD83C\uDDF7", - "description": "regional indicator symbol letter f + regional indicator symbol letter r", - "aliases": [ - "fr" - ], - "tags": [ - "flag", - "france" - ] - }, - { - "emojiChar": "🇬🇦", - "emoji": "\uD83C\uDDEC\uD83C\uDDE6", - "description": "regional indicator symbol letter g + regional indicator symbol letter a", - "aliases": [ - "ga" - ], - "tags": [ - "flag", - "gabon" - ] - }, - { - "emojiChar": "🇬🇧", - "emoji": "\uD83C\uDDEC\uD83C\uDDE7", - "description": "regional indicator symbol letter g + regional indicator symbol letter b", - "aliases": [ - "gb" - ], - "tags": [ - "flag", - "united kingdom" - ] - }, - { - "emojiChar": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", - "emoji": "\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F", - "description": "waving black flag + regional indicator symbol letter g + regional indicator symbol letter b + regional indicator symbol letter e + regional indicator symbol letter n + regional indicator symbol letter g + cancel tag", - "aliases": [ - "gbeng" - ], - "tags": [ - "flag", - "england" - ] - }, - { - "emojiChar": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", - "emoji": "\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74\uDB40\uDC7F", - "description": "waving black flag + regional indicator symbol letter g + regional indicator symbol letter b + regional indicator symbol letter s + regional indicator symbol letter c + regional indicator symbol letter t + cancel tag", - "aliases": [ - "gbsct" - ], - "tags": [ - "flag", - "scotland" - ] - }, - { - "emojiChar": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", - "emoji": "\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73\uDB40\uDC7F", - "description": "waving black flag + regional indicator symbol letter g + regional indicator symbol letter b + regional indicator symbol letter w + regional indicator symbol letter l + regional indicator symbol letter s + cancel tag", - "aliases": [ - "gbwls" - ], - "tags": [ - "flag", - "wales" - ] - }, - { - "emojiChar": "🇬🇩", - "emoji": "\uD83C\uDDEC\uD83C\uDDE9", - "description": "regional indicator symbol letter g + regional indicator symbol letter d", - "aliases": [ - "gd" - ], - "tags": [ - "flag", - "grenada" - ] - }, - { - "emojiChar": "🇬🇪", - "emoji": "\uD83C\uDDEC\uD83C\uDDEA", - "description": "regional indicator symbol letter g + regional indicator symbol letter e", - "aliases": [ - "ge" - ], - "tags": [ - "flag", - "georgia" - ] - }, - { - "emojiChar": "🇬🇫", - "emoji": "\uD83C\uDDEC\uD83C\uDDEB", - "description": "regional indicator symbol letter g + regional indicator symbol letter f", - "aliases": [ - "gf" - ], - "tags": [ - "flag", - "french guiana" - ] - }, - { - "emojiChar": "🇬🇬", - "emoji": "\uD83C\uDDEC\uD83C\uDDEC", - "description": "regional indicator symbol letter g + regional indicator symbol letter g", - "aliases": [ - "gg" - ], - "tags": [ - "flag", - "guernsey" - ] - }, - { - "emojiChar": "🇬🇭", - "emoji": "\uD83C\uDDEC\uD83C\uDDED", - "description": "regional indicator symbol letter g + regional indicator symbol letter h", - "aliases": [ - "gh" - ], - "tags": [ - "flag", - "ghana" - ] - }, - { - "emojiChar": "🇬🇮", - "emoji": "\uD83C\uDDEC\uD83C\uDDEE", - "description": "regional indicator symbol letter g + regional indicator symbol letter i", - "aliases": [ - "gi" - ], - "tags": [ - "flag", - "gibraltar" - ] - }, - { - "emojiChar": "🇬🇱", - "emoji": "\uD83C\uDDEC\uD83C\uDDF1", - "description": "regional indicator symbol letter g + regional indicator symbol letter l", - "aliases": [ - "gl" - ], - "tags": [ - "flag", - "greenland" - ] - }, - { - "emojiChar": "🇬🇲", - "emoji": "\uD83C\uDDEC\uD83C\uDDF2", - "description": "regional indicator symbol letter g + regional indicator symbol letter m", - "aliases": [ - "gm" - ], - "tags": [ - "flag", - "gambia" - ] - }, - { - "emojiChar": "🇬🇳", - "emoji": "\uD83C\uDDEC\uD83C\uDDF3", - "description": "regional indicator symbol letter g + regional indicator symbol letter n", - "aliases": [ - "gn" - ], - "tags": [ - "flag", - "guinea" - ] - }, - { - "emojiChar": "🇬🇵", - "emoji": "\uD83C\uDDEC\uD83C\uDDF5", - "description": "regional indicator symbol letter g + regional indicator symbol letter p", - "aliases": [ - "gp" - ], - "tags": [ - "flag", - "guadeloupe" - ] - }, - { - "emojiChar": "🇬🇶", - "emoji": "\uD83C\uDDEC\uD83C\uDDF6", - "description": "regional indicator symbol letter g + regional indicator symbol letter q", - "aliases": [ - "gq" - ], - "tags": [ - "flag", - "equatorial guinea" - ] - }, - { - "emojiChar": "🇬🇷", - "emoji": "\uD83C\uDDEC\uD83C\uDDF7", - "description": "regional indicator symbol letter g + regional indicator symbol letter r", - "aliases": [ - "gr" - ], - "tags": [ - "flag", - "greece" - ] - }, - { - "emojiChar": "🇬🇸", - "emoji": "\uD83C\uDDEC\uD83C\uDDF8", - "description": "regional indicator symbol letter g + regional indicator symbol letter s", - "aliases": [ - "gs" - ], - "tags": [ - "flag", - "south georgia & south sandwich islands" - ] - }, - { - "emojiChar": "🇬🇹", - "emoji": "\uD83C\uDDEC\uD83C\uDDF9", - "description": "regional indicator symbol letter g + regional indicator symbol letter t", - "aliases": [ - "gt" - ], - "tags": [ - "flag", - "guatemala" - ] - }, - { - "emojiChar": "🇬🇺", - "emoji": "\uD83C\uDDEC\uD83C\uDDFA", - "description": "regional indicator symbol letter g + regional indicator symbol letter u", - "aliases": [ - "gu" - ], - "tags": [ - "flag", - "guam" - ] - }, - { - "emojiChar": "🇬🇼", - "emoji": "\uD83C\uDDEC\uD83C\uDDFC", - "description": "regional indicator symbol letter g + regional indicator symbol letter w", - "aliases": [ - "gw" - ], - "tags": [ - "flag", - "guinea-bissau" - ] - }, - { - "emojiChar": "🇬🇾", - "emoji": "\uD83C\uDDEC\uD83C\uDDFE", - "description": "regional indicator symbol letter g + regional indicator symbol letter y", - "aliases": [ - "gy" - ], - "tags": [ - "flag", - "guyana" - ] - }, - { - "emojiChar": "🇭🇰", - "emoji": "\uD83C\uDDED\uD83C\uDDF0", - "description": "regional indicator symbol letter h + regional indicator symbol letter k", - "aliases": [ - "hk" - ], - "tags": [ - "flag", - "hong kong" - ] - }, - { - "emojiChar": "🇭🇲", - "emoji": "\uD83C\uDDED\uD83C\uDDF2", - "description": "regional indicator symbol letter h + regional indicator symbol letter m", - "aliases": [ - "hm" - ], - "tags": [ - "flag", - "heard & mcdonald islands" - ] - }, - { - "emojiChar": "🇭🇳", - "emoji": "\uD83C\uDDED\uD83C\uDDF3", - "description": "regional indicator symbol letter h + regional indicator symbol letter n", - "aliases": [ - "hn" - ], - "tags": [ - "flag", - "honduras" - ] - }, - { - "emojiChar": "🇭🇷", - "emoji": "\uD83C\uDDED\uD83C\uDDF7", - "description": "regional indicator symbol letter h + regional indicator symbol letter r", - "aliases": [ - "hr" - ], - "tags": [ - "flag", - "croatia" - ] - }, - { - "emojiChar": "🇭🇹", - "emoji": "\uD83C\uDDED\uD83C\uDDF9", - "description": "regional indicator symbol letter h + regional indicator symbol letter t", - "aliases": [ - "ht" - ], - "tags": [ - "flag", - "haiti" - ] - }, - { - "emojiChar": "🇭🇺", - "emoji": "\uD83C\uDDED\uD83C\uDDFA", - "description": "regional indicator symbol letter h + regional indicator symbol letter u", - "aliases": [ - "hu" - ], - "tags": [ - "flag", - "hungary" - ] - }, - { - "emojiChar": "🇮🇨", - "emoji": "\uD83C\uDDEE\uD83C\uDDE8", - "description": "regional indicator symbol letter i + regional indicator symbol letter c", - "aliases": [ - "ic" - ], - "tags": [ - "flag", - "canary islands" - ] - }, - { - "emojiChar": "🇮🇩", - "emoji": "\uD83C\uDDEE\uD83C\uDDE9", - "description": "regional indicator symbol letter i + regional indicator symbol letter d", - "aliases": [ - "id_flag" - ], - "tags": [ - "flag", - "indonesia" - ] - }, - { - "emojiChar": "🇮🇪", - "emoji": "\uD83C\uDDEE\uD83C\uDDEA", - "description": "regional indicator symbol letter i + regional indicator symbol letter e", - "aliases": [ - "ie" - ], - "tags": [ - "flag", - "ireland" - ] - }, - { - "emojiChar": "🇮🇱", - "emoji": "\uD83C\uDDEE\uD83C\uDDF1", - "description": "regional indicator symbol letter i + regional indicator symbol letter l", - "aliases": [ - "il" - ], - "tags": [ - "flag", - "israel" - ] - }, - { - "emojiChar": "🇮🇲", - "emoji": "\uD83C\uDDEE\uD83C\uDDF2", - "description": "regional indicator symbol letter i + regional indicator symbol letter m", - "aliases": [ - "im" - ], - "tags": [ - "flag", - "isle of mann" - ] - }, - { - "emojiChar": "🇮🇳", - "emoji": "\uD83C\uDDEE\uD83C\uDDF3", - "description": "regional indicator symbol letter i + regional indicator symbol letter n", - "aliases": [ - "in" - ], - "tags": [ - "flag", - "india" - ] - }, - { - "emojiChar": "🇮🇴", - "emoji": "\uD83C\uDDEE\uD83C\uDDF4", - "description": "regional indicator symbol letter i + regional indicator symbol letter o", - "aliases": [ - "io" - ], - "tags": [ - "flag", - "british indian ocean territory" - ] - }, - { - "emojiChar": "🇮🇶", - "emoji": "\uD83C\uDDEE\uD83C\uDDF6", - "description": "regional indicator symbol letter i + regional indicator symbol letter q", - "aliases": [ - "iq" - ], - "tags": [ - "flag", - "iraq" - ] - }, - { - "emojiChar": "🇮🇷", - "emoji": "\uD83C\uDDEE\uD83C\uDDF7", - "description": "regional indicator symbol letter i + regional indicator symbol letter r", - "aliases": [ - "ir" - ], - "tags": [ - "flag", - "iran" - ] - }, - { - "emojiChar": "🇮🇸", - "emoji": "\uD83C\uDDEE\uD83C\uDDF8", - "description": "regional indicator symbol letter i + regional indicator symbol letter s", - "aliases": [ - "is" - ], - "tags": [ - "flag", - "iceland" - ] - }, - { - "emojiChar": "🇮🇹", - "emoji": "\uD83C\uDDEE\uD83C\uDDF9", - "description": "regional indicator symbol letter i + regional indicator symbol letter t", - "aliases": [ - "it" - ], - "tags": [ - "flag", - "italy" - ] - }, - { - "emojiChar": "🇯🇪", - "emoji": "\uD83C\uDDEF\uD83C\uDDEA", - "description": "regional indicator symbol letter j + regional indicator symbol letter e", - "aliases": [ - "je" - ], - "tags": [ - "flag", - "jersey" - ] - }, - { - "emojiChar": "🇯🇲", - "emoji": "\uD83C\uDDEF\uD83C\uDDF2", - "description": "regional indicator symbol letter j + regional indicator symbol letter m", - "aliases": [ - "jm" - ], - "tags": [ - "flag", - "jamaica" - ] - }, - { - "emojiChar": "🇯🇴", - "emoji": "\uD83C\uDDEF\uD83C\uDDF4", - "description": "regional indicator symbol letter j + regional indicator symbol letter o", - "aliases": [ - "jo" - ], - "tags": [ - "flag", - "jordan" - ] - }, - { - "emojiChar": "🇯🇵", - "emoji": "\uD83C\uDDEF\uD83C\uDDF5", - "description": "regional indicator symbol letter j + regional indicator symbol letter p", - "aliases": [ - "jp" - ], - "tags": [ - "flag", - "japan" - ] - }, - { - "emojiChar": "🇰🇪", - "emoji": "\uD83C\uDDF0\uD83C\uDDEA", - "description": "regional indicator symbol letter k + regional indicator symbol letter e", - "aliases": [ - "ke" - ], - "tags": [ - "flag", - "kenya" - ] - }, - { - "emojiChar": "🇰🇬", - "emoji": "\uD83C\uDDF0\uD83C\uDDEC", - "description": "regional indicator symbol letter k + regional indicator symbol letter g", - "aliases": [ - "kg" - ], - "tags": [ - "flag", - "kyrgyzstan" - ] - }, - { - "emojiChar": "🇰🇭", - "emoji": "\uD83C\uDDF0\uD83C\uDDED", - "description": "regional indicator symbol letter k + regional indicator symbol letter h", - "aliases": [ - "kh" - ], - "tags": [ - "flag", - "cambodia" - ] - }, - { - "emojiChar": "🇰🇮", - "emoji": "\uD83C\uDDF0\uD83C\uDDEE", - "description": "regional indicator symbol letter k + regional indicator symbol letter i", - "aliases": [ - "ki" - ], - "tags": [ - "flag", - "kiribati" - ] - }, - { - "emojiChar": "🇰🇲", - "emoji": "\uD83C\uDDF0\uD83C\uDDF2", - "description": "regional indicator symbol letter k + regional indicator symbol letter m", - "aliases": [ - "km" - ], - "tags": [ - "flag", - "comoros" - ] - }, - { - "emojiChar": "🇰🇳", - "emoji": "\uD83C\uDDF0\uD83C\uDDF3", - "description": "regional indicator symbol letter k + regional indicator symbol letter n", - "aliases": [ - "kn" - ], - "tags": [ - "flag", - "st. kitts & nevis" - ] - }, - { - "emojiChar": "🇰🇵", - "emoji": "\uD83C\uDDF0\uD83C\uDDF5", - "description": "regional indicator symbol letter k + regional indicator symbol letter p", - "aliases": [ - "kp" - ], - "tags": [ - "flag", - "north korea" - ] - }, - { - "emojiChar": "🇰🇷", - "emoji": "\uD83C\uDDF0\uD83C\uDDF7", - "description": "regional indicator symbol letter k + regional indicator symbol letter r", - "aliases": [ - "kr" - ], - "tags": [ - "flag", - "south korea" - ] - }, - { - "emojiChar": "🇰🇼", - "emoji": "\uD83C\uDDF0\uD83C\uDDFC", - "description": "regional indicator symbol letter k + regional indicator symbol letter w", - "aliases": [ - "kw" - ], - "tags": [ - "flag", - "kuwait" - ] - }, - { - "emojiChar": "🇰🇾", - "emoji": "\uD83C\uDDF0\uD83C\uDDFE", - "description": "regional indicator symbol letter k + regional indicator symbol letter y", - "aliases": [ - "ky" - ], - "tags": [ - "flag", - "cayman islands" - ] - }, - { - "emojiChar": "🇰🇿", - "emoji": "\uD83C\uDDF0\uD83C\uDDFF", - "description": "regional indicator symbol letter k + regional indicator symbol letter z", - "aliases": [ - "kz" - ], - "tags": [ - "flag", - "kazakhstan" - ] - }, - { - "emojiChar": "🇱🇦", - "emoji": "\uD83C\uDDF1\uD83C\uDDE6", - "description": "regional indicator symbol letter l + regional indicator symbol letter a", - "aliases": [ - "la" - ], - "tags": [ - "flag", - "laos" - ] - }, - { - "emojiChar": "🇱🇧", - "emoji": "\uD83C\uDDF1\uD83C\uDDE7", - "description": "regional indicator symbol letter l + regional indicator symbol letter b", - "aliases": [ - "lb" - ], - "tags": [ - "flag", - "lebanon" - ] - }, - { - "emojiChar": "🇱🇨", - "emoji": "\uD83C\uDDF1\uD83C\uDDE8", - "description": "regional indicator symbol letter l + regional indicator symbol letter c", - "aliases": [ - "lc" - ], - "tags": [ - "flag", - "st. lucia" - ] - }, - { - "emojiChar": "🇱🇮", - "emoji": "\uD83C\uDDF1\uD83C\uDDEE", - "description": "regional indicator symbol letter l + regional indicator symbol letter i", - "aliases": [ - "li" - ], - "tags": [ - "flag", - "liechtenstein" - ] - }, - { - "emojiChar": "🇱🇰", - "emoji": "\uD83C\uDDF1\uD83C\uDDF0", - "description": "regional indicator symbol letter l + regional indicator symbol letter k", - "aliases": [ - "lk" - ], - "tags": [ - "flag", - "sri lanka" - ] - }, - { - "emojiChar": "🇱🇷", - "emoji": "\uD83C\uDDF1\uD83C\uDDF7", - "description": "regional indicator symbol letter l + regional indicator symbol letter r", - "aliases": [ - "lr" - ], - "tags": [ - "flag", - "liberia" - ] - }, - { - "emojiChar": "🇱🇸", - "emoji": "\uD83C\uDDF1\uD83C\uDDF8", - "description": "regional indicator symbol letter l + regional indicator symbol letter s", - "aliases": [ - "ls" - ], - "tags": [ - "flag", - "lesotho" - ] - }, - { - "emojiChar": "🇱🇹", - "emoji": "\uD83C\uDDF1\uD83C\uDDF9", - "description": "regional indicator symbol letter l + regional indicator symbol letter t", - "aliases": [ - "lt" - ], - "tags": [ - "flag", - "lithuania" - ] - }, - { - "emojiChar": "🇱🇺", - "emoji": "\uD83C\uDDF1\uD83C\uDDFA", - "description": "regional indicator symbol letter l + regional indicator symbol letter u", - "aliases": [ - "lu" - ], - "tags": [ - "flag", - "luxembourg" - ] - }, - { - "emojiChar": "🇱🇻", - "emoji": "\uD83C\uDDF1\uD83C\uDDFB", - "description": "regional indicator symbol letter l + regional indicator symbol letter v", - "aliases": [ - "lv" - ], - "tags": [ - "flag", - "latvia" - ] - }, - { - "emojiChar": "🇱🇾", - "emoji": "\uD83C\uDDF1\uD83C\uDDFE", - "description": "regional indicator symbol letter l + regional indicator symbol letter y", - "aliases": [ - "ly" - ], - "tags": [ - "flag", - "libya" - ] - }, - { - "emojiChar": "🇲🇦", - "emoji": "\uD83C\uDDF2\uD83C\uDDE6", - "description": "regional indicator symbol letter m + regional indicator symbol letter a", - "aliases": [ - "ma" - ], - "tags": [ - "flag", - "morocco" - ] - }, - { - "emojiChar": "🇲🇨", - "emoji": "\uD83C\uDDF2\uD83C\uDDE8", - "description": "regional indicator symbol letter m + regional indicator symbol letter c", - "aliases": [ - "mc" - ], - "tags": [ - "flag", - "monaco" - ] - }, - { - "emojiChar": "🇲🇩", - "emoji": "\uD83C\uDDF2\uD83C\uDDE9", - "description": "regional indicator symbol letter m + regional indicator symbol letter d", - "aliases": [ - "md" - ], - "tags": [ - "flag", - "moldova" - ] - }, - { - "emojiChar": "🇲🇪", - "emoji": "\uD83C\uDDF2\uD83C\uDDEA", - "description": "regional indicator symbol letter m + regional indicator symbol letter e", - "aliases": [ - "me" - ], - "tags": [ - "flag", - "montenegro" - ] - }, - { - "emojiChar": "🇲🇫", - "emoji": "\uD83C\uDDF2\uD83C\uDDEB", - "description": "regional indicator symbol letter m + regional indicator symbol letter f", - "aliases": [ - "mf" - ], - "tags": [ - "flag", - "st. martin" - ] - }, - { - "emojiChar": "🇲🇬", - "emoji": "\uD83C\uDDF2\uD83C\uDDEC", - "description": "regional indicator symbol letter m + regional indicator symbol letter g", - "aliases": [ - "mg" - ], - "tags": [ - "flag", - "madagascar" - ] - }, - { - "emojiChar": "🇲🇭", - "emoji": "\uD83C\uDDF2\uD83C\uDDED", - "description": "regional indicator symbol letter m + regional indicator symbol letter h", - "aliases": [ - "mh" - ], - "tags": [ - "flag", - "marshall islands" - ] - }, - { - "emojiChar": "🇲🇰", - "emoji": "\uD83C\uDDF2\uD83C\uDDF0", - "description": "regional indicator symbol letter m + regional indicator symbol letter k", - "aliases": [ - "mk" - ], - "tags": [ - "flag", - "macedonia" - ] - }, - { - "emojiChar": "🇲🇱", - "emoji": "\uD83C\uDDF2\uD83C\uDDF1", - "description": "regional indicator symbol letter m + regional indicator symbol letter l", - "aliases": [ - "ml" - ], - "tags": [ - "flag", - "mali" - ] - }, - { - "emojiChar": "🇲🇲", - "emoji": "\uD83C\uDDF2\uD83C\uDDF2", - "description": "regional indicator symbol letter m + regional indicator symbol letter m", - "aliases": [ - "mm" - ], - "tags": [ - "flag", - "myanmar" - ] - }, - { - "emojiChar": "🇲🇳", - "emoji": "\uD83C\uDDF2\uD83C\uDDF3", - "description": "regional indicator symbol letter m + regional indicator symbol letter n", - "aliases": [ - "mn" - ], - "tags": [ - "flag", - "mongolia" - ] - }, - { - "emojiChar": "🇲🇴", - "emoji": "\uD83C\uDDF2\uD83C\uDDF4", - "description": "regional indicator symbol letter m + regional indicator symbol letter o", - "aliases": [ - "mo" - ], - "tags": [ - "flag", - "macau" - ] - }, - { - "emojiChar": "🇲🇵", - "emoji": "\uD83C\uDDF2\uD83C\uDDF5", - "description": "regional indicator symbol letter m + regional indicator symbol letter p", - "aliases": [ - "mp" - ], - "tags": [ - "flag", - "northern mariana islands" - ] - }, - { - "emojiChar": "🇲🇶", - "emoji": "\uD83C\uDDF2\uD83C\uDDF6", - "description": "regional indicator symbol letter m + regional indicator symbol letter q", - "aliases": [ - "mq" - ], - "tags": [ - "flag", - "martinique" - ] - }, - { - "emojiChar": "🇲🇷", - "emoji": "\uD83C\uDDF2\uD83C\uDDF7", - "description": "regional indicator symbol letter m + regional indicator symbol letter r", - "aliases": [ - "mr" - ], - "tags": [ - "flag", - "mauritania" - ] - }, - { - "emojiChar": "🇲🇸", - "emoji": "\uD83C\uDDF2\uD83C\uDDF8", - "description": "regional indicator symbol letter m + regional indicator symbol letter s", - "aliases": [ - "ms" - ], - "tags": [ - "flag", - "montserrat" - ] - }, - { - "emojiChar": "🇲🇹", - "emoji": "\uD83C\uDDF2\uD83C\uDDF9", - "description": "regional indicator symbol letter m + regional indicator symbol letter t", - "aliases": [ - "mt" - ], - "tags": [ - "flag", - "malta" - ] - }, - { - "emojiChar": "🇲🇺", - "emoji": "\uD83C\uDDF2\uD83C\uDDFA", - "description": "regional indicator symbol letter m + regional indicator symbol letter u", - "aliases": [ - "mu" - ], - "tags": [ - "flag", - "mauritius" - ] - }, - { - "emojiChar": "🇲🇻", - "emoji": "\uD83C\uDDF2\uD83C\uDDFB", - "description": "regional indicator symbol letter m + regional indicator symbol letter v", - "aliases": [ - "mv" - ], - "tags": [ - "flag", - "maldives" - ] - }, - { - "emojiChar": "🇲🇼", - "emoji": "\uD83C\uDDF2\uD83C\uDDFC", - "description": "regional indicator symbol letter m + regional indicator symbol letter w", - "aliases": [ - "mw" - ], - "tags": [ - "flag", - "malawi" - ] - }, - { - "emojiChar": "🇲🇽", - "emoji": "\uD83C\uDDF2\uD83C\uDDFD", - "description": "regional indicator symbol letter m + regional indicator symbol letter x", - "aliases": [ - "mx" - ], - "tags": [ - "flag", - "mexico" - ] - }, - { - "emojiChar": "🇲🇾", - "emoji": "\uD83C\uDDF2\uD83C\uDDFE", - "description": "regional indicator symbol letter m + regional indicator symbol letter y", - "aliases": [ - "my" - ], - "tags": [ - "flag", - "malaysia" - ] - }, - { - "emojiChar": "🇲🇿", - "emoji": "\uD83C\uDDF2\uD83C\uDDFF", - "description": "regional indicator symbol letter m + regional indicator symbol letter z", - "aliases": [ - "mz" - ], - "tags": [ - "flag", - "mozambique" - ] - }, - { - "emojiChar": "🇳🇦", - "emoji": "\uD83C\uDDF3\uD83C\uDDE6", - "description": "regional indicator symbol letter n + regional indicator symbol letter a", - "aliases": [ - "na" - ], - "tags": [ - "flag", - "namibia" - ] - }, - { - "emojiChar": "🇳🇨", - "emoji": "\uD83C\uDDF3\uD83C\uDDE8", - "description": "regional indicator symbol letter n + regional indicator symbol letter c", - "aliases": [ - "nc" - ], - "tags": [ - "flag", - "new caledonia" - ] - }, - { - "emojiChar": "🇳🇪", - "emoji": "\uD83C\uDDF3\uD83C\uDDEA", - "description": "regional indicator symbol letter n + regional indicator symbol letter e", - "aliases": [ - "ne" - ], - "tags": [ - "flag", - "niger" - ] - }, - { - "emojiChar": "🇳🇫", - "emoji": "\uD83C\uDDF3\uD83C\uDDEB", - "description": "regional indicator symbol letter n + regional indicator symbol letter f", - "aliases": [ - "nf" - ], - "tags": [ - "flag", - "norfolk island" - ] - }, - { - "emojiChar": "🇳🇬", - "emoji": "\uD83C\uDDF3\uD83C\uDDEC", - "description": "regional indicator symbol letter n + regional indicator symbol letter g", - "aliases": [ - "ng" - ], - "tags": [ - "flag", - "nigeria" - ] - }, - { - "emojiChar": "🇳🇮", - "emoji": "\uD83C\uDDF3\uD83C\uDDEE", - "description": "regional indicator symbol letter n + regional indicator symbol letter i", - "aliases": [ - "ni" - ], - "tags": [ - "flag", - "nicaragua" - ] - }, - { - "emojiChar": "🇳🇱", - "emoji": "\uD83C\uDDF3\uD83C\uDDF1", - "description": "regional indicator symbol letter n + regional indicator symbol letter l", - "aliases": [ - "nl" - ], - "tags": [ - "flag", - "netherlands" - ] - }, - { - "emojiChar": "🇳🇴", - "emoji": "\uD83C\uDDF3\uD83C\uDDF4", - "description": "regional indicator symbol letter n + regional indicator symbol letter o", - "aliases": [ - "no" - ], - "tags": [ - "flag", - "norway" - ] - }, - { - "emojiChar": "🇳🇵", - "emoji": "\uD83C\uDDF3\uD83C\uDDF5", - "description": "regional indicator symbol letter n + regional indicator symbol letter p", - "aliases": [ - "np" - ], - "tags": [ - "flag", - "nepal" - ] - }, - { - "emojiChar": "🇳🇷", - "emoji": "\uD83C\uDDF3\uD83C\uDDF7", - "description": "regional indicator symbol letter n + regional indicator symbol letter r", - "aliases": [ - "nr" - ], - "tags": [ - "flag", - "nauru" - ] - }, - { - "emojiChar": "🇳🇺", - "emoji": "\uD83C\uDDF3\uD83C\uDDFA", - "description": "regional indicator symbol letter n + regional indicator symbol letter u", - "aliases": [ - "nu" - ], - "tags": [ - "flag", - "niue" - ] - }, - { - "emojiChar": "🇳🇿", - "emoji": "\uD83C\uDDF3\uD83C\uDDFF", - "description": "regional indicator symbol letter n + regional indicator symbol letter z", - "aliases": [ - "nz" - ], - "tags": [ - "flag", - "new zealand" - ] - }, - { - "emojiChar": "🇴🇲", - "emoji": "\uD83C\uDDF4\uD83C\uDDF2", - "description": "regional indicator symbol letter o + regional indicator symbol letter m", - "aliases": [ - "om" - ], - "tags": [ - "flag", - "oman" - ] - }, - { - "emojiChar": "🇵🇦", - "emoji": "\uD83C\uDDF5\uD83C\uDDE6", - "description": "regional indicator symbol letter p + regional indicator symbol letter a", - "aliases": [ - "pa" - ], - "tags": [ - "flag", - "panama" - ] - }, - { - "emojiChar": "🇵🇪", - "emoji": "\uD83C\uDDF5\uD83C\uDDEA", - "description": "regional indicator symbol letter p + regional indicator symbol letter e", - "aliases": [ - "pe" - ], - "tags": [ - "flag", - "peru" - ] - }, - { - "emojiChar": "🇵🇫", - "emoji": "\uD83C\uDDF5\uD83C\uDDEB", - "description": "regional indicator symbol letter p + regional indicator symbol letter f", - "aliases": [ - "pf" - ], - "tags": [ - "flag", - "french polynesia" - ] - }, - { - "emojiChar": "🇵🇬", - "emoji": "\uD83C\uDDF5\uD83C\uDDEC", - "description": "regional indicator symbol letter p + regional indicator symbol letter g", - "aliases": [ - "pg" - ], - "tags": [ - "flag", - "papua new guinea" - ] - }, - { - "emojiChar": "🇵🇭", - "emoji": "\uD83C\uDDF5\uD83C\uDDED", - "description": "regional indicator symbol letter p + regional indicator symbol letter h", - "aliases": [ - "ph" - ], - "tags": [ - "flag", - "philippines" - ] - }, - { - "emojiChar": "🇵🇰", - "emoji": "\uD83C\uDDF5\uD83C\uDDF0", - "description": "regional indicator symbol letter p + regional indicator symbol letter k", - "aliases": [ - "pk" - ], - "tags": [ - "flag", - "pakistan" - ] - }, - { - "emojiChar": "🇵🇱", - "emoji": "\uD83C\uDDF5\uD83C\uDDF1", - "description": "regional indicator symbol letter p + regional indicator symbol letter l", - "aliases": [ - "pl" - ], - "tags": [ - "flag", - "poland" - ] - }, - { - "emojiChar": "🇵🇲", - "emoji": "\uD83C\uDDF5\uD83C\uDDF2", - "description": "regional indicator symbol letter p + regional indicator symbol letter m", - "aliases": [ - "pm" - ], - "tags": [ - "flag", - "st. pierre & miquelon" - ] - }, - { - "emojiChar": "🇵🇳", - "emoji": "\uD83C\uDDF5\uD83C\uDDF3", - "description": "regional indicator symbol letter p + regional indicator symbol letter n", - "aliases": [ - "pn" - ], - "tags": [ - "flag", - "pitcairn islands" - ] - }, - { - "emojiChar": "🇵🇷", - "emoji": "\uD83C\uDDF5\uD83C\uDDF7", - "description": "regional indicator symbol letter p + regional indicator symbol letter r", - "aliases": [ - "pr" - ], - "tags": [ - "flag", - "puerto rico" - ] - }, - { - "emojiChar": "🇵🇸", - "emoji": "\uD83C\uDDF5\uD83C\uDDF8", - "description": "regional indicator symbol letter p + regional indicator symbol letter s", - "aliases": [ - "ps" - ], - "tags": [ - "flag", - "palestine" - ] - }, - { - "emojiChar": "🇵🇹", - "emoji": "\uD83C\uDDF5\uD83C\uDDF9", - "description": "regional indicator symbol letter p + regional indicator symbol letter t", - "aliases": [ - "pt" - ], - "tags": [ - "flag", - "portugal" - ] - }, - { - "emojiChar": "🇵🇼", - "emoji": "\uD83C\uDDF5\uD83C\uDDFC", - "description": "regional indicator symbol letter p + regional indicator symbol letter w", - "aliases": [ - "pw" - ], - "tags": [ - "flag", - "palau" - ] - }, - { - "emojiChar": "🇵🇾", - "emoji": "\uD83C\uDDF5\uD83C\uDDFE", - "description": "regional indicator symbol letter p + regional indicator symbol letter y", - "aliases": [ - "py" - ], - "tags": [ - "flag", - "paraguay" - ] - }, - { - "emojiChar": "🇶🇦", - "emoji": "\uD83C\uDDF6\uD83C\uDDE6", - "description": "regional indicator symbol letter q + regional indicator symbol letter a", - "aliases": [ - "qa" - ], - "tags": [ - "flag", - "qatar" - ] - }, - { - "emojiChar": "🏳️‍🌈", - "emoji": "\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", - "description": "rainbow flag", - "aliases": [ - "rainbow_flag", - "pride_flag" - ], - "tags": [ - "flag" - ] - }, - { - "emojiChar": "🇷🇪", - "emoji": "\uD83C\uDDF7\uD83C\uDDEA", - "description": "regional indicator symbol letter r + regional indicator symbol letter e", - "aliases": [ - "re" - ], - "tags": [ - "flag", - "reunion" - ] - }, - { - "emojiChar": "🇷🇴", - "emoji": "\uD83C\uDDF7\uD83C\uDDF4", - "description": "regional indicator symbol letter r + regional indicator symbol letter o", - "aliases": [ - "ro" - ], - "tags": [ - "flag", - "romania" - ] - }, - { - "emojiChar": "🇷🇸", - "emoji": "\uD83C\uDDF7\uD83C\uDDF8", - "description": "regional indicator symbol letter r + regional indicator symbol letter s", - "aliases": [ - "rs" - ], - "tags": [ - "flag", - "serbia" - ] - }, - { - "emojiChar": "🇷🇺", - "emoji": "\uD83C\uDDF7\uD83C\uDDFA", - "description": "regional indicator symbol letter r + regional indicator symbol letter u", - "aliases": [ - "ru" - ], - "tags": [ - "flag", - "russia" - ] - }, - { - "emojiChar": "🇷🇼", - "emoji": "\uD83C\uDDF7\uD83C\uDDFC", - "description": "regional indicator symbol letter r + regional indicator symbol letter w", - "aliases": [ - "rw" - ], - "tags": [ - "flag", - "rwanda" - ] - }, - { - "emojiChar": "🇸🇦", - "emoji": "\uD83C\uDDF8\uD83C\uDDE6", - "description": "regional indicator symbol letter s + regional indicator symbol letter a", - "aliases": [ - "sa_flag" - ], - "tags": [ - "flag", - "saudi arabia" - ] - }, - { - "emojiChar": "🇸🇧", - "emoji": "\uD83C\uDDF8\uD83C\uDDE7", - "description": "regional indicator symbol letter s + regional indicator symbol letter b", - "aliases": [ - "sb" - ], - "tags": [ - "flag", - "solomon islands" - ] - }, - { - "emojiChar": "🇸🇨", - "emoji": "\uD83C\uDDF8\uD83C\uDDE8", - "description": "regional indicator symbol letter s + regional indicator symbol letter c", - "aliases": [ - "sc" - ], - "tags": [ - "flag", - "seychelles" - ] - }, - { - "emojiChar": "🇸🇩", - "emoji": "\uD83C\uDDF8\uD83C\uDDE9", - "description": "regional indicator symbol letter s + regional indicator symbol letter d", - "aliases": [ - "sd" - ], - "tags": [ - "flag", - "sudan" - ] - }, - { - "emojiChar": "🇸🇪", - "emoji": "\uD83C\uDDF8\uD83C\uDDEA", - "description": "regional indicator symbol letter s + regional indicator symbol letter e", - "aliases": [ - "se" - ], - "tags": [ - "flag", - "sweden" - ] - }, - { - "emojiChar": "🇸🇬", - "emoji": "\uD83C\uDDF8\uD83C\uDDEC", - "description": "regional indicator symbol letter s + regional indicator symbol letter g", - "aliases": [ - "sg" - ], - "tags": [ - "flag", - "singapore" - ] - }, - { - "emojiChar": "🇸🇭", - "emoji": "\uD83C\uDDF8\uD83C\uDDED", - "description": "regional indicator symbol letter s + regional indicator symbol letter h", - "aliases": [ - "sh" - ], - "tags": [ - "flag", - "st. helena" - ] - }, - { - "emojiChar": "🇸🇮", - "emoji": "\uD83C\uDDF8\uD83C\uDDEE", - "description": "regional indicator symbol letter s + regional indicator symbol letter i", - "aliases": [ - "si" - ], - "tags": [ - "flag", - "slovenia" - ] - }, - { - "emojiChar": "🇸🇯", - "emoji": "\uD83C\uDDF8\uD83C\uDDEF", - "description": "regional indicator symbol letter s + regional indicator symbol letter j", - "aliases": [ - "sj" - ], - "tags": [ - "flag", - "svalbard & jan mayen" - ] - }, - { - "emojiChar": "🇸🇰", - "emoji": "\uD83C\uDDF8\uD83C\uDDF0", - "description": "regional indicator symbol letter s + regional indicator symbol letter k", - "aliases": [ - "sk" - ], - "tags": [ - "flag", - "slovakia" - ] - }, - { - "emojiChar": "🇸🇱", - "emoji": "\uD83C\uDDF8\uD83C\uDDF1", - "description": "regional indicator symbol letter s + regional indicator symbol letter l", - "aliases": [ - "sl" - ], - "tags": [ - "flag", - "sierra leone" - ] - }, - { - "emojiChar": "🇸🇲", - "emoji": "\uD83C\uDDF8\uD83C\uDDF2", - "description": "regional indicator symbol letter s + regional indicator symbol letter m", - "aliases": [ - "sm" - ], - "tags": [ - "flag", - "san marino" - ] - }, - { - "emojiChar": "🇸🇳", - "emoji": "\uD83C\uDDF8\uD83C\uDDF3", - "description": "regional indicator symbol letter s + regional indicator symbol letter n", - "aliases": [ - "sn" - ], - "tags": [ - "flag", - "senegal" - ] - }, - { - "emojiChar": "🇸🇴", - "emoji": "\uD83C\uDDF8\uD83C\uDDF4", - "description": "regional indicator symbol letter s + regional indicator symbol letter o", - "aliases": [ - "so" - ], - "tags": [ - "flag", - "somalia" - ] - }, - { - "emojiChar": "🇸🇷", - "emoji": "\uD83C\uDDF8\uD83C\uDDF7", - "description": "regional indicator symbol letter s + regional indicator symbol letter r", - "aliases": [ - "sr" - ], - "tags": [ - "flag", - "suriname" - ] - }, - { - "emojiChar": "🇸🇸", - "emoji": "\uD83C\uDDF8\uD83C\uDDF8", - "description": "regional indicator symbol letter s + regional indicator symbol letter s", - "aliases": [ - "ss" - ], - "tags": [ - "flag", - "south sudan" - ] - }, - { - "emojiChar": "🇸🇹", - "emoji": "\uD83C\uDDF8\uD83C\uDDF9", - "description": "regional indicator symbol letter s + regional indicator symbol letter t", - "aliases": [ - "st" - ], - "tags": [ - "flag", - "sao tome and principe" - ] - }, - { - "emojiChar": "🇸🇻", - "emoji": "\uD83C\uDDF8\uD83C\uDDFB", - "description": "regional indicator symbol letter s + regional indicator symbol letter v", - "aliases": [ - "sv" - ], - "tags": [ - "flag", - "el salvador" - ] - }, - { - "emojiChar": "🇸🇽", - "emoji": "\uD83C\uDDF8\uD83C\uDDFD", - "description": "regional indicator symbol letter s + regional indicator symbol letter x", - "aliases": [ - "sx" - ], - "tags": [ - "flag", - "sint maarten" - ] - }, - { - "emojiChar": "🇸🇾", - "emoji": "\uD83C\uDDF8\uD83C\uDDFE", - "description": "regional indicator symbol letter s + regional indicator symbol letter y", - "aliases": [ - "sy" - ], - "tags": [ - "flag", - "syria" - ] - }, - { - "emojiChar": "🇸🇿", - "emoji": "\uD83C\uDDF8\uD83C\uDDFF", - "description": "regional indicator symbol letter s + regional indicator symbol letter z", - "aliases": [ - "sz" - ], - "tags": [ - "flag", - "swaziland" - ] - }, - { - "emojiChar": "🇹🇦", - "emoji": "\uD83C\uDDF9\uD83C\uDDE6", - "description": "regional indicator symbol letter t + regional indicator symbol letter a", - "aliases": [ - "ta" - ], - "tags": [ - "flag", - "tristan da cunha" - ] - }, - { - "emojiChar": "🇹🇨", - "emoji": "\uD83C\uDDF9\uD83C\uDDE8", - "description": "regional indicator symbol letter t + regional indicator symbol letter c", - "aliases": [ - "tc" - ], - "tags": [ - "flag", - "turks and caicos islands" - ] - }, - { - "emojiChar": "🇹🇩", - "emoji": "\uD83C\uDDF9\uD83C\uDDE9", - "description": "regional indicator symbol letter t + regional indicator symbol letter d", - "aliases": [ - "td" - ], - "tags": [ - "flag", - "chad" - ] - }, - { - "emojiChar": "🇹🇫", - "emoji": "\uD83C\uDDF9\uD83C\uDDEB", - "description": "regional indicator symbol letter t + regional indicator symbol letter f", - "aliases": [ - "tf" - ], - "tags": [ - "flag", - "french southern territories" - ] - }, - { - "emojiChar": "🇹🇬", - "emoji": "\uD83C\uDDF9\uD83C\uDDEC", - "description": "regional indicator symbol letter t + regional indicator symbol letter g", - "aliases": [ - "tg" - ], - "tags": [ - "flag", - "togo" - ] - }, - { - "emojiChar": "🇹🇭", - "emoji": "\uD83C\uDDF9\uD83C\uDDED", - "description": "regional indicator symbol letter t + regional indicator symbol letter h", - "aliases": [ - "th" - ], - "tags": [ - "flag", - "thailand" - ] - }, - { - "emojiChar": "🇹🇯", - "emoji": "\uD83C\uDDF9\uD83C\uDDEF", - "description": "regional indicator symbol letter t + regional indicator symbol letter j", - "aliases": [ - "tj" - ], - "tags": [ - "flag", - "tajikistan" - ] - }, - { - "emojiChar": "🇹🇰", - "emoji": "\uD83C\uDDF9\uD83C\uDDF0", - "description": "regional indicator symbol letter t + regional indicator symbol letter k", - "aliases": [ - "tk" - ], - "tags": [ - "flag", - "tokelau" - ] - }, - { - "emojiChar": "🇹🇱", - "emoji": "\uD83C\uDDF9\uD83C\uDDF1", - "description": "regional indicator symbol letter t + regional indicator symbol letter l", - "aliases": [ - "tl" - ], - "tags": [ - "flag", - "east timor" - ] - }, - { - "emojiChar": "🇹🇲", - "emoji": "\uD83C\uDDF9\uD83C\uDDF2", - "description": "regional indicator symbol letter t + regional indicator symbol letter m", - "aliases": [ - "tm_flag" - ], - "tags": [ - "flag", - "turkmenistan" - ] - }, - { - "emojiChar": "🇹🇳", - "emoji": "\uD83C\uDDF9\uD83C\uDDF3", - "description": "regional indicator symbol letter t + regional indicator symbol letter n", - "aliases": [ - "tn" - ], - "tags": [ - "flag", - "tunisia" - ] - }, - { - "emojiChar": "🇹🇴", - "emoji": "\uD83C\uDDF9\uD83C\uDDF4", - "description": "regional indicator symbol letter t + regional indicator symbol letter o", - "aliases": [ - "to" - ], - "tags": [ - "flag", - "tonga" - ] - }, - { - "emojiChar": "🇹🇷", - "emoji": "\uD83C\uDDF9\uD83C\uDDF7", - "description": "regional indicator symbol letter t + regional indicator symbol letter r", - "aliases": [ - "tr" - ], - "tags": [ - "flag", - "turkey" - ] - }, - { - "emojiChar": "🇹🇹", - "emoji": "\uD83C\uDDF9\uD83C\uDDF9", - "description": "regional indicator symbol letter t + regional indicator symbol letter t", - "aliases": [ - "tt" - ], - "tags": [ - "flag", - "trinidad and tobago" - ] - }, - { - "emojiChar": "🇹🇻", - "emoji": "\uD83C\uDDF9\uD83C\uDDFB", - "description": "regional indicator symbol letter t + regional indicator symbol letter v", - "aliases": [ - "tv_flag" - ], - "tags": [ - "flag", - "tuvalu" - ] - }, - { - "emojiChar": "🇹🇼", - "emoji": "\uD83C\uDDF9\uD83C\uDDFC", - "description": "regional indicator symbol letter t + regional indicator symbol letter w", - "aliases": [ - "tw" - ], - "tags": [ - "flag", - "taiwan" - ] - }, - { - "emojiChar": "🇹🇿", - "emoji": "\uD83C\uDDF9\uD83C\uDDFF", - "description": "regional indicator symbol letter t + regional indicator symbol letter z", - "aliases": [ - "tz" - ], - "tags": [ - "flag", - "tanzania" - ] - }, - { - "emojiChar": "🇺🇦", - "emoji": "\uD83C\uDDFA\uD83C\uDDE6", - "description": "regional indicator symbol letter u + regional indicator symbol letter a", - "aliases": [ - "ua" - ], - "tags": [ - "flag", - "ukraine" - ] - }, - { - "emojiChar": "🇺🇬", - "emoji": "\uD83C\uDDFA\uD83C\uDDEC", - "description": "regional indicator symbol letter u + regional indicator symbol letter g", - "aliases": [ - "ug" - ], - "tags": [ - "flag", - "uganda" - ] - }, - { - "emojiChar": "🇺🇲", - "emoji": "\uD83C\uDDFA\uD83C\uDDF2", - "description": "regional indicator symbol letter u + regional indicator symbol letter m", - "aliases": [ - "um" - ], - "tags": [ - "flag", - "u.s. outlying islands" - ] - }, - { - "emojiChar": "🇺🇳", - "emoji": "\uD83C\uDDFA\uD83C\uDDF3", - "description": "regional indicator symbol letter u + regional indicator symbol letter n", - "aliases": [ - "un" - ], - "tags": [ - "flag", - "united nations" - ] - }, - { - "emojiChar": "🇺🇸", - "emoji": "\uD83C\uDDFA\uD83C\uDDF8", - "description": "regional indicator symbol letter u + regional indicator symbol letter s", - "aliases": [ - "us" - ], - "tags": [ - "flag", - "united states of america" - ] - }, - { - "emojiChar": "🏴󠁵󠁳󠁴󠁸󠁿", - "emoji": "\uD83C\uDFF4\uDB40\uDC75\uDB40\uDC73\uDB40\uDC74\uDB40\uDC78\uDB40\uDC7F", - "description": "waving black flag + regional indicator symbol letter u + regional indicator symbol letter s + regional indicator symbol letter t + regional indicator symbol letter x + cancel tag", - "aliases": [ - "ustx" - ], - "tags": [ - "flag", - "texas" - ] - }, - { - "emojiChar": "🇺🇾", - "emoji": "\uD83C\uDDFA\uD83C\uDDFE", - "description": "regional indicator symbol letter u + regional indicator symbol letter y", - "aliases": [ - "uy" - ], - "tags": [ - "flag", - "uruguay" - ] - }, - { - "emojiChar": "🇺🇿", - "emoji": "\uD83C\uDDFA\uD83C\uDDFF", - "description": "regional indicator symbol letter u + regional indicator symbol letter z", - "aliases": [ - "uz" - ], - "tags": [ - "flag", - "uzbekistan" - ] - }, - { - "emojiChar": "🇻🇦", - "emoji": "\uD83C\uDDFB\uD83C\uDDE6", - "description": "regional indicator symbol letter v + regional indicator symbol letter a", - "aliases": [ - "va" - ], - "tags": [ - "flag", - "vatican city" - ] - }, - { - "emojiChar": "🇻🇨", - "emoji": "\uD83C\uDDFB\uD83C\uDDE8", - "description": "regional indicator symbol letter v + regional indicator symbol letter c", - "aliases": [ - "vc" - ], - "tags": [ - "flag", - "st vincent grenadines" - ] - }, - { - "emojiChar": "🇻🇪", - "emoji": "\uD83C\uDDFB\uD83C\uDDEA", - "description": "regional indicator symbol letter v + regional indicator symbol letter e", - "aliases": [ - "ve" - ], - "tags": [ - "flag", - "venezuela" - ] - }, - { - "emojiChar": "🇻🇬", - "emoji": "\uD83C\uDDFB\uD83C\uDDEC", - "description": "regional indicator symbol letter v + regional indicator symbol letter g", - "aliases": [ - "vg" - ], - "tags": [ - "flag", - "british virgin islands" - ] - }, - { - "emojiChar": "🇻🇮", - "emoji": "\uD83C\uDDFB\uD83C\uDDEE", - "description": "regional indicator symbol letter v + regional indicator symbol letter i", - "aliases": [ - "vi" - ], - "tags": [ - "flag", - "us virgin islands" - ] - }, - { - "emojiChar": "🇻🇳", - "emoji": "\uD83C\uDDFB\uD83C\uDDF3", - "description": "regional indicator symbol letter v + regional indicator symbol letter n", - "aliases": [ - "vn" - ], - "tags": [ - "flag", - "vietnam" - ] - }, - { - "emojiChar": "🇻🇺", - "emoji": "\uD83C\uDDFB\uD83C\uDDFA", - "description": "regional indicator symbol letter v + regional indicator symbol letter u", - "aliases": [ - "vu" - ], - "tags": [ - "flag", - "vanuatu" - ] - }, - { - "emojiChar": "🇼🇫", - "emoji": "\uD83C\uDDFC\uD83C\uDDEB", - "description": "regional indicator symbol letter w + regional indicator symbol letter f", - "aliases": [ - "wf" - ], - "tags": [ - "flag", - "wallis & futuna" - ] - }, - { - "emojiChar": "🇼🇸", - "emoji": "\uD83C\uDDFC\uD83C\uDDF8", - "description": "regional indicator symbol letter w + regional indicator symbol letter s", - "aliases": [ - "ws" - ], - "tags": [ - "flag", - "samoa" - ] - }, - { - "emojiChar": "🇽🇰", - "emoji": "\uD83C\uDDFD\uD83C\uDDF0", - "description": "regional indicator symbol letter x + regional indicator symbol letter k", - "aliases": [ - "xk" - ], - "tags": [ - "flag", - "kosovo" - ] - }, - { - "emojiChar": "🇾🇪", - "emoji": "\uD83C\uDDFE\uD83C\uDDEA", - "description": "regional indicator symbol letter y + regional indicator symbol letter e", - "aliases": [ - "ye" - ], - "tags": [ - "flag", - "yemen" - ] - }, - { - "emojiChar": "🇾🇹", - "emoji": "\uD83C\uDDFE\uD83C\uDDF9", - "description": "regional indicator symbol letter y + regional indicator symbol letter t", - "aliases": [ - "yt" - ], - "tags": [ - "flag", - "mayotte" - ] - }, - { - "emojiChar": "🇿🇦", - "emoji": "\uD83C\uDDFF\uD83C\uDDE6", - "description": "regional indicator symbol letter z + regional indicator symbol letter a", - "aliases": [ - "za" - ], - "tags": [ - "flag", - "south africa" - ] - }, - { - "emojiChar": "🇿🇲", - "emoji": "\uD83C\uDDFF\uD83C\uDDF2", - "description": "regional indicator symbol letter z + regional indicator symbol letter m", - "aliases": [ - "zm" - ], - "tags": [ - "flag", - "zambia" - ] - }, - { - "emojiChar": "🇿🇼", - "emoji": "\uD83C\uDDFF\uD83C\uDDFC", - "description": "regional indicator symbol letter z + regional indicator symbol letter w", - "aliases": [ - "zw" - ], - "tags": [ - "flag", - "zimbabwe" - ] - } -] + { + "emojiChar": "😄", + "emoji": "😄", + "description": "smiling face with open mouth and smiling eyes", + "aliases": [ + "smile" + ], + "tags": [ + "happy", + "joy", + "pleased" + ], + "unicode": "😄", + "htmlDec": "😄", + "htmlHex": "😄" + }, + { + "emojiChar": "😃", + "emoji": "😃", + "description": "smiling face with open mouth", + "aliases": [ + "smiley" + ], + "tags": [ + "happy", + "joy", + "haha" + ], + "unicode": "😃", + "htmlDec": "😃", + "htmlHex": "😃" + }, + { + "emojiChar": "😀", + "emoji": "😀", + "description": "grinning face", + "aliases": [ + "grinning" + ], + "tags": [ + "smile", + "happy" + ], + "unicode": "😀", + "htmlDec": "😀", + "htmlHex": "😀" + }, + { + "emojiChar": "😊", + "emoji": "😊", + "description": "smiling face with smiling eyes", + "aliases": [ + "blush" + ], + "tags": [ + "proud" + ], + "unicode": "😊", + "htmlDec": "😊", + "htmlHex": "😊" + }, + { + "emojiChar": "☺", + "emoji": "☺", + "description": "white smiling face", + "aliases": [ + "relaxed" + ], + "tags": [ + "blush", + "pleased" + ], + "unicode": "☺", + "htmlDec": "☺", + "htmlHex": "☺" + }, + { + "emojiChar": "😉", + "emoji": "😉", + "description": "winking face", + "aliases": [ + "wink" + ], + "tags": [ + "flirt" + ], + "unicode": "😉", + "htmlDec": "😉", + "htmlHex": "😉" + }, + { + "emojiChar": "😍", + "emoji": "😍", + "description": "smiling face with heart-shaped eyes", + "aliases": [ + "heart_eyes" + ], + "tags": [ + "love", + "crush" + ], + "unicode": "😍", + "htmlDec": "😍", + "htmlHex": "😍" + }, + { + "emojiChar": "😘", + "emoji": "😘", + "description": "face throwing a kiss", + "aliases": [ + "kissing_heart" + ], + "tags": [ + "flirt" + ], + "unicode": "😘", + "htmlDec": "😘", + "htmlHex": "😘" + }, + { + "emojiChar": "😚", + "emoji": "😚", + "description": "kissing face with closed eyes", + "aliases": [ + "kissing_closed_eyes" + ], + "tags": [], + "unicode": "😚", + "htmlDec": "😚", + "htmlHex": "😚" + }, + { + "emojiChar": "😗", + "emoji": "😗", + "description": "kissing face", + "aliases": [ + "kissing" + ], + "tags": [], + "unicode": "😗", + "htmlDec": "😗", + "htmlHex": "😗" + }, + { + "emojiChar": "😙", + "emoji": "😙", + "description": "kissing face with smiling eyes", + "aliases": [ + "kissing_smiling_eyes" + ], + "tags": [], + "unicode": "😙", + "htmlDec": "😙", + "htmlHex": "😙" + }, + { + "emojiChar": "😜", + "emoji": "😜", + "description": "face with stuck-out tongue and winking eye", + "aliases": [ + "stuck_out_tongue_winking_eye" + ], + "tags": [ + "prank", + "silly" + ], + "unicode": "😜", + "htmlDec": "😜", + "htmlHex": "😜" + }, + { + "emojiChar": "😝", + "emoji": "😝", + "description": "face with stuck-out tongue and tightly-closed eyes", + "aliases": [ + "stuck_out_tongue_closed_eyes" + ], + "tags": [ + "prank" + ], + "unicode": "😝", + "htmlDec": "😝", + "htmlHex": "😝" + }, + { + "emojiChar": "😛", + "emoji": "😛", + "description": "face with stuck-out tongue", + "aliases": [ + "stuck_out_tongue" + ], + "tags": [], + "unicode": "😛", + "htmlDec": "😛", + "htmlHex": "😛" + }, + { + "emojiChar": "😳", + "emoji": "😳", + "description": "flushed face", + "aliases": [ + "flushed" + ], + "tags": [], + "unicode": "😳", + "htmlDec": "😳", + "htmlHex": "😳" + }, + { + "emojiChar": "😁", + "emoji": "😁", + "description": "grinning face with smiling eyes", + "aliases": [ + "grin" + ], + "tags": [], + "unicode": "😁", + "htmlDec": "😁", + "htmlHex": "😁" + }, + { + "emojiChar": "😔", + "emoji": "😔", + "description": "pensive face", + "aliases": [ + "pensive" + ], + "tags": [], + "unicode": "😔", + "htmlDec": "😔", + "htmlHex": "😔" + }, + { + "emojiChar": "😌", + "emoji": "😌", + "description": "relieved face", + "aliases": [ + "relieved" + ], + "tags": [ + "whew" + ], + "unicode": "😌", + "htmlDec": "😌", + "htmlHex": "😌" + }, + { + "emojiChar": "😒", + "emoji": "😒", + "description": "unamused face", + "aliases": [ + "unamused" + ], + "tags": [ + "meh" + ], + "unicode": "😒", + "htmlDec": "😒", + "htmlHex": "😒" + }, + { + "emojiChar": "😞", + "emoji": "😞", + "description": "disappointed face", + "aliases": [ + "disappointed" + ], + "tags": [ + "sad" + ], + "unicode": "😞", + "htmlDec": "😞", + "htmlHex": "😞" + }, + { + "emojiChar": "😣", + "emoji": "😣", + "description": "persevering face", + "aliases": [ + "persevere" + ], + "tags": [ + "struggling" + ], + "unicode": "😣", + "htmlDec": "😣", + "htmlHex": "😣" + }, + { + "emojiChar": "😢", + "emoji": "😢", + "description": "crying face", + "aliases": [ + "cry" + ], + "tags": [ + "sad", + "tear" + ], + "unicode": "😢", + "htmlDec": "😢", + "htmlHex": "😢" + }, + { + "emojiChar": "😂", + "emoji": "😂", + "description": "face with tears of joy", + "aliases": [ + "joy" + ], + "tags": [ + "tears" + ], + "unicode": "😂", + "htmlDec": "😂", + "htmlHex": "😂" + }, + { + "emojiChar": "😭", + "emoji": "😭", + "description": "loudly crying face", + "aliases": [ + "sob" + ], + "tags": [ + "sad", + "cry", + "bawling" + ], + "unicode": "😭", + "htmlDec": "😭", + "htmlHex": "😭" + }, + { + "emojiChar": "😪", + "emoji": "😪", + "description": "sleepy face", + "aliases": [ + "sleepy" + ], + "tags": [ + "tired" + ], + "unicode": "😪", + "htmlDec": "😪", + "htmlHex": "😪" + }, + { + "emojiChar": "😥", + "emoji": "😥", + "description": "disappointed but relieved face", + "aliases": [ + "disappointed_relieved" + ], + "tags": [ + "phew", + "sweat", + "nervous" + ], + "unicode": "😥", + "htmlDec": "😥", + "htmlHex": "😥" + }, + { + "emojiChar": "😰", + "emoji": "😰", + "description": "face with open mouth and cold sweat", + "aliases": [ + "cold_sweat" + ], + "tags": [ + "nervous" + ], + "unicode": "😰", + "htmlDec": "😰", + "htmlHex": "😰" + }, + { + "emojiChar": "😅", + "emoji": "😅", + "description": "smiling face with open mouth and cold sweat", + "aliases": [ + "sweat_smile" + ], + "tags": [ + "hot" + ], + "unicode": "😅", + "htmlDec": "😅", + "htmlHex": "😅" + }, + { + "emojiChar": "😓", + "emoji": "😓", + "description": "face with cold sweat", + "aliases": [ + "sweat" + ], + "tags": [], + "unicode": "😓", + "htmlDec": "😓", + "htmlHex": "😓" + }, + { + "emojiChar": "😩", + "emoji": "😩", + "description": "weary face", + "aliases": [ + "weary" + ], + "tags": [ + "tired" + ], + "unicode": "😩", + "htmlDec": "😩", + "htmlHex": "😩" + }, + { + "emojiChar": "😫", + "emoji": "😫", + "description": "tired face", + "aliases": [ + "tired_face" + ], + "tags": [ + "upset", + "whine" + ], + "unicode": "😫", + "htmlDec": "😫", + "htmlHex": "😫" + }, + { + "emojiChar": "😨", + "emoji": "😨", + "description": "fearful face", + "aliases": [ + "fearful" + ], + "tags": [ + "scared", + "shocked", + "oops" + ], + "unicode": "😨", + "htmlDec": "😨", + "htmlHex": "😨" + }, + { + "emojiChar": "😱", + "emoji": "😱", + "description": "face screaming in fear", + "aliases": [ + "scream" + ], + "tags": [ + "horror", + "shocked" + ], + "unicode": "😱", + "htmlDec": "😱", + "htmlHex": "😱" + }, + { + "emojiChar": "😠", + "emoji": "😠", + "description": "angry face", + "aliases": [ + "angry" + ], + "tags": [ + "mad", + "annoyed" + ], + "unicode": "😠", + "htmlDec": "😠", + "htmlHex": "😠" + }, + { + "emojiChar": "😡", + "emoji": "😡", + "description": "pouting face", + "aliases": [ + "rage" + ], + "tags": [ + "angry" + ], + "unicode": "😡", + "htmlDec": "😡", + "htmlHex": "😡" + }, + { + "emojiChar": "😤", + "emoji": "😤", + "description": "face with look of triumph", + "aliases": [ + "triumph" + ], + "tags": [ + "smug" + ], + "unicode": "😤", + "htmlDec": "😤", + "htmlHex": "😤" + }, + { + "emojiChar": "😖", + "emoji": "😖", + "description": "confounded face", + "aliases": [ + "confounded" + ], + "tags": [], + "unicode": "😖", + "htmlDec": "😖", + "htmlHex": "😖" + }, + { + "emojiChar": "😆", + "emoji": "😆", + "description": "smiling face with open mouth and tightly-closed eyes", + "aliases": [ + "laughing", + "satisfied" + ], + "tags": [ + "happy", + "haha" + ], + "unicode": "😆", + "htmlDec": "😆", + "htmlHex": "😆" + }, + { + "emojiChar": "😋", + "emoji": "😋", + "description": "face savouring delicious food", + "aliases": [ + "yum" + ], + "tags": [ + "tongue", + "lick" + ], + "unicode": "😋", + "htmlDec": "😋", + "htmlHex": "😋" + }, + { + "emojiChar": "😷", + "emoji": "😷", + "description": "face with medical mask", + "aliases": [ + "mask" + ], + "tags": [ + "sick", + "ill" + ], + "unicode": "😷", + "htmlDec": "😷", + "htmlHex": "😷" + }, + { + "emojiChar": "😎", + "emoji": "😎", + "description": "smiling face with sunglasses", + "aliases": [ + "sunglasses" + ], + "tags": [ + "cool" + ], + "unicode": "😎", + "htmlDec": "😎", + "htmlHex": "😎" + }, + { + "emojiChar": "😴", + "emoji": "😴", + "description": "sleeping face", + "aliases": [ + "sleeping" + ], + "tags": [ + "zzz" + ], + "unicode": "😴", + "htmlDec": "😴", + "htmlHex": "😴" + }, + { + "emojiChar": "😵", + "emoji": "😵", + "description": "dizzy face", + "aliases": [ + "dizzy_face" + ], + "tags": [], + "unicode": "😵", + "htmlDec": "😵", + "htmlHex": "😵" + }, + { + "emojiChar": "😲", + "emoji": "😲", + "description": "astonished face", + "aliases": [ + "astonished" + ], + "tags": [ + "amazed", + "gasp" + ], + "unicode": "😲", + "htmlDec": "😲", + "htmlHex": "😲" + }, + { + "emojiChar": "😟", + "emoji": "😟", + "description": "worried face", + "aliases": [ + "worried" + ], + "tags": [ + "nervous" + ], + "unicode": "😟", + "htmlDec": "😟", + "htmlHex": "😟" + }, + { + "emojiChar": "😦", + "emoji": "😦", + "description": "frowning face with open mouth", + "aliases": [ + "frowning" + ], + "tags": [], + "unicode": "😦", + "htmlDec": "😦", + "htmlHex": "😦" + }, + { + "emojiChar": "😧", + "emoji": "😧", + "description": "anguished face", + "aliases": [ + "anguished" + ], + "tags": [ + "stunned" + ], + "unicode": "😧", + "htmlDec": "😧", + "htmlHex": "😧" + }, + { + "emojiChar": "😈", + "emoji": "😈", + "description": "smiling face with horns", + "aliases": [ + "smiling_imp" + ], + "tags": [ + "devil", + "evil", + "horns" + ], + "unicode": "😈", + "htmlDec": "😈", + "htmlHex": "😈" + }, + { + "emojiChar": "👿", + "emoji": "👿", + "description": "imp", + "aliases": [ + "imp" + ], + "tags": [ + "angry", + "devil", + "evil", + "horns" + ], + "unicode": "👿", + "htmlDec": "👿", + "htmlHex": "👿" + }, + { + "emojiChar": "😮", + "emoji": "😮", + "description": "face with open mouth", + "aliases": [ + "open_mouth" + ], + "tags": [ + "surprise", + "impressed", + "wow" + ], + "unicode": "😮", + "htmlDec": "😮", + "htmlHex": "😮" + }, + { + "emojiChar": "😬", + "emoji": "😬", + "description": "grimacing face", + "aliases": [ + "grimacing" + ], + "tags": [], + "unicode": "😬", + "htmlDec": "😬", + "htmlHex": "😬" + }, + { + "emojiChar": "😐", + "emoji": "😐", + "description": "neutral face", + "aliases": [ + "neutral_face" + ], + "tags": [ + "meh" + ], + "unicode": "😐", + "htmlDec": "😐", + "htmlHex": "😐" + }, + { + "emojiChar": "😕", + "emoji": "😕", + "description": "confused face", + "aliases": [ + "confused" + ], + "tags": [], + "unicode": "😕", + "htmlDec": "😕", + "htmlHex": "😕" + }, + { + "emojiChar": "😯", + "emoji": "😯", + "description": "hushed face", + "aliases": [ + "hushed" + ], + "tags": [ + "silence", + "speechless" + ], + "unicode": "😯", + "htmlDec": "😯", + "htmlHex": "😯" + }, + { + "emojiChar": "😶", + "emoji": "😶", + "description": "face without mouth", + "aliases": [ + "no_mouth" + ], + "tags": [ + "mute", + "silence" + ], + "unicode": "😶", + "htmlDec": "😶", + "htmlHex": "😶" + }, + { + "emojiChar": "😇", + "emoji": "😇", + "description": "smiling face with halo", + "aliases": [ + "innocent" + ], + "tags": [ + "angel" + ], + "unicode": "😇", + "htmlDec": "😇", + "htmlHex": "😇" + }, + { + "emojiChar": "😏", + "emoji": "😏", + "description": "smirking face", + "aliases": [ + "smirk" + ], + "tags": [ + "smug" + ], + "unicode": "😏", + "htmlDec": "😏", + "htmlHex": "😏" + }, + { + "emojiChar": "😑", + "emoji": "😑", + "description": "expressionless face", + "aliases": [ + "expressionless" + ], + "tags": [], + "unicode": "😑", + "htmlDec": "😑", + "htmlHex": "😑" + }, + { + "emojiChar": "👲", + "emoji": "👲", + "description": "man with gua pi mao", + "supports_fitzpatrick": true, + "aliases": [ + "man_with_gua_pi_mao" + ], + "tags": [], + "unicode": "👲", + "htmlDec": "👲", + "htmlHex": "👲" + }, + { + "emojiChar": "👳", + "emoji": "👳", + "description": "man with turban", + "supports_fitzpatrick": true, + "aliases": [ + "man_with_turban" + ], + "tags": [], + "unicode": "👳", + "htmlDec": "👳", + "htmlHex": "👳" + }, + { + "emojiChar": "👮", + "emoji": "👮", + "description": "police officer", + "supports_fitzpatrick": true, + "aliases": [ + "cop" + ], + "tags": [ + "police", + "law" + ], + "unicode": "👮", + "htmlDec": "👮", + "htmlHex": "👮" + }, + { + "emojiChar": "👷", + "emoji": "👷", + "description": "construction worker", + "supports_fitzpatrick": true, + "aliases": [ + "construction_worker" + ], + "tags": [ + "helmet" + ], + "unicode": "👷", + "htmlDec": "👷", + "htmlHex": "👷" + }, + { + "emojiChar": "💂", + "emoji": "💂", + "description": "guardsman", + "supports_fitzpatrick": true, + "aliases": [ + "guardsman" + ], + "tags": [], + "unicode": "💂", + "htmlDec": "💂", + "htmlHex": "💂" + }, + { + "emojiChar": "👶", + "emoji": "👶", + "description": "baby", + "supports_fitzpatrick": true, + "aliases": [ + "baby" + ], + "tags": [ + "child", + "newborn" + ], + "unicode": "👶", + "htmlDec": "👶", + "htmlHex": "👶" + }, + { + "emojiChar": "👦", + "emoji": "👦", + "description": "boy", + "supports_fitzpatrick": true, + "aliases": [ + "boy" + ], + "tags": [ + "child" + ], + "unicode": "👦", + "htmlDec": "👦", + "htmlHex": "👦" + }, + { + "emojiChar": "👧", + "emoji": "👧", + "description": "girl", + "supports_fitzpatrick": true, + "aliases": [ + "girl" + ], + "tags": [ + "child" + ], + "unicode": "👧", + "htmlDec": "👧", + "htmlHex": "👧" + }, + { + "emojiChar": "👨", + "emoji": "👨", + "description": "man", + "supports_fitzpatrick": true, + "aliases": [ + "man" + ], + "tags": [ + "mustache", + "father", + "dad" + ], + "unicode": "👨", + "htmlDec": "👨", + "htmlHex": "👨" + }, + { + "emojiChar": "👩", + "emoji": "👩", + "description": "woman", + "supports_fitzpatrick": true, + "aliases": [ + "woman" + ], + "tags": [ + "girls" + ], + "unicode": "👩", + "htmlDec": "👩", + "htmlHex": "👩" + }, + { + "emojiChar": "👴", + "emoji": "👴", + "description": "older man", + "supports_fitzpatrick": true, + "aliases": [ + "older_man" + ], + "tags": [], + "unicode": "👴", + "htmlDec": "👴", + "htmlHex": "👴" + }, + { + "emojiChar": "👵", + "emoji": "👵", + "description": "older woman", + "supports_fitzpatrick": true, + "aliases": [ + "older_woman" + ], + "tags": [], + "unicode": "👵", + "htmlDec": "👵", + "htmlHex": "👵" + }, + { + "emojiChar": "👱", + "emoji": "👱", + "description": "person with blond hair", + "supports_fitzpatrick": true, + "aliases": [ + "person_with_blond_hair" + ], + "tags": [ + "boy" + ], + "unicode": "👱", + "htmlDec": "👱", + "htmlHex": "👱" + }, + { + "emojiChar": "👼", + "emoji": "👼", + "description": "baby angel", + "supports_fitzpatrick": true, + "aliases": [ + "angel" + ], + "tags": [], + "unicode": "👼", + "htmlDec": "👼", + "htmlHex": "👼" + }, + { + "emojiChar": "👸", + "emoji": "👸", + "description": "princess", + "supports_fitzpatrick": true, + "aliases": [ + "princess" + ], + "tags": [ + "blonde", + "crown", + "royal" + ], + "unicode": "👸", + "htmlDec": "👸", + "htmlHex": "👸" + }, + { + "emojiChar": "😺", + "emoji": "😺", + "description": "smiling cat face with open mouth", + "aliases": [ + "smiley_cat" + ], + "tags": [], + "unicode": "😺", + "htmlDec": "😺", + "htmlHex": "😺" + }, + { + "emojiChar": "😸", + "emoji": "😸", + "description": "grinning cat face with smiling eyes", + "aliases": [ + "smile_cat" + ], + "tags": [], + "unicode": "😸", + "htmlDec": "😸", + "htmlHex": "😸" + }, + { + "emojiChar": "😻", + "emoji": "😻", + "description": "smiling cat face with heart-shaped eyes", + "aliases": [ + "heart_eyes_cat" + ], + "tags": [], + "unicode": "😻", + "htmlDec": "😻", + "htmlHex": "😻" + }, + { + "emojiChar": "😽", + "emoji": "😽", + "description": "kissing cat face with closed eyes", + "aliases": [ + "kissing_cat" + ], + "tags": [], + "unicode": "😽", + "htmlDec": "😽", + "htmlHex": "😽" + }, + { + "emojiChar": "😼", + "emoji": "😼", + "description": "cat face with wry smile", + "aliases": [ + "smirk_cat" + ], + "tags": [], + "unicode": "😼", + "htmlDec": "😼", + "htmlHex": "😼" + }, + { + "emojiChar": "🙀", + "emoji": "🙀", + "description": "weary cat face", + "aliases": [ + "scream_cat" + ], + "tags": [ + "horror" + ], + "unicode": "🙀", + "htmlDec": "🙀", + "htmlHex": "🙀" + }, + { + "emojiChar": "😿", + "emoji": "😿", + "description": "crying cat face", + "aliases": [ + "crying_cat_face" + ], + "tags": [ + "sad", + "tear" + ], + "unicode": "😿", + "htmlDec": "😿", + "htmlHex": "😿" + }, + { + "emojiChar": "😹", + "emoji": "😹", + "description": "cat face with tears of joy", + "aliases": [ + "joy_cat" + ], + "tags": [], + "unicode": "😹", + "htmlDec": "😹", + "htmlHex": "😹" + }, + { + "emojiChar": "😾", + "emoji": "😾", + "description": "pouting cat face", + "aliases": [ + "pouting_cat" + ], + "tags": [], + "unicode": "😾", + "htmlDec": "😾", + "htmlHex": "😾" + }, + { + "emojiChar": "👹", + "emoji": "👹", + "description": "japanese ogre", + "aliases": [ + "japanese_ogre" + ], + "tags": [ + "monster" + ], + "unicode": "👹", + "htmlDec": "👹", + "htmlHex": "👹" + }, + { + "emojiChar": "👺", + "emoji": "👺", + "description": "japanese goblin", + "aliases": [ + "japanese_goblin" + ], + "tags": [], + "unicode": "👺", + "htmlDec": "👺", + "htmlHex": "👺" + }, + { + "emojiChar": "🙈", + "emoji": "🙈", + "description": "see-no-evil monkey", + "aliases": [ + "see_no_evil" + ], + "tags": [ + "monkey", + "blind", + "ignore" + ], + "unicode": "🙈", + "htmlDec": "🙈", + "htmlHex": "🙈" + }, + { + "emojiChar": "🙉", + "emoji": "🙉", + "description": "hear-no-evil monkey", + "aliases": [ + "hear_no_evil" + ], + "tags": [ + "monkey", + "deaf" + ], + "unicode": "🙉", + "htmlDec": "🙉", + "htmlHex": "🙉" + }, + { + "emojiChar": "🙊", + "emoji": "🙊", + "description": "speak-no-evil monkey", + "aliases": [ + "speak_no_evil" + ], + "tags": [ + "monkey", + "mute", + "hush" + ], + "unicode": "🙊", + "htmlDec": "🙊", + "htmlHex": "🙊" + }, + { + "emojiChar": "💀", + "emoji": "💀", + "description": "skull", + "aliases": [ + "skull" + ], + "tags": [ + "dead", + "danger", + "poison" + ], + "unicode": "💀", + "htmlDec": "💀", + "htmlHex": "💀" + }, + { + "emojiChar": "👽", + "emoji": "👽", + "description": "extraterrestrial alien", + "aliases": [ + "alien" + ], + "tags": [ + "ufo" + ], + "unicode": "👽", + "htmlDec": "👽", + "htmlHex": "👽" + }, + { + "emojiChar": "💩", + "emoji": "💩", + "description": "pile of poo", + "aliases": [ + "hankey", + "poop", + "shit" + ], + "tags": [ + "crap" + ], + "unicode": "💩", + "htmlDec": "💩", + "htmlHex": "💩" + }, + { + "emojiChar": "🔥", + "emoji": "🔥", + "description": "fire", + "aliases": [ + "fire" + ], + "tags": [ + "burn" + ], + "unicode": "🔥", + "htmlDec": "🔥", + "htmlHex": "🔥" + }, + { + "emojiChar": "✨", + "emoji": "✨", + "description": "sparkles", + "aliases": [ + "sparkles" + ], + "tags": [ + "shiny" + ], + "unicode": "✨", + "htmlDec": "✨", + "htmlHex": "✨" + }, + { + "emojiChar": "🌟", + "emoji": "🌟", + "description": "glowing star", + "aliases": [ + "star2" + ], + "tags": [], + "unicode": "🌟", + "htmlDec": "🌟", + "htmlHex": "🌟" + }, + { + "emojiChar": "💫", + "emoji": "💫", + "description": "dizzy symbol", + "aliases": [ + "dizzy" + ], + "tags": [ + "star" + ], + "unicode": "💫", + "htmlDec": "💫", + "htmlHex": "💫" + }, + { + "emojiChar": "💥", + "emoji": "💥", + "description": "collision symbol", + "aliases": [ + "boom", + "collision" + ], + "tags": [ + "explode" + ], + "unicode": "💥", + "htmlDec": "💥", + "htmlHex": "💥" + }, + { + "emojiChar": "💢", + "emoji": "💢", + "description": "anger symbol", + "aliases": [ + "anger" + ], + "tags": [ + "angry" + ], + "unicode": "💢", + "htmlDec": "💢", + "htmlHex": "💢" + }, + { + "emojiChar": "💦", + "emoji": "💦", + "description": "splashing sweat symbol", + "aliases": [ + "sweat_drops" + ], + "tags": [ + "water", + "workout" + ], + "unicode": "💦", + "htmlDec": "💦", + "htmlHex": "💦" + }, + { + "emojiChar": "💧", + "emoji": "💧", + "description": "droplet", + "aliases": [ + "droplet" + ], + "tags": [ + "water" + ], + "unicode": "💧", + "htmlDec": "💧", + "htmlHex": "💧" + }, + { + "emojiChar": "💤", + "emoji": "💤", + "description": "sleeping symbol", + "aliases": [ + "zzz" + ], + "tags": [ + "sleeping" + ], + "unicode": "💤", + "htmlDec": "💤", + "htmlHex": "💤" + }, + { + "emojiChar": "💨", + "emoji": "💨", + "description": "dash symbol", + "aliases": [ + "dash" + ], + "tags": [ + "wind", + "blow", + "fast" + ], + "unicode": "💨", + "htmlDec": "💨", + "htmlHex": "💨" + }, + { + "emojiChar": "👂", + "emoji": "👂", + "description": "ear", + "supports_fitzpatrick": true, + "aliases": [ + "ear" + ], + "tags": [ + "hear", + "sound", + "listen" + ], + "unicode": "👂", + "htmlDec": "👂", + "htmlHex": "👂" + }, + { + "emojiChar": "👀", + "emoji": "👀", + "description": "eyes", + "aliases": [ + "eyes" + ], + "tags": [ + "look", + "see", + "watch" + ], + "unicode": "👀", + "htmlDec": "👀", + "htmlHex": "👀" + }, + { + "emojiChar": "👃", + "emoji": "👃", + "description": "nose", + "supports_fitzpatrick": true, + "aliases": [ + "nose" + ], + "tags": [ + "smell" + ], + "unicode": "👃", + "htmlDec": "👃", + "htmlHex": "👃" + }, + { + "emojiChar": "👅", + "emoji": "👅", + "description": "tongue", + "aliases": [ + "tongue" + ], + "tags": [ + "taste" + ], + "unicode": "👅", + "htmlDec": "👅", + "htmlHex": "👅" + }, + { + "emojiChar": "👄", + "emoji": "👄", + "description": "mouth", + "aliases": [ + "lips" + ], + "tags": [ + "kiss" + ], + "unicode": "👄", + "htmlDec": "👄", + "htmlHex": "👄" + }, + { + "emojiChar": "👍", + "emoji": "👍", + "description": "thumbs up sign", + "supports_fitzpatrick": true, + "aliases": [ + "+1", + "like", + "thumbsup" + ], + "tags": [ + "approve", + "ok" + ], + "unicode": "👍", + "htmlDec": "👍", + "htmlHex": "👍" + }, + { + "emojiChar": "👎", + "emoji": "👎", + "description": "thumbs down sign", + "supports_fitzpatrick": true, + "aliases": [ + "-1", + "thumbsdown" + ], + "tags": [ + "disapprove", + "bury" + ], + "unicode": "👎", + "htmlDec": "👎", + "htmlHex": "👎" + }, + { + "emojiChar": "👌", + "emoji": "👌", + "description": "ok hand sign", + "supports_fitzpatrick": true, + "aliases": [ + "ok_hand" + ], + "tags": [], + "unicode": "👌", + "htmlDec": "👌", + "htmlHex": "👌" + }, + { + "emojiChar": "👊", + "emoji": "👊", + "description": "fisted hand sign", + "supports_fitzpatrick": true, + "aliases": [ + "facepunch", + "punch" + ], + "tags": [ + "attack" + ], + "unicode": "👊", + "htmlDec": "👊", + "htmlHex": "👊" + }, + { + "emojiChar": "✊", + "emoji": "✊", + "description": "raised fist", + "supports_fitzpatrick": true, + "aliases": [ + "fist" + ], + "tags": [ + "power" + ], + "unicode": "✊", + "htmlDec": "✊", + "htmlHex": "✊" + }, + { + "emojiChar": "✌", + "emoji": "✌", + "description": "victory hand", + "supports_fitzpatrick": true, + "aliases": [ + "v" + ], + "tags": [ + "victory", + "peace" + ], + "unicode": "✌", + "htmlDec": "✌", + "htmlHex": "✌" + }, + { + "emojiChar": "👋", + "emoji": "👋", + "description": "waving hand sign", + "supports_fitzpatrick": true, + "aliases": [ + "wave" + ], + "tags": [ + "goodbye" + ], + "unicode": "👋", + "htmlDec": "👋", + "htmlHex": "👋" + }, + { + "emojiChar": "✋", + "emoji": "✋", + "description": "raised hand", + "supports_fitzpatrick": true, + "aliases": [ + "hand", + "raised_hand" + ], + "tags": [ + "highfive", + "stop" + ], + "unicode": "✋", + "htmlDec": "✋", + "htmlHex": "✋" + }, + { + "emojiChar": "👐", + "emoji": "👐", + "description": "open hands sign", + "supports_fitzpatrick": true, + "aliases": [ + "open_hands" + ], + "tags": [], + "unicode": "👐", + "htmlDec": "👐", + "htmlHex": "👐" + }, + { + "emojiChar": "👆", + "emoji": "👆", + "description": "white up pointing backhand index", + "supports_fitzpatrick": true, + "aliases": [ + "point_up_2" + ], + "tags": [], + "unicode": "👆", + "htmlDec": "👆", + "htmlHex": "👆" + }, + { + "emojiChar": "👇", + "emoji": "👇", + "description": "white down pointing backhand index", + "supports_fitzpatrick": true, + "aliases": [ + "point_down" + ], + "tags": [], + "unicode": "👇", + "htmlDec": "👇", + "htmlHex": "👇" + }, + { + "emojiChar": "👉", + "emoji": "👉", + "description": "white right pointing backhand index", + "supports_fitzpatrick": true, + "aliases": [ + "point_right" + ], + "tags": [], + "unicode": "👉", + "htmlDec": "👉", + "htmlHex": "👉" + }, + { + "emojiChar": "👈", + "emoji": "👈", + "description": "white left pointing backhand index", + "supports_fitzpatrick": true, + "aliases": [ + "point_left" + ], + "tags": [], + "unicode": "👈", + "htmlDec": "👈", + "htmlHex": "👈" + }, + { + "emojiChar": "🙌", + "emoji": "🙌", + "description": "person raising both hands in celebration", + "supports_fitzpatrick": true, + "aliases": [ + "raised_hands" + ], + "tags": [ + "hooray" + ], + "unicode": "🙌", + "htmlDec": "🙌", + "htmlHex": "🙌" + }, + { + "emojiChar": "🙏", + "emoji": "🙏", + "description": "person with folded hands", + "supports_fitzpatrick": true, + "aliases": [ + "pray" + ], + "tags": [ + "please", + "hope", + "wish" + ], + "unicode": "🙏", + "htmlDec": "🙏", + "htmlHex": "🙏" + }, + { + "emojiChar": "☝", + "emoji": "☝", + "description": "white up pointing index", + "supports_fitzpatrick": true, + "aliases": [ + "point_up" + ], + "tags": [], + "unicode": "☝", + "htmlDec": "☝", + "htmlHex": "☝" + }, + { + "emojiChar": "👏", + "emoji": "👏", + "description": "clapping hands sign", + "supports_fitzpatrick": true, + "aliases": [ + "clap" + ], + "tags": [ + "praise", + "applause" + ], + "unicode": "👏", + "htmlDec": "👏", + "htmlHex": "👏" + }, + { + "emojiChar": "💪", + "emoji": "💪", + "description": "flexed biceps", + "supports_fitzpatrick": true, + "aliases": [ + "muscle" + ], + "tags": [ + "flex", + "bicep", + "strong", + "workout" + ], + "unicode": "💪", + "htmlDec": "💪", + "htmlHex": "💪" + }, + { + "emojiChar": "🚶", + "emoji": "🚶", + "description": "pedestrian", + "supports_fitzpatrick": true, + "aliases": [ + "walking" + ], + "tags": [], + "unicode": "🚶", + "htmlDec": "🚶", + "htmlHex": "🚶" + }, + { + "emojiChar": "🏃", + "emoji": "🏃", + "description": "runner", + "supports_fitzpatrick": true, + "aliases": [ + "runner", + "running" + ], + "tags": [ + "exercise", + "workout", + "marathon" + ], + "unicode": "🏃", + "htmlDec": "🏃", + "htmlHex": "🏃" + }, + { + "emojiChar": "💃", + "emoji": "💃", + "description": "dancer", + "supports_fitzpatrick": true, + "aliases": [ + "dancer" + ], + "tags": [ + "dress" + ], + "unicode": "💃", + "htmlDec": "💃", + "htmlHex": "💃" + }, + { + "emojiChar": "👫", + "emoji": "👫", + "description": "man and woman holding hands", + "aliases": [ + "couple" + ], + "tags": [ + "date" + ], + "unicode": "👫", + "htmlDec": "👫", + "htmlHex": "👫" + }, + { + "emojiChar": "👪", + "emoji": "👪", + "description": "family", + "aliases": [ + "family" + ], + "tags": [ + "home", + "parents", + "child" + ], + "unicode": "👪", + "htmlDec": "👪", + "htmlHex": "👪" + }, + { + "emojiChar": "👬", + "emoji": "👬", + "description": "two men holding hands", + "aliases": [ + "two_men_holding_hands" + ], + "tags": [ + "couple", + "date" + ], + "unicode": "👬", + "htmlDec": "👬", + "htmlHex": "👬" + }, + { + "emojiChar": "👭", + "emoji": "👭", + "description": "two women holding hands", + "aliases": [ + "two_women_holding_hands" + ], + "tags": [ + "couple", + "date" + ], + "unicode": "👭", + "htmlDec": "👭", + "htmlHex": "👭" + }, + { + "emojiChar": "💏", + "emoji": "💏", + "description": "kiss", + "aliases": [ + "couplekiss" + ], + "tags": [], + "unicode": "💏", + "htmlDec": "💏", + "htmlHex": "💏" + }, + { + "emojiChar": "💑", + "emoji": "💑", + "description": "couple with heart", + "aliases": [ + "couple_with_heart" + ], + "tags": [], + "unicode": "💑", + "htmlDec": "💑", + "htmlHex": "💑" + }, + { + "emojiChar": "👯", + "emoji": "👯", + "description": "woman with bunny ears", + "supports_fitzpatrick": true, + "aliases": [ + "dancers" + ], + "tags": [ + "bunny" + ], + "unicode": "👯", + "htmlDec": "👯", + "htmlHex": "👯" + }, + { + "emojiChar": "🙆", + "emoji": "🙆", + "description": "face with ok gesture", + "supports_fitzpatrick": true, + "aliases": [ + "ok_woman" + ], + "tags": [], + "unicode": "🙆", + "htmlDec": "🙆", + "htmlHex": "🙆" + }, + { + "emojiChar": "🙅", + "emoji": "🙅", + "description": "face with no good gesture", + "supports_fitzpatrick": true, + "aliases": [ + "no_good" + ], + "tags": [ + "stop", + "halt" + ], + "unicode": "🙅", + "htmlDec": "🙅", + "htmlHex": "🙅" + }, + { + "emojiChar": "💁", + "emoji": "💁", + "description": "information desk person", + "supports_fitzpatrick": true, + "aliases": [ + "information_desk_person" + ], + "tags": [], + "unicode": "💁", + "htmlDec": "💁", + "htmlHex": "💁" + }, + { + "emojiChar": "🙋", + "emoji": "🙋", + "description": "happy person raising one hand", + "supports_fitzpatrick": true, + "aliases": [ + "raising_hand" + ], + "tags": [], + "unicode": "🙋", + "htmlDec": "🙋", + "htmlHex": "🙋" + }, + { + "emojiChar": "💆", + "emoji": "💆", + "description": "face massage", + "supports_fitzpatrick": true, + "aliases": [ + "massage" + ], + "tags": [ + "spa" + ], + "unicode": "💆", + "htmlDec": "💆", + "htmlHex": "💆" + }, + { + "emojiChar": "💇", + "emoji": "💇", + "description": "haircut", + "supports_fitzpatrick": true, + "aliases": [ + "haircut" + ], + "tags": [ + "beauty" + ], + "unicode": "💇", + "htmlDec": "💇", + "htmlHex": "💇" + }, + { + "emojiChar": "💅", + "emoji": "💅", + "description": "nail polish", + "supports_fitzpatrick": true, + "aliases": [ + "nail_care" + ], + "tags": [ + "beauty", + "manicure" + ], + "unicode": "💅", + "htmlDec": "💅", + "htmlHex": "💅" + }, + { + "emojiChar": "👰", + "emoji": "👰", + "description": "bride with veil", + "supports_fitzpatrick": true, + "aliases": [ + "bride_with_veil" + ], + "tags": [ + "marriage", + "wedding" + ], + "unicode": "👰", + "htmlDec": "👰", + "htmlHex": "👰" + }, + { + "emojiChar": "🙎", + "emoji": "🙎", + "description": "person with pouting face", + "supports_fitzpatrick": true, + "aliases": [ + "person_with_pouting_face" + ], + "tags": [], + "unicode": "🙎", + "htmlDec": "🙎", + "htmlHex": "🙎" + }, + { + "emojiChar": "🙍", + "emoji": "🙍", + "description": "person frowning", + "supports_fitzpatrick": true, + "aliases": [ + "person_frowning" + ], + "tags": [ + "sad" + ], + "unicode": "🙍", + "htmlDec": "🙍", + "htmlHex": "🙍" + }, + { + "emojiChar": "🙇", + "emoji": "🙇", + "description": "person bowing deeply", + "supports_fitzpatrick": true, + "aliases": [ + "bow" + ], + "tags": [ + "respect", + "thanks" + ], + "unicode": "🙇", + "htmlDec": "🙇", + "htmlHex": "🙇" + }, + { + "emojiChar": "🙇‍♀️", + "emoji": "🙇‍♀️", + "description": "woman bowing deeply", + "supports_fitzpatrick": true, + "aliases": [ + "woman_bow", + "female_bow" + ], + "tags": [ + "respect", + "thanks" + ], + "unicode": "🙇‍♀️", + "htmlDec": "🙇‍♀️", + "htmlHex": "🙇‍♀️" + }, + { + "emojiChar": "🙇‍♂️", + "emoji": "🙇‍♂️", + "description": "man bowing deeply", + "supports_fitzpatrick": true, + "aliases": [ + "man_bow", + "male_bow" + ], + "tags": [ + "respect", + "thanks" + ], + "unicode": "🙇‍♂️", + "htmlDec": "🙇‍♂️", + "htmlHex": "🙇‍♂️" + }, + { + "emojiChar": "🎩", + "emoji": "🎩", + "description": "top hat", + "aliases": [ + "tophat" + ], + "tags": [ + "hat", + "classy" + ], + "unicode": "🎩", + "htmlDec": "🎩", + "htmlHex": "🎩" + }, + { + "emojiChar": "👑", + "emoji": "👑", + "description": "crown", + "aliases": [ + "crown" + ], + "tags": [ + "king", + "queen", + "royal" + ], + "unicode": "👑", + "htmlDec": "👑", + "htmlHex": "👑" + }, + { + "emojiChar": "👒", + "emoji": "👒", + "description": "womans hat", + "aliases": [ + "womans_hat" + ], + "tags": [], + "unicode": "👒", + "htmlDec": "👒", + "htmlHex": "👒" + }, + { + "emojiChar": "👟", + "emoji": "👟", + "description": "athletic shoe", + "aliases": [ + "athletic_shoe" + ], + "tags": [ + "sneaker", + "sport", + "running" + ], + "unicode": "👟", + "htmlDec": "👟", + "htmlHex": "👟" + }, + { + "emojiChar": "👞", + "emoji": "👞", + "description": "mans shoe", + "aliases": [ + "mans_shoe", + "shoe" + ], + "tags": [], + "unicode": "👞", + "htmlDec": "👞", + "htmlHex": "👞" + }, + { + "emojiChar": "👡", + "emoji": "👡", + "description": "womans sandal", + "aliases": [ + "sandal" + ], + "tags": [ + "shoe" + ], + "unicode": "👡", + "htmlDec": "👡", + "htmlHex": "👡" + }, + { + "emojiChar": "👠", + "emoji": "👠", + "description": "high-heeled shoe", + "aliases": [ + "high_heel" + ], + "tags": [ + "shoe" + ], + "unicode": "👠", + "htmlDec": "👠", + "htmlHex": "👠" + }, + { + "emojiChar": "👢", + "emoji": "👢", + "description": "womans boots", + "aliases": [ + "boot" + ], + "tags": [], + "unicode": "👢", + "htmlDec": "👢", + "htmlHex": "👢" + }, + { + "emojiChar": "👕", + "emoji": "👕", + "description": "t-shirt", + "aliases": [ + "shirt", + "tshirt" + ], + "tags": [], + "unicode": "👕", + "htmlDec": "👕", + "htmlHex": "👕" + }, + { + "emojiChar": "👔", + "emoji": "👔", + "description": "necktie", + "aliases": [ + "necktie" + ], + "tags": [ + "shirt", + "formal" + ], + "unicode": "👔", + "htmlDec": "👔", + "htmlHex": "👔" + }, + { + "emojiChar": "👚", + "emoji": "👚", + "description": "womans clothes", + "aliases": [ + "womans_clothes" + ], + "tags": [], + "unicode": "👚", + "htmlDec": "👚", + "htmlHex": "👚" + }, + { + "emojiChar": "👗", + "emoji": "👗", + "description": "dress", + "aliases": [ + "dress" + ], + "tags": [], + "unicode": "👗", + "htmlDec": "👗", + "htmlHex": "👗" + }, + { + "emojiChar": "🎽", + "emoji": "🎽", + "description": "running shirt with sash", + "aliases": [ + "running_shirt_with_sash" + ], + "tags": [ + "marathon" + ], + "unicode": "🎽", + "htmlDec": "🎽", + "htmlHex": "🎽" + }, + { + "emojiChar": "👖", + "emoji": "👖", + "description": "jeans", + "aliases": [ + "jeans" + ], + "tags": [ + "pants" + ], + "unicode": "👖", + "htmlDec": "👖", + "htmlHex": "👖" + }, + { + "emojiChar": "👘", + "emoji": "👘", + "description": "kimono", + "aliases": [ + "kimono" + ], + "tags": [], + "unicode": "👘", + "htmlDec": "👘", + "htmlHex": "👘" + }, + { + "emojiChar": "👙", + "emoji": "👙", + "description": "bikini", + "aliases": [ + "bikini" + ], + "tags": [ + "beach" + ], + "unicode": "👙", + "htmlDec": "👙", + "htmlHex": "👙" + }, + { + "emojiChar": "💼", + "emoji": "💼", + "description": "briefcase", + "aliases": [ + "briefcase" + ], + "tags": [ + "business" + ], + "unicode": "💼", + "htmlDec": "💼", + "htmlHex": "💼" + }, + { + "emojiChar": "👜", + "emoji": "👜", + "description": "handbag", + "aliases": [ + "handbag" + ], + "tags": [ + "bag" + ], + "unicode": "👜", + "htmlDec": "👜", + "htmlHex": "👜" + }, + { + "emojiChar": "👝", + "emoji": "👝", + "description": "pouch", + "aliases": [ + "pouch" + ], + "tags": [ + "bag" + ], + "unicode": "👝", + "htmlDec": "👝", + "htmlHex": "👝" + }, + { + "emojiChar": "👛", + "emoji": "👛", + "description": "purse", + "aliases": [ + "purse" + ], + "tags": [], + "unicode": "👛", + "htmlDec": "👛", + "htmlHex": "👛" + }, + { + "emojiChar": "👓", + "emoji": "👓", + "description": "eyeglasses", + "aliases": [ + "eyeglasses" + ], + "tags": [ + "glasses" + ], + "unicode": "👓", + "htmlDec": "👓", + "htmlHex": "👓" + }, + { + "emojiChar": "🎀", + "emoji": "🎀", + "description": "ribbon", + "aliases": [ + "ribbon" + ], + "tags": [], + "unicode": "🎀", + "htmlDec": "🎀", + "htmlHex": "🎀" + }, + { + "emojiChar": "🌂", + "emoji": "🌂", + "description": "closed umbrella", + "aliases": [ + "closed_umbrella" + ], + "tags": [ + "weather", + "rain" + ], + "unicode": "🌂", + "htmlDec": "🌂", + "htmlHex": "🌂" + }, + { + "emojiChar": "💄", + "emoji": "💄", + "description": "lipstick", + "aliases": [ + "lipstick" + ], + "tags": [ + "makeup" + ], + "unicode": "💄", + "htmlDec": "💄", + "htmlHex": "💄" + }, + { + "emojiChar": "💛", + "emoji": "💛", + "description": "yellow heart", + "aliases": [ + "yellow_heart" + ], + "tags": [], + "unicode": "💛", + "htmlDec": "💛", + "htmlHex": "💛" + }, + { + "emojiChar": "💙", + "emoji": "💙", + "description": "blue heart", + "aliases": [ + "blue_heart" + ], + "tags": [], + "unicode": "💙", + "htmlDec": "💙", + "htmlHex": "💙" + }, + { + "emojiChar": "💜", + "emoji": "💜", + "description": "purple heart", + "aliases": [ + "purple_heart" + ], + "tags": [], + "unicode": "💜", + "htmlDec": "💜", + "htmlHex": "💜" + }, + { + "emojiChar": "💚", + "emoji": "💚", + "description": "green heart", + "aliases": [ + "green_heart" + ], + "tags": [], + "unicode": "💚", + "htmlDec": "💚", + "htmlHex": "💚" + }, + { + "emojiChar": "❤", + "emoji": "❤", + "description": "heavy black heart", + "aliases": [ + "heart" + ], + "tags": [ + "love" + ], + "unicode": "❤", + "htmlDec": "❤", + "htmlHex": "❤" + }, + { + "emojiChar": "💔", + "emoji": "💔", + "description": "broken heart", + "aliases": [ + "broken_heart" + ], + "tags": [], + "unicode": "💔", + "htmlDec": "💔", + "htmlHex": "💔" + }, + { + "emojiChar": "💗", + "emoji": "💗", + "description": "growing heart", + "aliases": [ + "heartpulse" + ], + "tags": [], + "unicode": "💗", + "htmlDec": "💗", + "htmlHex": "💗" + }, + { + "emojiChar": "💓", + "emoji": "💓", + "description": "beating heart", + "aliases": [ + "heartbeat" + ], + "tags": [], + "unicode": "💓", + "htmlDec": "💓", + "htmlHex": "💓" + }, + { + "emojiChar": "💕", + "emoji": "💕", + "description": "two hearts", + "aliases": [ + "two_hearts" + ], + "tags": [], + "unicode": "💕", + "htmlDec": "💕", + "htmlHex": "💕" + }, + { + "emojiChar": "💖", + "emoji": "💖", + "description": "sparkling heart", + "aliases": [ + "sparkling_heart" + ], + "tags": [], + "unicode": "💖", + "htmlDec": "💖", + "htmlHex": "💖" + }, + { + "emojiChar": "💞", + "emoji": "💞", + "description": "revolving hearts", + "aliases": [ + "revolving_hearts" + ], + "tags": [], + "unicode": "💞", + "htmlDec": "💞", + "htmlHex": "💞" + }, + { + "emojiChar": "💘", + "emoji": "💘", + "description": "heart with arrow", + "aliases": [ + "cupid" + ], + "tags": [ + "love", + "heart" + ], + "unicode": "💘", + "htmlDec": "💘", + "htmlHex": "💘" + }, + { + "emojiChar": "💌", + "emoji": "💌", + "description": "love letter", + "aliases": [ + "love_letter" + ], + "tags": [ + "email", + "envelope" + ], + "unicode": "💌", + "htmlDec": "💌", + "htmlHex": "💌" + }, + { + "emojiChar": "💋", + "emoji": "💋", + "description": "kiss mark", + "aliases": [ + "kiss" + ], + "tags": [ + "lipstick" + ], + "unicode": "💋", + "htmlDec": "💋", + "htmlHex": "💋" + }, + { + "emojiChar": "💍", + "emoji": "💍", + "description": "ring", + "aliases": [ + "ring" + ], + "tags": [ + "wedding", + "marriage", + "engaged" + ], + "unicode": "💍", + "htmlDec": "💍", + "htmlHex": "💍" + }, + { + "emojiChar": "💎", + "emoji": "💎", + "description": "gem stone", + "aliases": [ + "gem" + ], + "tags": [ + "diamond" + ], + "unicode": "💎", + "htmlDec": "💎", + "htmlHex": "💎" + }, + { + "emojiChar": "👤", + "emoji": "👤", + "description": "bust in silhouette", + "aliases": [ + "bust_in_silhouette" + ], + "tags": [ + "user" + ], + "unicode": "👤", + "htmlDec": "👤", + "htmlHex": "👤" + }, + { + "emojiChar": "👥", + "emoji": "👥", + "description": "busts in silhouette", + "aliases": [ + "busts_in_silhouette" + ], + "tags": [ + "users", + "group", + "team" + ], + "unicode": "👥", + "htmlDec": "👥", + "htmlHex": "👥" + }, + { + "emojiChar": "💬", + "emoji": "💬", + "description": "speech balloon", + "aliases": [ + "speech_balloon" + ], + "tags": [ + "comment" + ], + "unicode": "💬", + "htmlDec": "💬", + "htmlHex": "💬" + }, + { + "emojiChar": "👣", + "emoji": "👣", + "description": "footprints", + "aliases": [ + "footprints" + ], + "tags": [ + "feet", + "tracks" + ], + "unicode": "👣", + "htmlDec": "👣", + "htmlHex": "👣" + }, + { + "emojiChar": "💭", + "emoji": "💭", + "description": "thought balloon", + "aliases": [ + "thought_balloon" + ], + "tags": [ + "thinking" + ], + "unicode": "💭", + "htmlDec": "💭", + "htmlHex": "💭" + }, + { + "emojiChar": "🐶", + "emoji": "🐶", + "description": "dog face", + "aliases": [ + "dog" + ], + "tags": [ + "pet" + ], + "unicode": "🐶", + "htmlDec": "🐶", + "htmlHex": "🐶" + }, + { + "emojiChar": "🐺", + "emoji": "🐺", + "description": "wolf face", + "aliases": [ + "wolf" + ], + "tags": [], + "unicode": "🐺", + "htmlDec": "🐺", + "htmlHex": "🐺" + }, + { + "emojiChar": "🐱", + "emoji": "🐱", + "description": "cat face", + "aliases": [ + "cat" + ], + "tags": [ + "pet" + ], + "unicode": "🐱", + "htmlDec": "🐱", + "htmlHex": "🐱" + }, + { + "emojiChar": "🐭", + "emoji": "🐭", + "description": "mouse face", + "aliases": [ + "mouse" + ], + "tags": [], + "unicode": "🐭", + "htmlDec": "🐭", + "htmlHex": "🐭" + }, + { + "emojiChar": "🐹", + "emoji": "🐹", + "description": "hamster face", + "aliases": [ + "hamster" + ], + "tags": [ + "pet" + ], + "unicode": "🐹", + "htmlDec": "🐹", + "htmlHex": "🐹" + }, + { + "emojiChar": "🐰", + "emoji": "🐰", + "description": "rabbit face", + "aliases": [ + "rabbit" + ], + "tags": [ + "bunny" + ], + "unicode": "🐰", + "htmlDec": "🐰", + "htmlHex": "🐰" + }, + { + "emojiChar": "🐸", + "emoji": "🐸", + "description": "frog face", + "aliases": [ + "frog" + ], + "tags": [], + "unicode": "🐸", + "htmlDec": "🐸", + "htmlHex": "🐸" + }, + { + "emojiChar": "🐯", + "emoji": "🐯", + "description": "tiger face", + "aliases": [ + "tiger" + ], + "tags": [], + "unicode": "🐯", + "htmlDec": "🐯", + "htmlHex": "🐯" + }, + { + "emojiChar": "🐨", + "emoji": "🐨", + "description": "koala", + "aliases": [ + "koala" + ], + "tags": [], + "unicode": "🐨", + "htmlDec": "🐨", + "htmlHex": "🐨" + }, + { + "emojiChar": "🐻", + "emoji": "🐻", + "description": "bear face", + "aliases": [ + "bear" + ], + "tags": [], + "unicode": "🐻", + "htmlDec": "🐻", + "htmlHex": "🐻" + }, + { + "emojiChar": "🐷", + "emoji": "🐷", + "description": "pig face", + "aliases": [ + "pig" + ], + "tags": [], + "unicode": "🐷", + "htmlDec": "🐷", + "htmlHex": "🐷" + }, + { + "emojiChar": "🐽", + "emoji": "🐽", + "description": "pig nose", + "aliases": [ + "pig_nose" + ], + "tags": [], + "unicode": "🐽", + "htmlDec": "🐽", + "htmlHex": "🐽" + }, + { + "emojiChar": "🐮", + "emoji": "🐮", + "description": "cow face", + "aliases": [ + "cow" + ], + "tags": [], + "unicode": "🐮", + "htmlDec": "🐮", + "htmlHex": "🐮" + }, + { + "emojiChar": "🐗", + "emoji": "🐗", + "description": "boar", + "aliases": [ + "boar" + ], + "tags": [], + "unicode": "🐗", + "htmlDec": "🐗", + "htmlHex": "🐗" + }, + { + "emojiChar": "🐵", + "emoji": "🐵", + "description": "monkey face", + "aliases": [ + "monkey_face" + ], + "tags": [], + "unicode": "🐵", + "htmlDec": "🐵", + "htmlHex": "🐵" + }, + { + "emojiChar": "🐒", + "emoji": "🐒", + "description": "monkey", + "aliases": [ + "monkey" + ], + "tags": [], + "unicode": "🐒", + "htmlDec": "🐒", + "htmlHex": "🐒" + }, + { + "emojiChar": "🐴", + "emoji": "🐴", + "description": "horse face", + "aliases": [ + "horse" + ], + "tags": [], + "unicode": "🐴", + "htmlDec": "🐴", + "htmlHex": "🐴" + }, + { + "emojiChar": "🐑", + "emoji": "🐑", + "description": "sheep", + "aliases": [ + "sheep" + ], + "tags": [], + "unicode": "🐑", + "htmlDec": "🐑", + "htmlHex": "🐑" + }, + { + "emojiChar": "🐘", + "emoji": "🐘", + "description": "elephant", + "aliases": [ + "elephant" + ], + "tags": [], + "unicode": "🐘", + "htmlDec": "🐘", + "htmlHex": "🐘" + }, + { + "emojiChar": "🐼", + "emoji": "🐼", + "description": "panda face", + "aliases": [ + "panda_face" + ], + "tags": [], + "unicode": "🐼", + "htmlDec": "🐼", + "htmlHex": "🐼" + }, + { + "emojiChar": "🐧", + "emoji": "🐧", + "description": "penguin", + "aliases": [ + "penguin" + ], + "tags": [], + "unicode": "🐧", + "htmlDec": "🐧", + "htmlHex": "🐧" + }, + { + "emojiChar": "🐦", + "emoji": "🐦", + "description": "bird", + "aliases": [ + "bird" + ], + "tags": [], + "unicode": "🐦", + "htmlDec": "🐦", + "htmlHex": "🐦" + }, + { + "emojiChar": "🐤", + "emoji": "🐤", + "description": "baby chick", + "aliases": [ + "baby_chick" + ], + "tags": [], + "unicode": "🐤", + "htmlDec": "🐤", + "htmlHex": "🐤" + }, + { + "emojiChar": "🐥", + "emoji": "🐥", + "description": "front-facing baby chick", + "aliases": [ + "hatched_chick" + ], + "tags": [], + "unicode": "🐥", + "htmlDec": "🐥", + "htmlHex": "🐥" + }, + { + "emojiChar": "🐣", + "emoji": "🐣", + "description": "hatching chick", + "aliases": [ + "hatching_chick" + ], + "tags": [], + "unicode": "🐣", + "htmlDec": "🐣", + "htmlHex": "🐣" + }, + { + "emojiChar": "🐔", + "emoji": "🐔", + "description": "chicken", + "aliases": [ + "chicken" + ], + "tags": [], + "unicode": "🐔", + "htmlDec": "🐔", + "htmlHex": "🐔" + }, + { + "emojiChar": "🐍", + "emoji": "🐍", + "description": "snake", + "aliases": [ + "snake" + ], + "tags": [], + "unicode": "🐍", + "htmlDec": "🐍", + "htmlHex": "🐍" + }, + { + "emojiChar": "🐢", + "emoji": "🐢", + "description": "turtle", + "aliases": [ + "turtle" + ], + "tags": [ + "slow" + ], + "unicode": "🐢", + "htmlDec": "🐢", + "htmlHex": "🐢" + }, + { + "emojiChar": "🐛", + "emoji": "🐛", + "description": "bug", + "aliases": [ + "bug" + ], + "tags": [], + "unicode": "🐛", + "htmlDec": "🐛", + "htmlHex": "🐛" + }, + { + "emojiChar": "🐝", + "emoji": "🐝", + "description": "honeybee", + "aliases": [ + "bee", + "honeybee" + ], + "tags": [], + "unicode": "🐝", + "htmlDec": "🐝", + "htmlHex": "🐝" + }, + { + "emojiChar": "🐜", + "emoji": "🐜", + "description": "ant", + "aliases": [ + "ant" + ], + "tags": [], + "unicode": "🐜", + "htmlDec": "🐜", + "htmlHex": "🐜" + }, + { + "emojiChar": "🐞", + "emoji": "🐞", + "description": "lady beetle", + "aliases": [ + "beetle" + ], + "tags": [ + "bug" + ], + "unicode": "🐞", + "htmlDec": "🐞", + "htmlHex": "🐞" + }, + { + "emojiChar": "🐌", + "emoji": "🐌", + "description": "snail", + "aliases": [ + "snail" + ], + "tags": [ + "slow" + ], + "unicode": "🐌", + "htmlDec": "🐌", + "htmlHex": "🐌" + }, + { + "emojiChar": "🐙", + "emoji": "🐙", + "description": "octopus", + "aliases": [ + "octopus" + ], + "tags": [], + "unicode": "🐙", + "htmlDec": "🐙", + "htmlHex": "🐙" + }, + { + "emojiChar": "🐚", + "emoji": "🐚", + "description": "spiral shell", + "aliases": [ + "shell" + ], + "tags": [ + "sea", + "beach" + ], + "unicode": "🐚", + "htmlDec": "🐚", + "htmlHex": "🐚" + }, + { + "emojiChar": "🐠", + "emoji": "🐠", + "description": "tropical fish", + "aliases": [ + "tropical_fish" + ], + "tags": [], + "unicode": "🐠", + "htmlDec": "🐠", + "htmlHex": "🐠" + }, + { + "emojiChar": "🐟", + "emoji": "🐟", + "description": "fish", + "aliases": [ + "fish" + ], + "tags": [], + "unicode": "🐟", + "htmlDec": "🐟", + "htmlHex": "🐟" + }, + { + "emojiChar": "🐬", + "emoji": "🐬", + "description": "dolphin", + "aliases": [ + "dolphin", + "flipper" + ], + "tags": [], + "unicode": "🐬", + "htmlDec": "🐬", + "htmlHex": "🐬" + }, + { + "emojiChar": "🐳", + "emoji": "🐳", + "description": "spouting whale", + "aliases": [ + "whale" + ], + "tags": [ + "sea" + ], + "unicode": "🐳", + "htmlDec": "🐳", + "htmlHex": "🐳" + }, + { + "emojiChar": "🐋", + "emoji": "🐋", + "description": "whale", + "aliases": [ + "whale2" + ], + "tags": [], + "unicode": "🐋", + "htmlDec": "🐋", + "htmlHex": "🐋" + }, + { + "emojiChar": "🐄", + "emoji": "🐄", + "description": "cow", + "aliases": [ + "cow2" + ], + "tags": [], + "unicode": "🐄", + "htmlDec": "🐄", + "htmlHex": "🐄" + }, + { + "emojiChar": "🐏", + "emoji": "🐏", + "description": "ram", + "aliases": [ + "ram" + ], + "tags": [], + "unicode": "🐏", + "htmlDec": "🐏", + "htmlHex": "🐏" + }, + { + "emojiChar": "🐀", + "emoji": "🐀", + "description": "rat", + "aliases": [ + "rat" + ], + "tags": [], + "unicode": "🐀", + "htmlDec": "🐀", + "htmlHex": "🐀" + }, + { + "emojiChar": "🐃", + "emoji": "🐃", + "description": "water buffalo", + "aliases": [ + "water_buffalo" + ], + "tags": [], + "unicode": "🐃", + "htmlDec": "🐃", + "htmlHex": "🐃" + }, + { + "emojiChar": "🐅", + "emoji": "🐅", + "description": "tiger", + "aliases": [ + "tiger2" + ], + "tags": [], + "unicode": "🐅", + "htmlDec": "🐅", + "htmlHex": "🐅" + }, + { + "emojiChar": "🐇", + "emoji": "🐇", + "description": "rabbit", + "aliases": [ + "rabbit2" + ], + "tags": [], + "unicode": "🐇", + "htmlDec": "🐇", + "htmlHex": "🐇" + }, + { + "emojiChar": "🐉", + "emoji": "🐉", + "description": "dragon", + "aliases": [ + "dragon" + ], + "tags": [], + "unicode": "🐉", + "htmlDec": "🐉", + "htmlHex": "🐉" + }, + { + "emojiChar": "🐎", + "emoji": "🐎", + "description": "horse", + "aliases": [ + "racehorse" + ], + "tags": [ + "speed" + ], + "unicode": "🐎", + "htmlDec": "🐎", + "htmlHex": "🐎" + }, + { + "emojiChar": "🐐", + "emoji": "🐐", + "description": "goat", + "aliases": [ + "goat" + ], + "tags": [], + "unicode": "🐐", + "htmlDec": "🐐", + "htmlHex": "🐐" + }, + { + "emojiChar": "🐓", + "emoji": "🐓", + "description": "rooster", + "aliases": [ + "rooster" + ], + "tags": [], + "unicode": "🐓", + "htmlDec": "🐓", + "htmlHex": "🐓" + }, + { + "emojiChar": "🐕", + "emoji": "🐕", + "description": "dog", + "aliases": [ + "dog2" + ], + "tags": [], + "unicode": "🐕", + "htmlDec": "🐕", + "htmlHex": "🐕" + }, + { + "emojiChar": "🐖", + "emoji": "🐖", + "description": "pig", + "aliases": [ + "pig2" + ], + "tags": [], + "unicode": "🐖", + "htmlDec": "🐖", + "htmlHex": "🐖" + }, + { + "emojiChar": "🐁", + "emoji": "🐁", + "description": "mouse", + "aliases": [ + "mouse2" + ], + "tags": [], + "unicode": "🐁", + "htmlDec": "🐁", + "htmlHex": "🐁" + }, + { + "emojiChar": "🐂", + "emoji": "🐂", + "description": "ox", + "aliases": [ + "ox" + ], + "tags": [], + "unicode": "🐂", + "htmlDec": "🐂", + "htmlHex": "🐂" + }, + { + "emojiChar": "🐲", + "emoji": "🐲", + "description": "dragon face", + "aliases": [ + "dragon_face" + ], + "tags": [], + "unicode": "🐲", + "htmlDec": "🐲", + "htmlHex": "🐲" + }, + { + "emojiChar": "🐡", + "emoji": "🐡", + "description": "blowfish", + "aliases": [ + "blowfish" + ], + "tags": [], + "unicode": "🐡", + "htmlDec": "🐡", + "htmlHex": "🐡" + }, + { + "emojiChar": "🐊", + "emoji": "🐊", + "description": "crocodile", + "aliases": [ + "crocodile" + ], + "tags": [], + "unicode": "🐊", + "htmlDec": "🐊", + "htmlHex": "🐊" + }, + { + "emojiChar": "🐫", + "emoji": "🐫", + "description": "bactrian camel", + "aliases": [ + "camel" + ], + "tags": [], + "unicode": "🐫", + "htmlDec": "🐫", + "htmlHex": "🐫" + }, + { + "emojiChar": "🐪", + "emoji": "🐪", + "description": "dromedary camel", + "aliases": [ + "dromedary_camel" + ], + "tags": [ + "desert" + ], + "unicode": "🐪", + "htmlDec": "🐪", + "htmlHex": "🐪" + }, + { + "emojiChar": "🐆", + "emoji": "🐆", + "description": "leopard", + "aliases": [ + "leopard" + ], + "tags": [], + "unicode": "🐆", + "htmlDec": "🐆", + "htmlHex": "🐆" + }, + { + "emojiChar": "🐈", + "emoji": "🐈", + "description": "cat", + "aliases": [ + "cat2" + ], + "tags": [], + "unicode": "🐈", + "htmlDec": "🐈", + "htmlHex": "🐈" + }, + { + "emojiChar": "🐩", + "emoji": "🐩", + "description": "poodle", + "aliases": [ + "poodle" + ], + "tags": [ + "dog" + ], + "unicode": "🐩", + "htmlDec": "🐩", + "htmlHex": "🐩" + }, + { + "emojiChar": "🐾", + "emoji": "🐾", + "description": "paw prints", + "aliases": [ + "feet", + "paw_prints" + ], + "tags": [], + "unicode": "🐾", + "htmlDec": "🐾", + "htmlHex": "🐾" + }, + { + "emojiChar": "💐", + "emoji": "💐", + "description": "bouquet", + "aliases": [ + "bouquet" + ], + "tags": [ + "flowers" + ], + "unicode": "💐", + "htmlDec": "💐", + "htmlHex": "💐" + }, + { + "emojiChar": "🌸", + "emoji": "🌸", + "description": "cherry blossom", + "aliases": [ + "cherry_blossom" + ], + "tags": [ + "flower", + "spring" + ], + "unicode": "🌸", + "htmlDec": "🌸", + "htmlHex": "🌸" + }, + { + "emojiChar": "🌷", + "emoji": "🌷", + "description": "tulip", + "aliases": [ + "tulip" + ], + "tags": [ + "flower" + ], + "unicode": "🌷", + "htmlDec": "🌷", + "htmlHex": "🌷" + }, + { + "emojiChar": "🍀", + "emoji": "🍀", + "description": "four leaf clover", + "aliases": [ + "four_leaf_clover" + ], + "tags": [ + "luck" + ], + "unicode": "🍀", + "htmlDec": "🍀", + "htmlHex": "🍀" + }, + { + "emojiChar": "🌹", + "emoji": "🌹", + "description": "rose", + "aliases": [ + "rose" + ], + "tags": [ + "flower" + ], + "unicode": "🌹", + "htmlDec": "🌹", + "htmlHex": "🌹" + }, + { + "emojiChar": "🌻", + "emoji": "🌻", + "description": "sunflower", + "aliases": [ + "sunflower" + ], + "tags": [], + "unicode": "🌻", + "htmlDec": "🌻", + "htmlHex": "🌻" + }, + { + "emojiChar": "🌺", + "emoji": "🌺", + "description": "hibiscus", + "aliases": [ + "hibiscus" + ], + "tags": [], + "unicode": "🌺", + "htmlDec": "🌺", + "htmlHex": "🌺" + }, + { + "emojiChar": "🍁", + "emoji": "🍁", + "description": "maple leaf", + "aliases": [ + "maple_leaf" + ], + "tags": [ + "canada" + ], + "unicode": "🍁", + "htmlDec": "🍁", + "htmlHex": "🍁" + }, + { + "emojiChar": "🍃", + "emoji": "🍃", + "description": "leaf fluttering in wind", + "aliases": [ + "leaves" + ], + "tags": [ + "leaf" + ], + "unicode": "🍃", + "htmlDec": "🍃", + "htmlHex": "🍃" + }, + { + "emojiChar": "🍂", + "emoji": "🍂", + "description": "fallen leaf", + "aliases": [ + "fallen_leaf" + ], + "tags": [ + "autumn" + ], + "unicode": "🍂", + "htmlDec": "🍂", + "htmlHex": "🍂" + }, + { + "emojiChar": "🌿", + "emoji": "🌿", + "description": "herb", + "aliases": [ + "herb" + ], + "tags": [], + "unicode": "🌿", + "htmlDec": "🌿", + "htmlHex": "🌿" + }, + { + "emojiChar": "🌾", + "emoji": "🌾", + "description": "ear of rice", + "aliases": [ + "ear_of_rice" + ], + "tags": [], + "unicode": "🌾", + "htmlDec": "🌾", + "htmlHex": "🌾" + }, + { + "emojiChar": "🍄", + "emoji": "🍄", + "description": "mushroom", + "aliases": [ + "mushroom" + ], + "tags": [], + "unicode": "🍄", + "htmlDec": "🍄", + "htmlHex": "🍄" + }, + { + "emojiChar": "🌵", + "emoji": "🌵", + "description": "cactus", + "aliases": [ + "cactus" + ], + "tags": [], + "unicode": "🌵", + "htmlDec": "🌵", + "htmlHex": "🌵" + }, + { + "emojiChar": "🌴", + "emoji": "🌴", + "description": "palm tree", + "aliases": [ + "palm_tree" + ], + "tags": [], + "unicode": "🌴", + "htmlDec": "🌴", + "htmlHex": "🌴" + }, + { + "emojiChar": "🌲", + "emoji": "🌲", + "description": "evergreen tree", + "aliases": [ + "evergreen_tree" + ], + "tags": [ + "wood" + ], + "unicode": "🌲", + "htmlDec": "🌲", + "htmlHex": "🌲" + }, + { + "emojiChar": "🌳", + "emoji": "🌳", + "description": "deciduous tree", + "aliases": [ + "deciduous_tree" + ], + "tags": [ + "wood" + ], + "unicode": "🌳", + "htmlDec": "🌳", + "htmlHex": "🌳" + }, + { + "emojiChar": "🌰", + "emoji": "🌰", + "description": "chestnut", + "aliases": [ + "chestnut" + ], + "tags": [], + "unicode": "🌰", + "htmlDec": "🌰", + "htmlHex": "🌰" + }, + { + "emojiChar": "🌱", + "emoji": "🌱", + "description": "seedling", + "aliases": [ + "seedling" + ], + "tags": [ + "plant" + ], + "unicode": "🌱", + "htmlDec": "🌱", + "htmlHex": "🌱" + }, + { + "emojiChar": "🌼", + "emoji": "🌼", + "description": "blossom", + "aliases": [ + "blossom" + ], + "tags": [], + "unicode": "🌼", + "htmlDec": "🌼", + "htmlHex": "🌼" + }, + { + "emojiChar": "🌐", + "emoji": "🌐", + "description": "globe with meridians", + "aliases": [ + "globe_with_meridians" + ], + "tags": [ + "world", + "global", + "international" + ], + "unicode": "🌐", + "htmlDec": "🌐", + "htmlHex": "🌐" + }, + { + "emojiChar": "🌞", + "emoji": "🌞", + "description": "sun with face", + "aliases": [ + "sun_with_face" + ], + "tags": [ + "summer" + ], + "unicode": "🌞", + "htmlDec": "🌞", + "htmlHex": "🌞" + }, + { + "emojiChar": "🌝", + "emoji": "🌝", + "description": "full moon with face", + "aliases": [ + "full_moon_with_face" + ], + "tags": [], + "unicode": "🌝", + "htmlDec": "🌝", + "htmlHex": "🌝" + }, + { + "emojiChar": "🌚", + "emoji": "🌚", + "description": "new moon with face", + "aliases": [ + "new_moon_with_face" + ], + "tags": [], + "unicode": "🌚", + "htmlDec": "🌚", + "htmlHex": "🌚" + }, + { + "emojiChar": "🌑", + "emoji": "🌑", + "description": "new moon symbol", + "aliases": [ + "new_moon" + ], + "tags": [], + "unicode": "🌑", + "htmlDec": "🌑", + "htmlHex": "🌑" + }, + { + "emojiChar": "🌒", + "emoji": "🌒", + "description": "waxing crescent moon symbol", + "aliases": [ + "waxing_crescent_moon" + ], + "tags": [], + "unicode": "🌒", + "htmlDec": "🌒", + "htmlHex": "🌒" + }, + { + "emojiChar": "🌓", + "emoji": "🌓", + "description": "first quarter moon symbol", + "aliases": [ + "first_quarter_moon" + ], + "tags": [], + "unicode": "🌓", + "htmlDec": "🌓", + "htmlHex": "🌓" + }, + { + "emojiChar": "🌔", + "emoji": "🌔", + "description": "waxing gibbous moon symbol", + "aliases": [ + "moon", + "waxing_gibbous_moon" + ], + "tags": [], + "unicode": "🌔", + "htmlDec": "🌔", + "htmlHex": "🌔" + }, + { + "emojiChar": "🌕", + "emoji": "🌕", + "description": "full moon symbol", + "aliases": [ + "full_moon" + ], + "tags": [], + "unicode": "🌕", + "htmlDec": "🌕", + "htmlHex": "🌕" + }, + { + "emojiChar": "🌖", + "emoji": "🌖", + "description": "waning gibbous moon symbol", + "aliases": [ + "waning_gibbous_moon" + ], + "tags": [], + "unicode": "🌖", + "htmlDec": "🌖", + "htmlHex": "🌖" + }, + { + "emojiChar": "🌗", + "emoji": "🌗", + "description": "last quarter moon symbol", + "aliases": [ + "last_quarter_moon" + ], + "tags": [], + "unicode": "🌗", + "htmlDec": "🌗", + "htmlHex": "🌗" + }, + { + "emojiChar": "🌘", + "emoji": "🌘", + "description": "waning crescent moon symbol", + "aliases": [ + "waning_crescent_moon" + ], + "tags": [], + "unicode": "🌘", + "htmlDec": "🌘", + "htmlHex": "🌘" + }, + { + "emojiChar": "🌜", + "emoji": "🌜", + "description": "last quarter moon with face", + "aliases": [ + "last_quarter_moon_with_face" + ], + "tags": [], + "unicode": "🌜", + "htmlDec": "🌜", + "htmlHex": "🌜" + }, + { + "emojiChar": "🌛", + "emoji": "🌛", + "description": "first quarter moon with face", + "aliases": [ + "first_quarter_moon_with_face" + ], + "tags": [], + "unicode": "🌛", + "htmlDec": "🌛", + "htmlHex": "🌛" + }, + { + "emojiChar": "🌙", + "emoji": "🌙", + "description": "crescent moon", + "aliases": [ + "crescent_moon" + ], + "tags": [ + "night" + ], + "unicode": "🌙", + "htmlDec": "🌙", + "htmlHex": "🌙" + }, + { + "emojiChar": "🌍", + "emoji": "🌍", + "description": "earth globe europe-africa", + "aliases": [ + "earth_africa" + ], + "tags": [ + "globe", + "world", + "international" + ], + "unicode": "🌍", + "htmlDec": "🌍", + "htmlHex": "🌍" + }, + { + "emojiChar": "🌎", + "emoji": "🌎", + "description": "earth globe americas", + "aliases": [ + "earth_americas" + ], + "tags": [ + "globe", + "world", + "international" + ], + "unicode": "🌎", + "htmlDec": "🌎", + "htmlHex": "🌎" + }, + { + "emojiChar": "🌏", + "emoji": "🌏", + "description": "earth globe asia-australia", + "aliases": [ + "earth_asia" + ], + "tags": [ + "globe", + "world", + "international" + ], + "unicode": "🌏", + "htmlDec": "🌏", + "htmlHex": "🌏" + }, + { + "emojiChar": "🌋", + "emoji": "🌋", + "description": "volcano", + "aliases": [ + "volcano" + ], + "tags": [], + "unicode": "🌋", + "htmlDec": "🌋", + "htmlHex": "🌋" + }, + { + "emojiChar": "🌌", + "emoji": "🌌", + "description": "milky way", + "aliases": [ + "milky_way" + ], + "tags": [], + "unicode": "🌌", + "htmlDec": "🌌", + "htmlHex": "🌌" + }, + { + "emojiChar": "🌠", + "emoji": "🌠", + "description": "shooting star", + "aliases": [ + "stars" + ], + "tags": [], + "unicode": "🌠", + "htmlDec": "🌠", + "htmlHex": "🌠" + }, + { + "emojiChar": "⭐", + "emoji": "⭐", + "description": "white medium star", + "aliases": [ + "star" + ], + "tags": [], + "unicode": "⭐", + "htmlDec": "⭐", + "htmlHex": "⭐" + }, + { + "emojiChar": "☀", + "emoji": "☀", + "description": "black sun with rays", + "aliases": [ + "sunny" + ], + "tags": [ + "weather" + ], + "unicode": "☀", + "htmlDec": "☀", + "htmlHex": "☀" + }, + { + "emojiChar": "⛅", + "emoji": "⛅", + "description": "sun behind cloud", + "aliases": [ + "partly_sunny" + ], + "tags": [ + "weather", + "cloud" + ], + "unicode": "⛅", + "htmlDec": "⛅", + "htmlHex": "⛅" + }, + { + "emojiChar": "☁", + "emoji": "☁", + "description": "cloud", + "aliases": [ + "cloud" + ], + "tags": [], + "unicode": "☁", + "htmlDec": "☁", + "htmlHex": "☁" + }, + { + "emojiChar": "⚡", + "emoji": "⚡", + "description": "high voltage sign", + "aliases": [ + "zap" + ], + "tags": [ + "lightning", + "thunder" + ], + "unicode": "⚡", + "htmlDec": "⚡", + "htmlHex": "⚡" + }, + { + "emojiChar": "☔", + "emoji": "☔", + "description": "umbrella with rain drops", + "aliases": [ + "umbrella" + ], + "tags": [ + "rain", + "weather" + ], + "unicode": "☔", + "htmlDec": "☔", + "htmlHex": "☔" + }, + { + "emojiChar": "❄", + "emoji": "❄", + "description": "snowflake", + "aliases": [ + "snowflake" + ], + "tags": [ + "winter", + "cold", + "weather" + ], + "unicode": "❄", + "htmlDec": "❄", + "htmlHex": "❄" + }, + { + "emojiChar": "⛄", + "emoji": "⛄", + "description": "snowman without snow", + "aliases": [ + "snowman" + ], + "tags": [ + "winter", + "christmas" + ], + "unicode": "⛄", + "htmlDec": "⛄", + "htmlHex": "⛄" + }, + { + "emojiChar": "🌀", + "emoji": "🌀", + "description": "cyclone", + "aliases": [ + "cyclone" + ], + "tags": [ + "swirl" + ], + "unicode": "🌀", + "htmlDec": "🌀", + "htmlHex": "🌀" + }, + { + "emojiChar": "🌁", + "emoji": "🌁", + "description": "foggy", + "aliases": [ + "foggy" + ], + "tags": [ + "karl" + ], + "unicode": "🌁", + "htmlDec": "🌁", + "htmlHex": "🌁" + }, + { + "emojiChar": "🌈", + "emoji": "🌈", + "description": "rainbow", + "aliases": [ + "rainbow" + ], + "tags": [ + "pride" + ], + "unicode": "🌈", + "htmlDec": "🌈", + "htmlHex": "🌈" + }, + { + "emojiChar": "🌊", + "emoji": "🌊", + "description": "water wave", + "aliases": [ + "ocean" + ], + "tags": [ + "sea" + ], + "unicode": "🌊", + "htmlDec": "🌊", + "htmlHex": "🌊" + }, + { + "emojiChar": "🎍", + "emoji": "🎍", + "description": "pine decoration", + "aliases": [ + "bamboo" + ], + "tags": [], + "unicode": "🎍", + "htmlDec": "🎍", + "htmlHex": "🎍" + }, + { + "emojiChar": "💝", + "emoji": "💝", + "description": "heart with ribbon", + "aliases": [ + "gift_heart" + ], + "tags": [ + "chocolates" + ], + "unicode": "💝", + "htmlDec": "💝", + "htmlHex": "💝" + }, + { + "emojiChar": "🎎", + "emoji": "🎎", + "description": "japanese dolls", + "aliases": [ + "dolls" + ], + "tags": [], + "unicode": "🎎", + "htmlDec": "🎎", + "htmlHex": "🎎" + }, + { + "emojiChar": "🎒", + "emoji": "🎒", + "description": "school satchel", + "aliases": [ + "school_satchel" + ], + "tags": [], + "unicode": "🎒", + "htmlDec": "🎒", + "htmlHex": "🎒" + }, + { + "emojiChar": "🎓", + "emoji": "🎓", + "description": "graduation cap", + "aliases": [ + "mortar_board" + ], + "tags": [ + "education", + "college", + "university", + "graduation" + ], + "unicode": "🎓", + "htmlDec": "🎓", + "htmlHex": "🎓" + }, + { + "emojiChar": "🎏", + "emoji": "🎏", + "description": "carp streamer", + "aliases": [ + "flags" + ], + "tags": [], + "unicode": "🎏", + "htmlDec": "🎏", + "htmlHex": "🎏" + }, + { + "emojiChar": "🎆", + "emoji": "🎆", + "description": "fireworks", + "aliases": [ + "fireworks" + ], + "tags": [ + "festival", + "celebration" + ], + "unicode": "🎆", + "htmlDec": "🎆", + "htmlHex": "🎆" + }, + { + "emojiChar": "🎇", + "emoji": "🎇", + "description": "firework sparkler", + "aliases": [ + "sparkler" + ], + "tags": [], + "unicode": "🎇", + "htmlDec": "🎇", + "htmlHex": "🎇" + }, + { + "emojiChar": "🎐", + "emoji": "🎐", + "description": "wind chime", + "aliases": [ + "wind_chime" + ], + "tags": [], + "unicode": "🎐", + "htmlDec": "🎐", + "htmlHex": "🎐" + }, + { + "emojiChar": "🎑", + "emoji": "🎑", + "description": "moon viewing ceremony", + "aliases": [ + "rice_scene" + ], + "tags": [], + "unicode": "🎑", + "htmlDec": "🎑", + "htmlHex": "🎑" + }, + { + "emojiChar": "🎃", + "emoji": "🎃", + "description": "jack-o-lantern", + "aliases": [ + "jack_o_lantern", + "pumpkin" + ], + "tags": [ + "halloween" + ], + "unicode": "🎃", + "htmlDec": "🎃", + "htmlHex": "🎃" + }, + { + "emojiChar": "👻", + "emoji": "👻", + "description": "ghost", + "aliases": [ + "ghost" + ], + "tags": [ + "halloween" + ], + "unicode": "👻", + "htmlDec": "👻", + "htmlHex": "👻" + }, + { + "emojiChar": "🎅", + "emoji": "🎅", + "description": "father christmas", + "supports_fitzpatrick": true, + "aliases": [ + "santa" + ], + "tags": [ + "christmas" + ], + "unicode": "🎅", + "htmlDec": "🎅", + "htmlHex": "🎅" + }, + { + "emojiChar": "🎄", + "emoji": "🎄", + "description": "christmas tree", + "aliases": [ + "christmas_tree" + ], + "tags": [], + "unicode": "🎄", + "htmlDec": "🎄", + "htmlHex": "🎄" + }, + { + "emojiChar": "🎁", + "emoji": "🎁", + "description": "wrapped present", + "aliases": [ + "gift" + ], + "tags": [ + "present", + "birthday", + "christmas" + ], + "unicode": "🎁", + "htmlDec": "🎁", + "htmlHex": "🎁" + }, + { + "emojiChar": "🎋", + "emoji": "🎋", + "description": "tanabata tree", + "aliases": [ + "tanabata_tree" + ], + "tags": [], + "unicode": "🎋", + "htmlDec": "🎋", + "htmlHex": "🎋" + }, + { + "emojiChar": "🎉", + "emoji": "🎉", + "description": "party popper", + "aliases": [ + "tada" + ], + "tags": [ + "party" + ], + "unicode": "🎉", + "htmlDec": "🎉", + "htmlHex": "🎉" + }, + { + "emojiChar": "🎊", + "emoji": "🎊", + "description": "confetti ball", + "aliases": [ + "confetti_ball" + ], + "tags": [], + "unicode": "🎊", + "htmlDec": "🎊", + "htmlHex": "🎊" + }, + { + "emojiChar": "🎈", + "emoji": "🎈", + "description": "balloon", + "aliases": [ + "balloon" + ], + "tags": [ + "party", + "birthday" + ], + "unicode": "🎈", + "htmlDec": "🎈", + "htmlHex": "🎈" + }, + { + "emojiChar": "🎌", + "emoji": "🎌", + "description": "crossed flags", + "aliases": [ + "crossed_flags" + ], + "tags": [], + "unicode": "🎌", + "htmlDec": "🎌", + "htmlHex": "🎌" + }, + { + "emojiChar": "🔮", + "emoji": "🔮", + "description": "crystal ball", + "aliases": [ + "crystal_ball" + ], + "tags": [ + "fortune" + ], + "unicode": "🔮", + "htmlDec": "🔮", + "htmlHex": "🔮" + }, + { + "emojiChar": "🎥", + "emoji": "🎥", + "description": "movie camera", + "aliases": [ + "movie_camera" + ], + "tags": [ + "film", + "video" + ], + "unicode": "🎥", + "htmlDec": "🎥", + "htmlHex": "🎥" + }, + { + "emojiChar": "📷", + "emoji": "📷", + "description": "camera", + "aliases": [ + "camera" + ], + "tags": [ + "photo" + ], + "unicode": "📷", + "htmlDec": "📷", + "htmlHex": "📷" + }, + { + "emojiChar": "📹", + "emoji": "📹", + "description": "video camera", + "aliases": [ + "video_camera" + ], + "tags": [], + "unicode": "📹", + "htmlDec": "📹", + "htmlHex": "📹" + }, + { + "emojiChar": "📼", + "emoji": "📼", + "description": "videocassette", + "aliases": [ + "vhs" + ], + "tags": [], + "unicode": "📼", + "htmlDec": "📼", + "htmlHex": "📼" + }, + { + "emojiChar": "💿", + "emoji": "💿", + "description": "optical disc", + "aliases": [ + "cd" + ], + "tags": [], + "unicode": "💿", + "htmlDec": "💿", + "htmlHex": "💿" + }, + { + "emojiChar": "📀", + "emoji": "📀", + "description": "dvd", + "aliases": [ + "dvd" + ], + "tags": [], + "unicode": "📀", + "htmlDec": "📀", + "htmlHex": "📀" + }, + { + "emojiChar": "💽", + "emoji": "💽", + "description": "minidisc", + "aliases": [ + "minidisc" + ], + "tags": [], + "unicode": "💽", + "htmlDec": "💽", + "htmlHex": "💽" + }, + { + "emojiChar": "💾", + "emoji": "💾", + "description": "floppy disk", + "aliases": [ + "floppy_disk" + ], + "tags": [ + "save" + ], + "unicode": "💾", + "htmlDec": "💾", + "htmlHex": "💾" + }, + { + "emojiChar": "💻", + "emoji": "💻", + "description": "personal computer", + "aliases": [ + "computer" + ], + "tags": [ + "desktop", + "screen" + ], + "unicode": "💻", + "htmlDec": "💻", + "htmlHex": "💻" + }, + { + "emojiChar": "📱", + "emoji": "📱", + "description": "mobile phone", + "aliases": [ + "iphone" + ], + "tags": [ + "smartphone", + "mobile" + ], + "unicode": "📱", + "htmlDec": "📱", + "htmlHex": "📱" + }, + { + "emojiChar": "☎", + "emoji": "☎", + "description": "black telephone", + "aliases": [ + "phone", + "telephone" + ], + "tags": [], + "unicode": "☎", + "htmlDec": "☎", + "htmlHex": "☎" + }, + { + "emojiChar": "📞", + "emoji": "📞", + "description": "telephone receiver", + "aliases": [ + "telephone_receiver" + ], + "tags": [ + "phone", + "call" + ], + "unicode": "📞", + "htmlDec": "📞", + "htmlHex": "📞" + }, + { + "emojiChar": "📟", + "emoji": "📟", + "description": "pager", + "aliases": [ + "pager" + ], + "tags": [], + "unicode": "📟", + "htmlDec": "📟", + "htmlHex": "📟" + }, + { + "emojiChar": "📠", + "emoji": "📠", + "description": "fax machine", + "aliases": [ + "fax" + ], + "tags": [], + "unicode": "📠", + "htmlDec": "📠", + "htmlHex": "📠" + }, + { + "emojiChar": "📡", + "emoji": "📡", + "description": "satellite antenna", + "aliases": [ + "satellite_antenna" + ], + "tags": [ + "signal" + ], + "unicode": "📡", + "htmlDec": "📡", + "htmlHex": "📡" + }, + { + "emojiChar": "📺", + "emoji": "📺", + "description": "television", + "aliases": [ + "tv" + ], + "tags": [], + "unicode": "📺", + "htmlDec": "📺", + "htmlHex": "📺" + }, + { + "emojiChar": "📻", + "emoji": "📻", + "description": "radio", + "aliases": [ + "radio" + ], + "tags": [ + "podcast" + ], + "unicode": "📻", + "htmlDec": "📻", + "htmlHex": "📻" + }, + { + "emojiChar": "🔊", + "emoji": "🔊", + "description": "speaker with three sound waves", + "aliases": [ + "loud_sound" + ], + "tags": [ + "volume" + ], + "unicode": "🔊", + "htmlDec": "🔊", + "htmlHex": "🔊" + }, + { + "emojiChar": "🔉", + "emoji": "🔉", + "description": "speaker with one sound wave", + "aliases": [ + "sound" + ], + "tags": [ + "volume" + ], + "unicode": "🔉", + "htmlDec": "🔉", + "htmlHex": "🔉" + }, + { + "emojiChar": "🔈", + "emoji": "🔈", + "description": "speaker", + "aliases": [ + "speaker" + ], + "tags": [], + "unicode": "🔈", + "htmlDec": "🔈", + "htmlHex": "🔈" + }, + { + "emojiChar": "🔇", + "emoji": "🔇", + "description": "speaker with cancellation stroke", + "aliases": [ + "mute" + ], + "tags": [ + "sound", + "volume" + ], + "unicode": "🔇", + "htmlDec": "🔇", + "htmlHex": "🔇" + }, + { + "emojiChar": "🔔", + "emoji": "🔔", + "description": "bell", + "aliases": [ + "bell" + ], + "tags": [ + "sound", + "notification" + ], + "unicode": "🔔", + "htmlDec": "🔔", + "htmlHex": "🔔" + }, + { + "emojiChar": "🔕", + "emoji": "🔕", + "description": "bell with cancellation stroke", + "aliases": [ + "no_bell" + ], + "tags": [ + "volume", + "off" + ], + "unicode": "🔕", + "htmlDec": "🔕", + "htmlHex": "🔕" + }, + { + "emojiChar": "📢", + "emoji": "📢", + "description": "public address loudspeaker", + "aliases": [ + "loudspeaker" + ], + "tags": [ + "announcement" + ], + "unicode": "📢", + "htmlDec": "📢", + "htmlHex": "📢" + }, + { + "emojiChar": "📣", + "emoji": "📣", + "description": "cheering megaphone", + "aliases": [ + "mega" + ], + "tags": [], + "unicode": "📣", + "htmlDec": "📣", + "htmlHex": "📣" + }, + { + "emojiChar": "⏳", + "emoji": "⏳", + "description": "hourglass with flowing sand", + "aliases": [ + "hourglass_flowing_sand" + ], + "tags": [ + "time" + ], + "unicode": "⏳", + "htmlDec": "⏳", + "htmlHex": "⏳" + }, + { + "emojiChar": "⌛", + "emoji": "⌛", + "description": "hourglass", + "aliases": [ + "hourglass" + ], + "tags": [ + "time" + ], + "unicode": "⌛", + "htmlDec": "⌛", + "htmlHex": "⌛" + }, + { + "emojiChar": "⏰", + "emoji": "⏰", + "description": "alarm clock", + "aliases": [ + "alarm_clock" + ], + "tags": [ + "morning" + ], + "unicode": "⏰", + "htmlDec": "⏰", + "htmlHex": "⏰" + }, + { + "emojiChar": "⌚", + "emoji": "⌚", + "description": "watch", + "aliases": [ + "watch" + ], + "tags": [ + "time" + ], + "unicode": "⌚", + "htmlDec": "⌚", + "htmlHex": "⌚" + }, + { + "emojiChar": "🔓", + "emoji": "🔓", + "description": "open lock", + "aliases": [ + "unlock" + ], + "tags": [ + "security" + ], + "unicode": "🔓", + "htmlDec": "🔓", + "htmlHex": "🔓" + }, + { + "emojiChar": "🔒", + "emoji": "🔒", + "description": "lock", + "aliases": [ + "lock" + ], + "tags": [ + "security", + "private" + ], + "unicode": "🔒", + "htmlDec": "🔒", + "htmlHex": "🔒" + }, + { + "emojiChar": "🔏", + "emoji": "🔏", + "description": "lock with ink pen", + "aliases": [ + "lock_with_ink_pen" + ], + "tags": [], + "unicode": "🔏", + "htmlDec": "🔏", + "htmlHex": "🔏" + }, + { + "emojiChar": "🔐", + "emoji": "🔐", + "description": "closed lock with key", + "aliases": [ + "closed_lock_with_key" + ], + "tags": [ + "security" + ], + "unicode": "🔐", + "htmlDec": "🔐", + "htmlHex": "🔐" + }, + { + "emojiChar": "🔑", + "emoji": "🔑", + "description": "key", + "aliases": [ + "key" + ], + "tags": [ + "lock", + "password" + ], + "unicode": "🔑", + "htmlDec": "🔑", + "htmlHex": "🔑" + }, + { + "emojiChar": "🔎", + "emoji": "🔎", + "description": "right-pointing magnifying glass", + "aliases": [ + "mag_right" + ], + "tags": [], + "unicode": "🔎", + "htmlDec": "🔎", + "htmlHex": "🔎" + }, + { + "emojiChar": "💡", + "emoji": "💡", + "description": "electric light bulb", + "aliases": [ + "bulb" + ], + "tags": [ + "idea", + "light" + ], + "unicode": "💡", + "htmlDec": "💡", + "htmlHex": "💡" + }, + { + "emojiChar": "🔦", + "emoji": "🔦", + "description": "electric torch", + "aliases": [ + "flashlight" + ], + "tags": [], + "unicode": "🔦", + "htmlDec": "🔦", + "htmlHex": "🔦" + }, + { + "emojiChar": "🔆", + "emoji": "🔆", + "description": "high brightness symbol", + "aliases": [ + "high_brightness" + ], + "tags": [], + "unicode": "🔆", + "htmlDec": "🔆", + "htmlHex": "🔆" + }, + { + "emojiChar": "🔅", + "emoji": "🔅", + "description": "low brightness symbol", + "aliases": [ + "low_brightness" + ], + "tags": [], + "unicode": "🔅", + "htmlDec": "🔅", + "htmlHex": "🔅" + }, + { + "emojiChar": "🔌", + "emoji": "🔌", + "description": "electric plug", + "aliases": [ + "electric_plug" + ], + "tags": [], + "unicode": "🔌", + "htmlDec": "🔌", + "htmlHex": "🔌" + }, + { + "emojiChar": "🔋", + "emoji": "🔋", + "description": "battery", + "aliases": [ + "battery" + ], + "tags": [ + "power" + ], + "unicode": "🔋", + "htmlDec": "🔋", + "htmlHex": "🔋" + }, + { + "emojiChar": "🔍", + "emoji": "🔍", + "description": "left-pointing magnifying glass", + "aliases": [ + "mag" + ], + "tags": [ + "search", + "zoom" + ], + "unicode": "🔍", + "htmlDec": "🔍", + "htmlHex": "🔍" + }, + { + "emojiChar": "🛁", + "emoji": "🛁", + "description": "bathtub", + "aliases": [ + "bathtub" + ], + "tags": [], + "unicode": "🛁", + "htmlDec": "🛁", + "htmlHex": "🛁" + }, + { + "emojiChar": "🛀", + "emoji": "🛀", + "description": "bath", + "supports_fitzpatrick": true, + "aliases": [ + "bath" + ], + "tags": [ + "shower" + ], + "unicode": "🛀", + "htmlDec": "🛀", + "htmlHex": "🛀" + }, + { + "emojiChar": "🚿", + "emoji": "🚿", + "description": "shower", + "aliases": [ + "shower" + ], + "tags": [ + "bath" + ], + "unicode": "🚿", + "htmlDec": "🚿", + "htmlHex": "🚿" + }, + { + "emojiChar": "🚽", + "emoji": "🚽", + "description": "toilet", + "aliases": [ + "toilet" + ], + "tags": [ + "wc" + ], + "unicode": "🚽", + "htmlDec": "🚽", + "htmlHex": "🚽" + }, + { + "emojiChar": "🔧", + "emoji": "🔧", + "description": "wrench", + "aliases": [ + "wrench" + ], + "tags": [ + "tool" + ], + "unicode": "🔧", + "htmlDec": "🔧", + "htmlHex": "🔧" + }, + { + "emojiChar": "🔩", + "emoji": "🔩", + "description": "nut and bolt", + "aliases": [ + "nut_and_bolt" + ], + "tags": [], + "unicode": "🔩", + "htmlDec": "🔩", + "htmlHex": "🔩" + }, + { + "emojiChar": "🔨", + "emoji": "🔨", + "description": "hammer", + "aliases": [ + "hammer" + ], + "tags": [ + "tool" + ], + "unicode": "🔨", + "htmlDec": "🔨", + "htmlHex": "🔨" + }, + { + "emojiChar": "🚪", + "emoji": "🚪", + "description": "door", + "aliases": [ + "door" + ], + "tags": [], + "unicode": "🚪", + "htmlDec": "🚪", + "htmlHex": "🚪" + }, + { + "emojiChar": "🚬", + "emoji": "🚬", + "description": "smoking symbol", + "aliases": [ + "smoking" + ], + "tags": [ + "cigarette" + ], + "unicode": "🚬", + "htmlDec": "🚬", + "htmlHex": "🚬" + }, + { + "emojiChar": "💣", + "emoji": "💣", + "description": "bomb", + "aliases": [ + "bomb" + ], + "tags": [ + "boom" + ], + "unicode": "💣", + "htmlDec": "💣", + "htmlHex": "💣" + }, + { + "emojiChar": "🔫", + "emoji": "🔫", + "description": "pistol", + "aliases": [ + "gun" + ], + "tags": [ + "shoot", + "weapon" + ], + "unicode": "🔫", + "htmlDec": "🔫", + "htmlHex": "🔫" + }, + { + "emojiChar": "🔪", + "emoji": "🔪", + "description": "hocho", + "aliases": [ + "hocho", + "knife" + ], + "tags": [ + "cut", + "chop" + ], + "unicode": "🔪", + "htmlDec": "🔪", + "htmlHex": "🔪" + }, + { + "emojiChar": "💊", + "emoji": "💊", + "description": "pill", + "aliases": [ + "pill" + ], + "tags": [ + "health", + "medicine" + ], + "unicode": "💊", + "htmlDec": "💊", + "htmlHex": "💊" + }, + { + "emojiChar": "💉", + "emoji": "💉", + "description": "syringe", + "aliases": [ + "syringe" + ], + "tags": [ + "health", + "hospital", + "needle" + ], + "unicode": "💉", + "htmlDec": "💉", + "htmlHex": "💉" + }, + { + "emojiChar": "💰", + "emoji": "💰", + "description": "money bag", + "aliases": [ + "moneybag" + ], + "tags": [ + "dollar", + "cream" + ], + "unicode": "💰", + "htmlDec": "💰", + "htmlHex": "💰" + }, + { + "emojiChar": "💴", + "emoji": "💴", + "description": "banknote with yen sign", + "aliases": [ + "yen" + ], + "tags": [], + "unicode": "💴", + "htmlDec": "💴", + "htmlHex": "💴" + }, + { + "emojiChar": "💵", + "emoji": "💵", + "description": "banknote with dollar sign", + "aliases": [ + "dollar" + ], + "tags": [ + "money" + ], + "unicode": "💵", + "htmlDec": "💵", + "htmlHex": "💵" + }, + { + "emojiChar": "💷", + "emoji": "💷", + "description": "banknote with pound sign", + "aliases": [ + "pound" + ], + "tags": [], + "unicode": "💷", + "htmlDec": "💷", + "htmlHex": "💷" + }, + { + "emojiChar": "💶", + "emoji": "💶", + "description": "banknote with euro sign", + "aliases": [ + "euro" + ], + "tags": [], + "unicode": "💶", + "htmlDec": "💶", + "htmlHex": "💶" + }, + { + "emojiChar": "💳", + "emoji": "💳", + "description": "credit card", + "aliases": [ + "credit_card" + ], + "tags": [ + "subscription" + ], + "unicode": "💳", + "htmlDec": "💳", + "htmlHex": "💳" + }, + { + "emojiChar": "💸", + "emoji": "💸", + "description": "money with wings", + "aliases": [ + "money_with_wings" + ], + "tags": [ + "dollar" + ], + "unicode": "💸", + "htmlDec": "💸", + "htmlHex": "💸" + }, + { + "emojiChar": "📲", + "emoji": "📲", + "description": "mobile phone with rightwards arrow at left", + "aliases": [ + "calling" + ], + "tags": [ + "call", + "incoming" + ], + "unicode": "📲", + "htmlDec": "📲", + "htmlHex": "📲" + }, + { + "emojiChar": "📧", + "emoji": "📧", + "description": "e-mail symbol", + "aliases": [ + "e-mail" + ], + "tags": [], + "unicode": "📧", + "htmlDec": "📧", + "htmlHex": "📧" + }, + { + "emojiChar": "📥", + "emoji": "📥", + "description": "inbox tray", + "aliases": [ + "inbox_tray" + ], + "tags": [], + "unicode": "📥", + "htmlDec": "📥", + "htmlHex": "📥" + }, + { + "emojiChar": "📤", + "emoji": "📤", + "description": "outbox tray", + "aliases": [ + "outbox_tray" + ], + "tags": [], + "unicode": "📤", + "htmlDec": "📤", + "htmlHex": "📤" + }, + { + "emojiChar": "✉", + "emoji": "✉", + "description": "envelope", + "aliases": [ + "email", + "envelope" + ], + "tags": [ + "letter" + ], + "unicode": "✉", + "htmlDec": "✉", + "htmlHex": "✉" + }, + { + "emojiChar": "📩", + "emoji": "📩", + "description": "envelope with downwards arrow above", + "aliases": [ + "envelope_with_arrow" + ], + "tags": [], + "unicode": "📩", + "htmlDec": "📩", + "htmlHex": "📩" + }, + { + "emojiChar": "📨", + "emoji": "📨", + "description": "incoming envelope", + "aliases": [ + "incoming_envelope" + ], + "tags": [], + "unicode": "📨", + "htmlDec": "📨", + "htmlHex": "📨" + }, + { + "emojiChar": "📯", + "emoji": "📯", + "description": "postal horn", + "aliases": [ + "postal_horn" + ], + "tags": [], + "unicode": "📯", + "htmlDec": "📯", + "htmlHex": "📯" + }, + { + "emojiChar": "📫", + "emoji": "📫", + "description": "closed mailbox with raised flag", + "aliases": [ + "mailbox" + ], + "tags": [], + "unicode": "📫", + "htmlDec": "📫", + "htmlHex": "📫" + }, + { + "emojiChar": "📪", + "emoji": "📪", + "description": "closed mailbox with lowered flag", + "aliases": [ + "mailbox_closed" + ], + "tags": [], + "unicode": "📪", + "htmlDec": "📪", + "htmlHex": "📪" + }, + { + "emojiChar": "📬", + "emoji": "📬", + "description": "open mailbox with raised flag", + "aliases": [ + "mailbox_with_mail" + ], + "tags": [], + "unicode": "📬", + "htmlDec": "📬", + "htmlHex": "📬" + }, + { + "emojiChar": "📭", + "emoji": "📭", + "description": "open mailbox with lowered flag", + "aliases": [ + "mailbox_with_no_mail" + ], + "tags": [], + "unicode": "📭", + "htmlDec": "📭", + "htmlHex": "📭" + }, + { + "emojiChar": "📮", + "emoji": "📮", + "description": "postbox", + "aliases": [ + "postbox" + ], + "tags": [], + "unicode": "📮", + "htmlDec": "📮", + "htmlHex": "📮" + }, + { + "emojiChar": "📦", + "emoji": "📦", + "description": "package", + "aliases": [ + "package" + ], + "tags": [ + "shipping" + ], + "unicode": "📦", + "htmlDec": "📦", + "htmlHex": "📦" + }, + { + "emojiChar": "📝", + "emoji": "📝", + "description": "memo", + "aliases": [ + "memo", + "pencil" + ], + "tags": [ + "document", + "note" + ], + "unicode": "📝", + "htmlDec": "📝", + "htmlHex": "📝" + }, + { + "emojiChar": "📄", + "emoji": "📄", + "description": "page facing up", + "aliases": [ + "page_facing_up" + ], + "tags": [ + "document" + ], + "unicode": "📄", + "htmlDec": "📄", + "htmlHex": "📄" + }, + { + "emojiChar": "📃", + "emoji": "📃", + "description": "page with curl", + "aliases": [ + "page_with_curl" + ], + "tags": [], + "unicode": "📃", + "htmlDec": "📃", + "htmlHex": "📃" + }, + { + "emojiChar": "📑", + "emoji": "📑", + "description": "bookmark tabs", + "aliases": [ + "bookmark_tabs" + ], + "tags": [], + "unicode": "📑", + "htmlDec": "📑", + "htmlHex": "📑" + }, + { + "emojiChar": "📊", + "emoji": "📊", + "description": "bar chart", + "aliases": [ + "bar_chart" + ], + "tags": [ + "stats", + "metrics" + ], + "unicode": "📊", + "htmlDec": "📊", + "htmlHex": "📊" + }, + { + "emojiChar": "📈", + "emoji": "📈", + "description": "chart with upwards trend", + "aliases": [ + "chart_with_upwards_trend" + ], + "tags": [ + "graph", + "metrics" + ], + "unicode": "📈", + "htmlDec": "📈", + "htmlHex": "📈" + }, + { + "emojiChar": "📉", + "emoji": "📉", + "description": "chart with downwards trend", + "aliases": [ + "chart_with_downwards_trend" + ], + "tags": [ + "graph", + "metrics" + ], + "unicode": "📉", + "htmlDec": "📉", + "htmlHex": "📉" + }, + { + "emojiChar": "📜", + "emoji": "📜", + "description": "scroll", + "aliases": [ + "scroll" + ], + "tags": [ + "document" + ], + "unicode": "📜", + "htmlDec": "📜", + "htmlHex": "📜" + }, + { + "emojiChar": "📋", + "emoji": "📋", + "description": "clipboard", + "aliases": [ + "clipboard" + ], + "tags": [], + "unicode": "📋", + "htmlDec": "📋", + "htmlHex": "📋" + }, + { + "emojiChar": "📅", + "emoji": "📅", + "description": "calendar", + "aliases": [ + "date" + ], + "tags": [ + "calendar", + "schedule" + ], + "unicode": "📅", + "htmlDec": "📅", + "htmlHex": "📅" + }, + { + "emojiChar": "📆", + "emoji": "📆", + "description": "tear-off calendar", + "aliases": [ + "calendar" + ], + "tags": [ + "schedule" + ], + "unicode": "📆", + "htmlDec": "📆", + "htmlHex": "📆" + }, + { + "emojiChar": "📇", + "emoji": "📇", + "description": "card index", + "aliases": [ + "card_index" + ], + "tags": [], + "unicode": "📇", + "htmlDec": "📇", + "htmlHex": "📇" + }, + { + "emojiChar": "📁", + "emoji": "📁", + "description": "file folder", + "aliases": [ + "file_folder" + ], + "tags": [ + "directory" + ], + "unicode": "📁", + "htmlDec": "📁", + "htmlHex": "📁" + }, + { + "emojiChar": "📂", + "emoji": "📂", + "description": "open file folder", + "aliases": [ + "open_file_folder" + ], + "tags": [], + "unicode": "📂", + "htmlDec": "📂", + "htmlHex": "📂" + }, + { + "emojiChar": "✂", + "emoji": "✂", + "description": "black scissors", + "aliases": [ + "scissors" + ], + "tags": [ + "cut" + ], + "unicode": "✂", + "htmlDec": "✂", + "htmlHex": "✂" + }, + { + "emojiChar": "📌", + "emoji": "📌", + "description": "pushpin", + "aliases": [ + "pushpin" + ], + "tags": [ + "location" + ], + "unicode": "📌", + "htmlDec": "📌", + "htmlHex": "📌" + }, + { + "emojiChar": "📎", + "emoji": "📎", + "description": "paperclip", + "aliases": [ + "paperclip" + ], + "tags": [], + "unicode": "📎", + "htmlDec": "📎", + "htmlHex": "📎" + }, + { + "emojiChar": "✒", + "emoji": "✒", + "description": "black nib", + "aliases": [ + "black_nib" + ], + "tags": [], + "unicode": "✒", + "htmlDec": "✒", + "htmlHex": "✒" + }, + { + "emojiChar": "✏", + "emoji": "✏", + "description": "pencil", + "aliases": [ + "pencil2" + ], + "tags": [], + "unicode": "✏", + "htmlDec": "✏", + "htmlHex": "✏" + }, + { + "emojiChar": "📏", + "emoji": "📏", + "description": "straight ruler", + "aliases": [ + "straight_ruler" + ], + "tags": [], + "unicode": "📏", + "htmlDec": "📏", + "htmlHex": "📏" + }, + { + "emojiChar": "📐", + "emoji": "📐", + "description": "triangular ruler", + "aliases": [ + "triangular_ruler" + ], + "tags": [], + "unicode": "📐", + "htmlDec": "📐", + "htmlHex": "📐" + }, + { + "emojiChar": "📕", + "emoji": "📕", + "description": "closed book", + "aliases": [ + "closed_book" + ], + "tags": [], + "unicode": "📕", + "htmlDec": "📕", + "htmlHex": "📕" + }, + { + "emojiChar": "📗", + "emoji": "📗", + "description": "green book", + "aliases": [ + "green_book" + ], + "tags": [], + "unicode": "📗", + "htmlDec": "📗", + "htmlHex": "📗" + }, + { + "emojiChar": "📘", + "emoji": "📘", + "description": "blue book", + "aliases": [ + "blue_book" + ], + "tags": [], + "unicode": "📘", + "htmlDec": "📘", + "htmlHex": "📘" + }, + { + "emojiChar": "📙", + "emoji": "📙", + "description": "orange book", + "aliases": [ + "orange_book" + ], + "tags": [], + "unicode": "📙", + "htmlDec": "📙", + "htmlHex": "📙" + }, + { + "emojiChar": "📓", + "emoji": "📓", + "description": "notebook", + "aliases": [ + "notebook" + ], + "tags": [], + "unicode": "📓", + "htmlDec": "📓", + "htmlHex": "📓" + }, + { + "emojiChar": "📔", + "emoji": "📔", + "description": "notebook with decorative cover", + "aliases": [ + "notebook_with_decorative_cover" + ], + "tags": [], + "unicode": "📔", + "htmlDec": "📔", + "htmlHex": "📔" + }, + { + "emojiChar": "📒", + "emoji": "📒", + "description": "ledger", + "aliases": [ + "ledger" + ], + "tags": [], + "unicode": "📒", + "htmlDec": "📒", + "htmlHex": "📒" + }, + { + "emojiChar": "📚", + "emoji": "📚", + "description": "books", + "aliases": [ + "books" + ], + "tags": [ + "library" + ], + "unicode": "📚", + "htmlDec": "📚", + "htmlHex": "📚" + }, + { + "emojiChar": "📖", + "emoji": "📖", + "description": "open book", + "aliases": [ + "book", + "open_book" + ], + "tags": [], + "unicode": "📖", + "htmlDec": "📖", + "htmlHex": "📖" + }, + { + "emojiChar": "🔖", + "emoji": "🔖", + "description": "bookmark", + "aliases": [ + "bookmark" + ], + "tags": [], + "unicode": "🔖", + "htmlDec": "🔖", + "htmlHex": "🔖" + }, + { + "emojiChar": "📛", + "emoji": "📛", + "description": "name badge", + "aliases": [ + "name_badge" + ], + "tags": [], + "unicode": "📛", + "htmlDec": "📛", + "htmlHex": "📛" + }, + { + "emojiChar": "🔬", + "emoji": "🔬", + "description": "microscope", + "aliases": [ + "microscope" + ], + "tags": [ + "science", + "laboratory", + "investigate" + ], + "unicode": "🔬", + "htmlDec": "🔬", + "htmlHex": "🔬" + }, + { + "emojiChar": "🔭", + "emoji": "🔭", + "description": "telescope", + "aliases": [ + "telescope" + ], + "tags": [], + "unicode": "🔭", + "htmlDec": "🔭", + "htmlHex": "🔭" + }, + { + "emojiChar": "📰", + "emoji": "📰", + "description": "newspaper", + "aliases": [ + "newspaper" + ], + "tags": [ + "press" + ], + "unicode": "📰", + "htmlDec": "📰", + "htmlHex": "📰" + }, + { + "emojiChar": "🎨", + "emoji": "🎨", + "description": "artist palette", + "aliases": [ + "art" + ], + "tags": [ + "design", + "paint" + ], + "unicode": "🎨", + "htmlDec": "🎨", + "htmlHex": "🎨" + }, + { + "emojiChar": "🎬", + "emoji": "🎬", + "description": "clapper board", + "aliases": [ + "clapper" + ], + "tags": [ + "film" + ], + "unicode": "🎬", + "htmlDec": "🎬", + "htmlHex": "🎬" + }, + { + "emojiChar": "🎤", + "emoji": "🎤", + "description": "microphone", + "aliases": [ + "microphone" + ], + "tags": [ + "sing" + ], + "unicode": "🎤", + "htmlDec": "🎤", + "htmlHex": "🎤" + }, + { + "emojiChar": "🎧", + "emoji": "🎧", + "description": "headphone", + "aliases": [ + "headphones" + ], + "tags": [ + "music", + "earphones" + ], + "unicode": "🎧", + "htmlDec": "🎧", + "htmlHex": "🎧" + }, + { + "emojiChar": "🎼", + "emoji": "🎼", + "description": "musical score", + "aliases": [ + "musical_score" + ], + "tags": [], + "unicode": "🎼", + "htmlDec": "🎼", + "htmlHex": "🎼" + }, + { + "emojiChar": "🎵", + "emoji": "🎵", + "description": "musical note", + "aliases": [ + "musical_note" + ], + "tags": [], + "unicode": "🎵", + "htmlDec": "🎵", + "htmlHex": "🎵" + }, + { + "emojiChar": "🎶", + "emoji": "🎶", + "description": "multiple musical notes", + "aliases": [ + "notes" + ], + "tags": [ + "music" + ], + "unicode": "🎶", + "htmlDec": "🎶", + "htmlHex": "🎶" + }, + { + "emojiChar": "🎹", + "emoji": "🎹", + "description": "musical keyboard", + "aliases": [ + "musical_keyboard" + ], + "tags": [ + "piano" + ], + "unicode": "🎹", + "htmlDec": "🎹", + "htmlHex": "🎹" + }, + { + "emojiChar": "🎻", + "emoji": "🎻", + "description": "violin", + "aliases": [ + "violin" + ], + "tags": [], + "unicode": "🎻", + "htmlDec": "🎻", + "htmlHex": "🎻" + }, + { + "emojiChar": "🎺", + "emoji": "🎺", + "description": "trumpet", + "aliases": [ + "trumpet" + ], + "tags": [], + "unicode": "🎺", + "htmlDec": "🎺", + "htmlHex": "🎺" + }, + { + "emojiChar": "🎷", + "emoji": "🎷", + "description": "saxophone", + "aliases": [ + "saxophone" + ], + "tags": [], + "unicode": "🎷", + "htmlDec": "🎷", + "htmlHex": "🎷" + }, + { + "emojiChar": "🎸", + "emoji": "🎸", + "description": "guitar", + "aliases": [ + "guitar" + ], + "tags": [ + "rock" + ], + "unicode": "🎸", + "htmlDec": "🎸", + "htmlHex": "🎸" + }, + { + "emojiChar": "👾", + "emoji": "👾", + "description": "alien monster", + "aliases": [ + "space_invader" + ], + "tags": [ + "game", + "retro" + ], + "unicode": "👾", + "htmlDec": "👾", + "htmlHex": "👾" + }, + { + "emojiChar": "🎮", + "emoji": "🎮", + "description": "video game", + "aliases": [ + "video_game" + ], + "tags": [ + "play", + "controller", + "console" + ], + "unicode": "🎮", + "htmlDec": "🎮", + "htmlHex": "🎮" + }, + { + "emojiChar": "🃏", + "emoji": "🃏", + "description": "playing card black joker", + "aliases": [ + "black_joker" + ], + "tags": [], + "unicode": "🃏", + "htmlDec": "🃏", + "htmlHex": "🃏" + }, + { + "emojiChar": "🎴", + "emoji": "🎴", + "description": "flower playing cards", + "aliases": [ + "flower_playing_cards" + ], + "tags": [], + "unicode": "🎴", + "htmlDec": "🎴", + "htmlHex": "🎴" + }, + { + "emojiChar": "🀄", + "emoji": "🀄", + "description": "mahjong tile red dragon", + "aliases": [ + "mahjong" + ], + "tags": [], + "unicode": "🀄", + "htmlDec": "🀄", + "htmlHex": "🀄" + }, + { + "emojiChar": "🎲", + "emoji": "🎲", + "description": "game die", + "aliases": [ + "game_die" + ], + "tags": [ + "dice", + "gambling" + ], + "unicode": "🎲", + "htmlDec": "🎲", + "htmlHex": "🎲" + }, + { + "emojiChar": "🎯", + "emoji": "🎯", + "description": "direct hit", + "aliases": [ + "dart" + ], + "tags": [ + "target" + ], + "unicode": "🎯", + "htmlDec": "🎯", + "htmlHex": "🎯" + }, + { + "emojiChar": "🏈", + "emoji": "🏈", + "description": "american football", + "aliases": [ + "football" + ], + "tags": [ + "sports" + ], + "unicode": "🏈", + "htmlDec": "🏈", + "htmlHex": "🏈" + }, + { + "emojiChar": "🏀", + "emoji": "🏀", + "description": "basketball and hoop", + "aliases": [ + "basketball" + ], + "tags": [ + "sports" + ], + "unicode": "🏀", + "htmlDec": "🏀", + "htmlHex": "🏀" + }, + { + "emojiChar": "⚽", + "emoji": "⚽", + "description": "soccer ball", + "aliases": [ + "soccer" + ], + "tags": [ + "sports" + ], + "unicode": "⚽", + "htmlDec": "⚽", + "htmlHex": "⚽" + }, + { + "emojiChar": "⚾", + "emoji": "⚾", + "description": "baseball", + "aliases": [ + "baseball" + ], + "tags": [ + "sports" + ], + "unicode": "⚾", + "htmlDec": "⚾", + "htmlHex": "⚾" + }, + { + "emojiChar": "🎾", + "emoji": "🎾", + "description": "tennis racquet and ball", + "aliases": [ + "tennis" + ], + "tags": [ + "sports" + ], + "unicode": "🎾", + "htmlDec": "🎾", + "htmlHex": "🎾" + }, + { + "emojiChar": "🎱", + "emoji": "🎱", + "description": "billiards", + "aliases": [ + "8ball" + ], + "tags": [ + "pool", + "billiards" + ], + "unicode": "🎱", + "htmlDec": "🎱", + "htmlHex": "🎱" + }, + { + "emojiChar": "🏉", + "emoji": "🏉", + "description": "rugby football", + "aliases": [ + "rugby_football" + ], + "tags": [], + "unicode": "🏉", + "htmlDec": "🏉", + "htmlHex": "🏉" + }, + { + "emojiChar": "🎳", + "emoji": "🎳", + "description": "bowling", + "aliases": [ + "bowling" + ], + "tags": [], + "unicode": "🎳", + "htmlDec": "🎳", + "htmlHex": "🎳" + }, + { + "emojiChar": "⛳", + "emoji": "⛳", + "description": "flag in hole", + "aliases": [ + "golf" + ], + "tags": [], + "unicode": "⛳", + "htmlDec": "⛳", + "htmlHex": "⛳" + }, + { + "emojiChar": "🚵", + "emoji": "🚵", + "description": "mountain bicyclist", + "supports_fitzpatrick": true, + "aliases": [ + "mountain_bicyclist" + ], + "tags": [], + "unicode": "🚵", + "htmlDec": "🚵", + "htmlHex": "🚵" + }, + { + "emojiChar": "🚴", + "emoji": "🚴", + "description": "bicyclist", + "supports_fitzpatrick": true, + "aliases": [ + "bicyclist" + ], + "tags": [], + "unicode": "🚴", + "htmlDec": "🚴", + "htmlHex": "🚴" + }, + { + "emojiChar": "🏁", + "emoji": "🏁", + "description": "chequered flag", + "aliases": [ + "checkered_flag" + ], + "tags": [ + "milestone", + "finish" + ], + "unicode": "🏁", + "htmlDec": "🏁", + "htmlHex": "🏁" + }, + { + "emojiChar": "🏇", + "emoji": "🏇", + "description": "horse racing", + "supports_fitzpatrick": true, + "aliases": [ + "horse_racing" + ], + "tags": [], + "unicode": "🏇", + "htmlDec": "🏇", + "htmlHex": "🏇" + }, + { + "emojiChar": "🏆", + "emoji": "🏆", + "description": "trophy", + "aliases": [ + "trophy" + ], + "tags": [ + "award", + "contest", + "winner" + ], + "unicode": "🏆", + "htmlDec": "🏆", + "htmlHex": "🏆" + }, + { + "emojiChar": "🎿", + "emoji": "🎿", + "description": "ski and ski boot", + "aliases": [ + "ski" + ], + "tags": [], + "unicode": "🎿", + "htmlDec": "🎿", + "htmlHex": "🎿" + }, + { + "emojiChar": "🏂", + "emoji": "🏂", + "description": "snowboarder", + "supports_fitzpatrick": true, + "aliases": [ + "snowboarder" + ], + "tags": [], + "unicode": "🏂", + "htmlDec": "🏂", + "htmlHex": "🏂" + }, + { + "emojiChar": "🏊", + "emoji": "🏊", + "description": "swimmer", + "supports_fitzpatrick": true, + "aliases": [ + "swimmer" + ], + "tags": [], + "unicode": "🏊", + "htmlDec": "🏊", + "htmlHex": "🏊" + }, + { + "emojiChar": "🏄", + "emoji": "🏄", + "description": "surfer", + "supports_fitzpatrick": true, + "aliases": [ + "surfer" + ], + "tags": [], + "unicode": "🏄", + "htmlDec": "🏄", + "htmlHex": "🏄" + }, + { + "emojiChar": "🎣", + "emoji": "🎣", + "description": "fishing pole and fish", + "aliases": [ + "fishing_pole_and_fish" + ], + "tags": [], + "unicode": "🎣", + "htmlDec": "🎣", + "htmlHex": "🎣" + }, + { + "emojiChar": "☕", + "emoji": "☕", + "description": "hot beverage", + "aliases": [ + "coffee" + ], + "tags": [ + "cafe", + "espresso" + ], + "unicode": "☕", + "htmlDec": "☕", + "htmlHex": "☕" + }, + { + "emojiChar": "🍵", + "emoji": "🍵", + "description": "teacup without handle", + "aliases": [ + "tea" + ], + "tags": [ + "green", + "breakfast" + ], + "unicode": "🍵", + "htmlDec": "🍵", + "htmlHex": "🍵" + }, + { + "emojiChar": "🍶", + "emoji": "🍶", + "description": "sake bottle and cup", + "aliases": [ + "sake" + ], + "tags": [], + "unicode": "🍶", + "htmlDec": "🍶", + "htmlHex": "🍶" + }, + { + "emojiChar": "🍼", + "emoji": "🍼", + "description": "baby bottle", + "aliases": [ + "baby_bottle" + ], + "tags": [ + "milk" + ], + "unicode": "🍼", + "htmlDec": "🍼", + "htmlHex": "🍼" + }, + { + "emojiChar": "🍺", + "emoji": "🍺", + "description": "beer mug", + "aliases": [ + "beer" + ], + "tags": [ + "drink" + ], + "unicode": "🍺", + "htmlDec": "🍺", + "htmlHex": "🍺" + }, + { + "emojiChar": "🍻", + "emoji": "🍻", + "description": "clinking beer mugs", + "aliases": [ + "beers" + ], + "tags": [ + "drinks" + ], + "unicode": "🍻", + "htmlDec": "🍻", + "htmlHex": "🍻" + }, + { + "emojiChar": "🍸", + "emoji": "🍸", + "description": "cocktail glass", + "aliases": [ + "cocktail" + ], + "tags": [ + "drink" + ], + "unicode": "🍸", + "htmlDec": "🍸", + "htmlHex": "🍸" + }, + { + "emojiChar": "🍹", + "emoji": "🍹", + "description": "tropical drink", + "aliases": [ + "tropical_drink" + ], + "tags": [ + "summer", + "vacation" + ], + "unicode": "🍹", + "htmlDec": "🍹", + "htmlHex": "🍹" + }, + { + "emojiChar": "🍷", + "emoji": "🍷", + "description": "wine glass", + "aliases": [ + "wine_glass" + ], + "tags": [], + "unicode": "🍷", + "htmlDec": "🍷", + "htmlHex": "🍷" + }, + { + "emojiChar": "🍴", + "emoji": "🍴", + "description": "fork and knife", + "aliases": [ + "fork_and_knife" + ], + "tags": [ + "cutlery" + ], + "unicode": "🍴", + "htmlDec": "🍴", + "htmlHex": "🍴" + }, + { + "emojiChar": "🍕", + "emoji": "🍕", + "description": "slice of pizza", + "aliases": [ + "pizza" + ], + "tags": [], + "unicode": "🍕", + "htmlDec": "🍕", + "htmlHex": "🍕" + }, + { + "emojiChar": "🍔", + "emoji": "🍔", + "description": "hamburger", + "aliases": [ + "hamburger" + ], + "tags": [ + "burger" + ], + "unicode": "🍔", + "htmlDec": "🍔", + "htmlHex": "🍔" + }, + { + "emojiChar": "🍟", + "emoji": "🍟", + "description": "french fries", + "aliases": [ + "fries" + ], + "tags": [], + "unicode": "🍟", + "htmlDec": "🍟", + "htmlHex": "🍟" + }, + { + "emojiChar": "🍗", + "emoji": "🍗", + "description": "poultry leg", + "aliases": [ + "poultry_leg" + ], + "tags": [ + "meat", + "chicken" + ], + "unicode": "🍗", + "htmlDec": "🍗", + "htmlHex": "🍗" + }, + { + "emojiChar": "🍖", + "emoji": "🍖", + "description": "meat on bone", + "aliases": [ + "meat_on_bone" + ], + "tags": [], + "unicode": "🍖", + "htmlDec": "🍖", + "htmlHex": "🍖" + }, + { + "emojiChar": "🍝", + "emoji": "🍝", + "description": "spaghetti", + "aliases": [ + "spaghetti" + ], + "tags": [ + "pasta" + ], + "unicode": "🍝", + "htmlDec": "🍝", + "htmlHex": "🍝" + }, + { + "emojiChar": "🍛", + "emoji": "🍛", + "description": "curry and rice", + "aliases": [ + "curry" + ], + "tags": [], + "unicode": "🍛", + "htmlDec": "🍛", + "htmlHex": "🍛" + }, + { + "emojiChar": "🍤", + "emoji": "🍤", + "description": "fried shrimp", + "aliases": [ + "fried_shrimp" + ], + "tags": [ + "tempura" + ], + "unicode": "🍤", + "htmlDec": "🍤", + "htmlHex": "🍤" + }, + { + "emojiChar": "🍱", + "emoji": "🍱", + "description": "bento box", + "aliases": [ + "bento" + ], + "tags": [], + "unicode": "🍱", + "htmlDec": "🍱", + "htmlHex": "🍱" + }, + { + "emojiChar": "🍣", + "emoji": "🍣", + "description": "sushi", + "aliases": [ + "sushi" + ], + "tags": [], + "unicode": "🍣", + "htmlDec": "🍣", + "htmlHex": "🍣" + }, + { + "emojiChar": "🍥", + "emoji": "🍥", + "description": "fish cake with swirl design", + "aliases": [ + "fish_cake" + ], + "tags": [], + "unicode": "🍥", + "htmlDec": "🍥", + "htmlHex": "🍥" + }, + { + "emojiChar": "🍙", + "emoji": "🍙", + "description": "rice ball", + "aliases": [ + "rice_ball" + ], + "tags": [], + "unicode": "🍙", + "htmlDec": "🍙", + "htmlHex": "🍙" + }, + { + "emojiChar": "🍘", + "emoji": "🍘", + "description": "rice cracker", + "aliases": [ + "rice_cracker" + ], + "tags": [], + "unicode": "🍘", + "htmlDec": "🍘", + "htmlHex": "🍘" + }, + { + "emojiChar": "🍚", + "emoji": "🍚", + "description": "cooked rice", + "aliases": [ + "rice" + ], + "tags": [], + "unicode": "🍚", + "htmlDec": "🍚", + "htmlHex": "🍚" + }, + { + "emojiChar": "🍜", + "emoji": "🍜", + "description": "steaming bowl", + "aliases": [ + "ramen" + ], + "tags": [ + "noodle" + ], + "unicode": "🍜", + "htmlDec": "🍜", + "htmlHex": "🍜" + }, + { + "emojiChar": "🍲", + "emoji": "🍲", + "description": "pot of food", + "aliases": [ + "stew" + ], + "tags": [], + "unicode": "🍲", + "htmlDec": "🍲", + "htmlHex": "🍲" + }, + { + "emojiChar": "🍢", + "emoji": "🍢", + "description": "oden", + "aliases": [ + "oden" + ], + "tags": [], + "unicode": "🍢", + "htmlDec": "🍢", + "htmlHex": "🍢" + }, + { + "emojiChar": "🍡", + "emoji": "🍡", + "description": "dango", + "aliases": [ + "dango" + ], + "tags": [], + "unicode": "🍡", + "htmlDec": "🍡", + "htmlHex": "🍡" + }, + { + "emojiChar": "🍳", + "emoji": "🍳", + "description": "cooking", + "aliases": [ + "cooking" + ], + "tags": [ + "breakfast" + ], + "unicode": "🍳", + "htmlDec": "🍳", + "htmlHex": "🍳" + }, + { + "emojiChar": "🍞", + "emoji": "🍞", + "description": "bread", + "aliases": [ + "bread" + ], + "tags": [ + "toast" + ], + "unicode": "🍞", + "htmlDec": "🍞", + "htmlHex": "🍞" + }, + { + "emojiChar": "🍩", + "emoji": "🍩", + "description": "doughnut", + "aliases": [ + "doughnut" + ], + "tags": [], + "unicode": "🍩", + "htmlDec": "🍩", + "htmlHex": "🍩" + }, + { + "emojiChar": "🍮", + "emoji": "🍮", + "description": "custard", + "aliases": [ + "custard" + ], + "tags": [], + "unicode": "🍮", + "htmlDec": "🍮", + "htmlHex": "🍮" + }, + { + "emojiChar": "🍦", + "emoji": "🍦", + "description": "soft ice cream", + "aliases": [ + "icecream" + ], + "tags": [], + "unicode": "🍦", + "htmlDec": "🍦", + "htmlHex": "🍦" + }, + { + "emojiChar": "🍨", + "emoji": "🍨", + "description": "ice cream", + "aliases": [ + "ice_cream" + ], + "tags": [], + "unicode": "🍨", + "htmlDec": "🍨", + "htmlHex": "🍨" + }, + { + "emojiChar": "🍧", + "emoji": "🍧", + "description": "shaved ice", + "aliases": [ + "shaved_ice" + ], + "tags": [], + "unicode": "🍧", + "htmlDec": "🍧", + "htmlHex": "🍧" + }, + { + "emojiChar": "🎂", + "emoji": "🎂", + "description": "birthday cake", + "aliases": [ + "birthday" + ], + "tags": [ + "party" + ], + "unicode": "🎂", + "htmlDec": "🎂", + "htmlHex": "🎂" + }, + { + "emojiChar": "🍰", + "emoji": "🍰", + "description": "shortcake", + "aliases": [ + "cake" + ], + "tags": [ + "dessert" + ], + "unicode": "🍰", + "htmlDec": "🍰", + "htmlHex": "🍰" + }, + { + "emojiChar": "🍪", + "emoji": "🍪", + "description": "cookie", + "aliases": [ + "cookie" + ], + "tags": [], + "unicode": "🍪", + "htmlDec": "🍪", + "htmlHex": "🍪" + }, + { + "emojiChar": "🍫", + "emoji": "🍫", + "description": "chocolate bar", + "aliases": [ + "chocolate_bar" + ], + "tags": [], + "unicode": "🍫", + "htmlDec": "🍫", + "htmlHex": "🍫" + }, + { + "emojiChar": "🍬", + "emoji": "🍬", + "description": "candy", + "aliases": [ + "candy" + ], + "tags": [ + "sweet" + ], + "unicode": "🍬", + "htmlDec": "🍬", + "htmlHex": "🍬" + }, + { + "emojiChar": "🍭", + "emoji": "🍭", + "description": "lollipop", + "aliases": [ + "lollipop" + ], + "tags": [], + "unicode": "🍭", + "htmlDec": "🍭", + "htmlHex": "🍭" + }, + { + "emojiChar": "🍯", + "emoji": "🍯", + "description": "honey pot", + "aliases": [ + "honey_pot" + ], + "tags": [], + "unicode": "🍯", + "htmlDec": "🍯", + "htmlHex": "🍯" + }, + { + "emojiChar": "🍎", + "emoji": "🍎", + "description": "red apple", + "aliases": [ + "apple" + ], + "tags": [], + "unicode": "🍎", + "htmlDec": "🍎", + "htmlHex": "🍎" + }, + { + "emojiChar": "🍏", + "emoji": "🍏", + "description": "green apple", + "aliases": [ + "green_apple" + ], + "tags": [ + "fruit" + ], + "unicode": "🍏", + "htmlDec": "🍏", + "htmlHex": "🍏" + }, + { + "emojiChar": "🍊", + "emoji": "🍊", + "description": "tangerine", + "aliases": [ + "tangerine" + ], + "tags": [], + "unicode": "🍊", + "htmlDec": "🍊", + "htmlHex": "🍊" + }, + { + "emojiChar": "🍋", + "emoji": "🍋", + "description": "lemon", + "aliases": [ + "lemon" + ], + "tags": [], + "unicode": "🍋", + "htmlDec": "🍋", + "htmlHex": "🍋" + }, + { + "emojiChar": "🍒", + "emoji": "🍒", + "description": "cherries", + "aliases": [ + "cherries" + ], + "tags": [ + "fruit" + ], + "unicode": "🍒", + "htmlDec": "🍒", + "htmlHex": "🍒" + }, + { + "emojiChar": "🍇", + "emoji": "🍇", + "description": "grapes", + "aliases": [ + "grapes" + ], + "tags": [], + "unicode": "🍇", + "htmlDec": "🍇", + "htmlHex": "🍇" + }, + { + "emojiChar": "🍉", + "emoji": "🍉", + "description": "watermelon", + "aliases": [ + "watermelon" + ], + "tags": [], + "unicode": "🍉", + "htmlDec": "🍉", + "htmlHex": "🍉" + }, + { + "emojiChar": "🍓", + "emoji": "🍓", + "description": "strawberry", + "aliases": [ + "strawberry" + ], + "tags": [ + "fruit" + ], + "unicode": "🍓", + "htmlDec": "🍓", + "htmlHex": "🍓" + }, + { + "emojiChar": "🍑", + "emoji": "🍑", + "description": "peach", + "aliases": [ + "peach" + ], + "tags": [], + "unicode": "🍑", + "htmlDec": "🍑", + "htmlHex": "🍑" + }, + { + "emojiChar": "🍈", + "emoji": "🍈", + "description": "melon", + "aliases": [ + "melon" + ], + "tags": [], + "unicode": "🍈", + "htmlDec": "🍈", + "htmlHex": "🍈" + }, + { + "emojiChar": "🍌", + "emoji": "🍌", + "description": "banana", + "aliases": [ + "banana" + ], + "tags": [ + "fruit" + ], + "unicode": "🍌", + "htmlDec": "🍌", + "htmlHex": "🍌" + }, + { + "emojiChar": "🍐", + "emoji": "🍐", + "description": "pear", + "aliases": [ + "pear" + ], + "tags": [], + "unicode": "🍐", + "htmlDec": "🍐", + "htmlHex": "🍐" + }, + { + "emojiChar": "🍍", + "emoji": "🍍", + "description": "pineapple", + "aliases": [ + "pineapple" + ], + "tags": [], + "unicode": "🍍", + "htmlDec": "🍍", + "htmlHex": "🍍" + }, + { + "emojiChar": "🍠", + "emoji": "🍠", + "description": "roasted sweet potato", + "aliases": [ + "sweet_potato" + ], + "tags": [], + "unicode": "🍠", + "htmlDec": "🍠", + "htmlHex": "🍠" + }, + { + "emojiChar": "🍆", + "emoji": "🍆", + "description": "aubergine", + "aliases": [ + "eggplant" + ], + "tags": [ + "aubergine" + ], + "unicode": "🍆", + "htmlDec": "🍆", + "htmlHex": "🍆" + }, + { + "emojiChar": "🍅", + "emoji": "🍅", + "description": "tomato", + "aliases": [ + "tomato" + ], + "tags": [], + "unicode": "🍅", + "htmlDec": "🍅", + "htmlHex": "🍅" + }, + { + "emojiChar": "🌽", + "emoji": "🌽", + "description": "ear of maize", + "aliases": [ + "corn" + ], + "tags": [], + "unicode": "🌽", + "htmlDec": "🌽", + "htmlHex": "🌽" + }, + { + "emojiChar": "🏠", + "emoji": "🏠", + "description": "house building", + "aliases": [ + "house" + ], + "tags": [], + "unicode": "🏠", + "htmlDec": "🏠", + "htmlHex": "🏠" + }, + { + "emojiChar": "🏡", + "emoji": "🏡", + "description": "house with garden", + "aliases": [ + "house_with_garden" + ], + "tags": [], + "unicode": "🏡", + "htmlDec": "🏡", + "htmlHex": "🏡" + }, + { + "emojiChar": "🏫", + "emoji": "🏫", + "description": "school", + "aliases": [ + "school" + ], + "tags": [], + "unicode": "🏫", + "htmlDec": "🏫", + "htmlHex": "🏫" + }, + { + "emojiChar": "🏢", + "emoji": "🏢", + "description": "office building", + "aliases": [ + "office" + ], + "tags": [], + "unicode": "🏢", + "htmlDec": "🏢", + "htmlHex": "🏢" + }, + { + "emojiChar": "🏣", + "emoji": "🏣", + "description": "japanese post office", + "aliases": [ + "post_office" + ], + "tags": [], + "unicode": "🏣", + "htmlDec": "🏣", + "htmlHex": "🏣" + }, + { + "emojiChar": "🏥", + "emoji": "🏥", + "description": "hospital", + "aliases": [ + "hospital" + ], + "tags": [], + "unicode": "🏥", + "htmlDec": "🏥", + "htmlHex": "🏥" + }, + { + "emojiChar": "🏦", + "emoji": "🏦", + "description": "bank", + "aliases": [ + "bank" + ], + "tags": [], + "unicode": "🏦", + "htmlDec": "🏦", + "htmlHex": "🏦" + }, + { + "emojiChar": "🏪", + "emoji": "🏪", + "description": "convenience store", + "aliases": [ + "convenience_store" + ], + "tags": [], + "unicode": "🏪", + "htmlDec": "🏪", + "htmlHex": "🏪" + }, + { + "emojiChar": "🏩", + "emoji": "🏩", + "description": "love hotel", + "aliases": [ + "love_hotel" + ], + "tags": [], + "unicode": "🏩", + "htmlDec": "🏩", + "htmlHex": "🏩" + }, + { + "emojiChar": "🏨", + "emoji": "🏨", + "description": "hotel", + "aliases": [ + "hotel" + ], + "tags": [], + "unicode": "🏨", + "htmlDec": "🏨", + "htmlHex": "🏨" + }, + { + "emojiChar": "💒", + "emoji": "💒", + "description": "wedding", + "aliases": [ + "wedding" + ], + "tags": [ + "marriage" + ], + "unicode": "💒", + "htmlDec": "💒", + "htmlHex": "💒" + }, + { + "emojiChar": "⛪", + "emoji": "⛪", + "description": "church", + "aliases": [ + "church" + ], + "tags": [], + "unicode": "⛪", + "htmlDec": "⛪", + "htmlHex": "⛪" + }, + { + "emojiChar": "🏬", + "emoji": "🏬", + "description": "department store", + "aliases": [ + "department_store" + ], + "tags": [], + "unicode": "🏬", + "htmlDec": "🏬", + "htmlHex": "🏬" + }, + { + "emojiChar": "🏤", + "emoji": "🏤", + "description": "european post office", + "aliases": [ + "european_post_office" + ], + "tags": [], + "unicode": "🏤", + "htmlDec": "🏤", + "htmlHex": "🏤" + }, + { + "emojiChar": "🌇", + "emoji": "🌇", + "description": "sunset over buildings", + "aliases": [ + "city_sunrise" + ], + "tags": [], + "unicode": "🌇", + "htmlDec": "🌇", + "htmlHex": "🌇" + }, + { + "emojiChar": "🌆", + "emoji": "🌆", + "description": "cityscape at dusk", + "aliases": [ + "city_sunset" + ], + "tags": [], + "unicode": "🌆", + "htmlDec": "🌆", + "htmlHex": "🌆" + }, + { + "emojiChar": "🏯", + "emoji": "🏯", + "description": "japanese castle", + "aliases": [ + "japanese_castle" + ], + "tags": [], + "unicode": "🏯", + "htmlDec": "🏯", + "htmlHex": "🏯" + }, + { + "emojiChar": "🏰", + "emoji": "🏰", + "description": "european castle", + "aliases": [ + "european_castle" + ], + "tags": [], + "unicode": "🏰", + "htmlDec": "🏰", + "htmlHex": "🏰" + }, + { + "emojiChar": "⛺", + "emoji": "⛺", + "description": "tent", + "aliases": [ + "tent" + ], + "tags": [ + "camping" + ], + "unicode": "⛺", + "htmlDec": "⛺", + "htmlHex": "⛺" + }, + { + "emojiChar": "🏭", + "emoji": "🏭", + "description": "factory", + "aliases": [ + "factory" + ], + "tags": [], + "unicode": "🏭", + "htmlDec": "🏭", + "htmlHex": "🏭" + }, + { + "emojiChar": "🗼", + "emoji": "🗼", + "description": "tokyo tower", + "aliases": [ + "tokyo_tower" + ], + "tags": [], + "unicode": "🗼", + "htmlDec": "🗼", + "htmlHex": "🗼" + }, + { + "emojiChar": "🗾", + "emoji": "🗾", + "description": "silhouette of japan", + "aliases": [ + "japan" + ], + "tags": [], + "unicode": "🗾", + "htmlDec": "🗾", + "htmlHex": "🗾" + }, + { + "emojiChar": "🗻", + "emoji": "🗻", + "description": "mount fuji", + "aliases": [ + "mount_fuji" + ], + "tags": [], + "unicode": "🗻", + "htmlDec": "🗻", + "htmlHex": "🗻" + }, + { + "emojiChar": "🌄", + "emoji": "🌄", + "description": "sunrise over mountains", + "aliases": [ + "sunrise_over_mountains" + ], + "tags": [], + "unicode": "🌄", + "htmlDec": "🌄", + "htmlHex": "🌄" + }, + { + "emojiChar": "🌅", + "emoji": "🌅", + "description": "sunrise", + "aliases": [ + "sunrise" + ], + "tags": [], + "unicode": "🌅", + "htmlDec": "🌅", + "htmlHex": "🌅" + }, + { + "emojiChar": "🌃", + "emoji": "🌃", + "description": "night with stars", + "aliases": [ + "night_with_stars" + ], + "tags": [], + "unicode": "🌃", + "htmlDec": "🌃", + "htmlHex": "🌃" + }, + { + "emojiChar": "🗽", + "emoji": "🗽", + "description": "statue of liberty", + "aliases": [ + "statue_of_liberty" + ], + "tags": [], + "unicode": "🗽", + "htmlDec": "🗽", + "htmlHex": "🗽" + }, + { + "emojiChar": "🌉", + "emoji": "🌉", + "description": "bridge at night", + "aliases": [ + "bridge_at_night" + ], + "tags": [], + "unicode": "🌉", + "htmlDec": "🌉", + "htmlHex": "🌉" + }, + { + "emojiChar": "🎠", + "emoji": "🎠", + "description": "carousel horse", + "aliases": [ + "carousel_horse" + ], + "tags": [], + "unicode": "🎠", + "htmlDec": "🎠", + "htmlHex": "🎠" + }, + { + "emojiChar": "🎡", + "emoji": "🎡", + "description": "ferris wheel", + "aliases": [ + "ferris_wheel" + ], + "tags": [], + "unicode": "🎡", + "htmlDec": "🎡", + "htmlHex": "🎡" + }, + { + "emojiChar": "⛲", + "emoji": "⛲", + "description": "fountain", + "aliases": [ + "fountain" + ], + "tags": [], + "unicode": "⛲", + "htmlDec": "⛲", + "htmlHex": "⛲" + }, + { + "emojiChar": "🎢", + "emoji": "🎢", + "description": "roller coaster", + "aliases": [ + "roller_coaster" + ], + "tags": [], + "unicode": "🎢", + "htmlDec": "🎢", + "htmlHex": "🎢" + }, + { + "emojiChar": "🚢", + "emoji": "🚢", + "description": "ship", + "aliases": [ + "ship" + ], + "tags": [], + "unicode": "🚢", + "htmlDec": "🚢", + "htmlHex": "🚢" + }, + { + "emojiChar": "⛵", + "emoji": "⛵", + "description": "sailboat", + "aliases": [ + "boat", + "sailboat" + ], + "tags": [], + "unicode": "⛵", + "htmlDec": "⛵", + "htmlHex": "⛵" + }, + { + "emojiChar": "🚤", + "emoji": "🚤", + "description": "speedboat", + "aliases": [ + "speedboat" + ], + "tags": [ + "ship" + ], + "unicode": "🚤", + "htmlDec": "🚤", + "htmlHex": "🚤" + }, + { + "emojiChar": "🚣", + "emoji": "🚣", + "description": "rowboat", + "supports_fitzpatrick": true, + "aliases": [ + "rowboat" + ], + "tags": [], + "unicode": "🚣", + "htmlDec": "🚣", + "htmlHex": "🚣" + }, + { + "emojiChar": "⚓", + "emoji": "⚓", + "description": "anchor", + "aliases": [ + "anchor" + ], + "tags": [ + "ship" + ], + "unicode": "⚓", + "htmlDec": "⚓", + "htmlHex": "⚓" + }, + { + "emojiChar": "🚀", + "emoji": "🚀", + "description": "rocket", + "aliases": [ + "rocket" + ], + "tags": [ + "ship", + "launch" + ], + "unicode": "🚀", + "htmlDec": "🚀", + "htmlHex": "🚀" + }, + { + "emojiChar": "✈", + "emoji": "✈", + "description": "airplane", + "aliases": [ + "airplane" + ], + "tags": [ + "flight" + ], + "unicode": "✈", + "htmlDec": "✈", + "htmlHex": "✈" + }, + { + "emojiChar": "💺", + "emoji": "💺", + "description": "seat", + "aliases": [ + "seat" + ], + "tags": [], + "unicode": "💺", + "htmlDec": "💺", + "htmlHex": "💺" + }, + { + "emojiChar": "🚁", + "emoji": "🚁", + "description": "helicopter", + "aliases": [ + "helicopter" + ], + "tags": [], + "unicode": "🚁", + "htmlDec": "🚁", + "htmlHex": "🚁" + }, + { + "emojiChar": "🚂", + "emoji": "🚂", + "description": "steam locomotive", + "aliases": [ + "steam_locomotive" + ], + "tags": [ + "train" + ], + "unicode": "🚂", + "htmlDec": "🚂", + "htmlHex": "🚂" + }, + { + "emojiChar": "🚊", + "emoji": "🚊", + "description": "tram", + "aliases": [ + "tram" + ], + "tags": [], + "unicode": "🚊", + "htmlDec": "🚊", + "htmlHex": "🚊" + }, + { + "emojiChar": "🚉", + "emoji": "🚉", + "description": "station", + "aliases": [ + "station" + ], + "tags": [], + "unicode": "🚉", + "htmlDec": "🚉", + "htmlHex": "🚉" + }, + { + "emojiChar": "🚞", + "emoji": "🚞", + "description": "mountain railway", + "aliases": [ + "mountain_railway" + ], + "tags": [], + "unicode": "🚞", + "htmlDec": "🚞", + "htmlHex": "🚞" + }, + { + "emojiChar": "🚆", + "emoji": "🚆", + "description": "train", + "aliases": [ + "train2" + ], + "tags": [], + "unicode": "🚆", + "htmlDec": "🚆", + "htmlHex": "🚆" + }, + { + "emojiChar": "🚄", + "emoji": "🚄", + "description": "high-speed train", + "aliases": [ + "bullettrain_side" + ], + "tags": [ + "train" + ], + "unicode": "🚄", + "htmlDec": "🚄", + "htmlHex": "🚄" + }, + { + "emojiChar": "🚅", + "emoji": "🚅", + "description": "high-speed train with bullet nose", + "aliases": [ + "bullettrain_front" + ], + "tags": [ + "train" + ], + "unicode": "🚅", + "htmlDec": "🚅", + "htmlHex": "🚅" + }, + { + "emojiChar": "🚈", + "emoji": "🚈", + "description": "light rail", + "aliases": [ + "light_rail" + ], + "tags": [], + "unicode": "🚈", + "htmlDec": "🚈", + "htmlHex": "🚈" + }, + { + "emojiChar": "🚇", + "emoji": "🚇", + "description": "metro", + "aliases": [ + "metro" + ], + "tags": [], + "unicode": "🚇", + "htmlDec": "🚇", + "htmlHex": "🚇" + }, + { + "emojiChar": "🚝", + "emoji": "🚝", + "description": "monorail", + "aliases": [ + "monorail" + ], + "tags": [], + "unicode": "🚝", + "htmlDec": "🚝", + "htmlHex": "🚝" + }, + { + "emojiChar": "🚋", + "emoji": "🚋", + "description": "tram car", + "aliases": [ + "train" + ], + "tags": [], + "unicode": "🚋", + "htmlDec": "🚋", + "htmlHex": "🚋" + }, + { + "emojiChar": "🚃", + "emoji": "🚃", + "description": "railway car", + "aliases": [ + "railway_car" + ], + "tags": [], + "unicode": "🚃", + "htmlDec": "🚃", + "htmlHex": "🚃" + }, + { + "emojiChar": "🚎", + "emoji": "🚎", + "description": "trolleybus", + "aliases": [ + "trolleybus" + ], + "tags": [], + "unicode": "🚎", + "htmlDec": "🚎", + "htmlHex": "🚎" + }, + { + "emojiChar": "🚌", + "emoji": "🚌", + "description": "bus", + "aliases": [ + "bus" + ], + "tags": [], + "unicode": "🚌", + "htmlDec": "🚌", + "htmlHex": "🚌" + }, + { + "emojiChar": "🚍", + "emoji": "🚍", + "description": "oncoming bus", + "aliases": [ + "oncoming_bus" + ], + "tags": [], + "unicode": "🚍", + "htmlDec": "🚍", + "htmlHex": "🚍" + }, + { + "emojiChar": "🚙", + "emoji": "🚙", + "description": "recreational vehicle", + "aliases": [ + "blue_car" + ], + "tags": [], + "unicode": "🚙", + "htmlDec": "🚙", + "htmlHex": "🚙" + }, + { + "emojiChar": "🚘", + "emoji": "🚘", + "description": "oncoming automobile", + "aliases": [ + "oncoming_automobile" + ], + "tags": [], + "unicode": "🚘", + "htmlDec": "🚘", + "htmlHex": "🚘" + }, + { + "emojiChar": "🚗", + "emoji": "🚗", + "description": "automobile", + "aliases": [ + "car", + "red_car" + ], + "tags": [], + "unicode": "🚗", + "htmlDec": "🚗", + "htmlHex": "🚗" + }, + { + "emojiChar": "🚕", + "emoji": "🚕", + "description": "taxi", + "aliases": [ + "taxi" + ], + "tags": [], + "unicode": "🚕", + "htmlDec": "🚕", + "htmlHex": "🚕" + }, + { + "emojiChar": "🚖", + "emoji": "🚖", + "description": "oncoming taxi", + "aliases": [ + "oncoming_taxi" + ], + "tags": [], + "unicode": "🚖", + "htmlDec": "🚖", + "htmlHex": "🚖" + }, + { + "emojiChar": "🚛", + "emoji": "🚛", + "description": "articulated lorry", + "aliases": [ + "articulated_lorry" + ], + "tags": [], + "unicode": "🚛", + "htmlDec": "🚛", + "htmlHex": "🚛" + }, + { + "emojiChar": "🚚", + "emoji": "🚚", + "description": "delivery truck", + "aliases": [ + "truck" + ], + "tags": [], + "unicode": "🚚", + "htmlDec": "🚚", + "htmlHex": "🚚" + }, + { + "emojiChar": "🚨", + "emoji": "🚨", + "description": "police cars revolving light", + "aliases": [ + "rotating_light" + ], + "tags": [ + "911", + "emergency" + ], + "unicode": "🚨", + "htmlDec": "🚨", + "htmlHex": "🚨" + }, + { + "emojiChar": "🚓", + "emoji": "🚓", + "description": "police car", + "aliases": [ + "police_car" + ], + "tags": [], + "unicode": "🚓", + "htmlDec": "🚓", + "htmlHex": "🚓" + }, + { + "emojiChar": "🚔", + "emoji": "🚔", + "description": "oncoming police car", + "aliases": [ + "oncoming_police_car" + ], + "tags": [], + "unicode": "🚔", + "htmlDec": "🚔", + "htmlHex": "🚔" + }, + { + "emojiChar": "🚒", + "emoji": "🚒", + "description": "fire engine", + "aliases": [ + "fire_engine" + ], + "tags": [], + "unicode": "🚒", + "htmlDec": "🚒", + "htmlHex": "🚒" + }, + { + "emojiChar": "🚑", + "emoji": "🚑", + "description": "ambulance", + "aliases": [ + "ambulance" + ], + "tags": [], + "unicode": "🚑", + "htmlDec": "🚑", + "htmlHex": "🚑" + }, + { + "emojiChar": "🚐", + "emoji": "🚐", + "description": "minibus", + "aliases": [ + "minibus" + ], + "tags": [], + "unicode": "🚐", + "htmlDec": "🚐", + "htmlHex": "🚐" + }, + { + "emojiChar": "🚲", + "emoji": "🚲", + "description": "bicycle", + "aliases": [ + "bike" + ], + "tags": [ + "bicycle" + ], + "unicode": "🚲", + "htmlDec": "🚲", + "htmlHex": "🚲" + }, + { + "emojiChar": "🚡", + "emoji": "🚡", + "description": "aerial tramway", + "aliases": [ + "aerial_tramway" + ], + "tags": [], + "unicode": "🚡", + "htmlDec": "🚡", + "htmlHex": "🚡" + }, + { + "emojiChar": "🚟", + "emoji": "🚟", + "description": "suspension railway", + "aliases": [ + "suspension_railway" + ], + "tags": [], + "unicode": "🚟", + "htmlDec": "🚟", + "htmlHex": "🚟" + }, + { + "emojiChar": "🚠", + "emoji": "🚠", + "description": "mountain cableway", + "aliases": [ + "mountain_cableway" + ], + "tags": [], + "unicode": "🚠", + "htmlDec": "🚠", + "htmlHex": "🚠" + }, + { + "emojiChar": "🚜", + "emoji": "🚜", + "description": "tractor", + "aliases": [ + "tractor" + ], + "tags": [], + "unicode": "🚜", + "htmlDec": "🚜", + "htmlHex": "🚜" + }, + { + "emojiChar": "💈", + "emoji": "💈", + "description": "barber pole", + "aliases": [ + "barber" + ], + "tags": [], + "unicode": "💈", + "htmlDec": "💈", + "htmlHex": "💈" + }, + { + "emojiChar": "🚏", + "emoji": "🚏", + "description": "bus stop", + "aliases": [ + "busstop" + ], + "tags": [], + "unicode": "🚏", + "htmlDec": "🚏", + "htmlHex": "🚏" + }, + { + "emojiChar": "🎫", + "emoji": "🎫", + "description": "ticket", + "aliases": [ + "ticket" + ], + "tags": [], + "unicode": "🎫", + "htmlDec": "🎫", + "htmlHex": "🎫" + }, + { + "emojiChar": "🚦", + "emoji": "🚦", + "description": "vertical traffic light", + "aliases": [ + "vertical_traffic_light" + ], + "tags": [ + "semaphore" + ], + "unicode": "🚦", + "htmlDec": "🚦", + "htmlHex": "🚦" + }, + { + "emojiChar": "🚥", + "emoji": "🚥", + "description": "horizontal traffic light", + "aliases": [ + "traffic_light" + ], + "tags": [], + "unicode": "🚥", + "htmlDec": "🚥", + "htmlHex": "🚥" + }, + { + "emojiChar": "⚠", + "emoji": "⚠", + "description": "warning sign", + "aliases": [ + "warning" + ], + "tags": [ + "wip" + ], + "unicode": "⚠", + "htmlDec": "⚠", + "htmlHex": "⚠" + }, + { + "emojiChar": "🚧", + "emoji": "🚧", + "description": "construction sign", + "aliases": [ + "construction" + ], + "tags": [ + "wip" + ], + "unicode": "🚧", + "htmlDec": "🚧", + "htmlHex": "🚧" + }, + { + "emojiChar": "🔰", + "emoji": "🔰", + "description": "japanese symbol for beginner", + "aliases": [ + "beginner" + ], + "tags": [], + "unicode": "🔰", + "htmlDec": "🔰", + "htmlHex": "🔰" + }, + { + "emojiChar": "⛽", + "emoji": "⛽", + "description": "fuel pump", + "aliases": [ + "fuelpump" + ], + "tags": [], + "unicode": "⛽", + "htmlDec": "⛽", + "htmlHex": "⛽" + }, + { + "emojiChar": "🏮", + "emoji": "🏮", + "description": "izakaya lantern", + "aliases": [ + "izakaya_lantern", + "lantern" + ], + "tags": [], + "unicode": "🏮", + "htmlDec": "🏮", + "htmlHex": "🏮" + }, + { + "emojiChar": "🎰", + "emoji": "🎰", + "description": "slot machine", + "aliases": [ + "slot_machine" + ], + "tags": [], + "unicode": "🎰", + "htmlDec": "🎰", + "htmlHex": "🎰" + }, + { + "emojiChar": "♨", + "emoji": "♨", + "description": "hot springs", + "aliases": [ + "hotsprings" + ], + "tags": [], + "unicode": "♨", + "htmlDec": "♨", + "htmlHex": "♨" + }, + { + "emojiChar": "🗿", + "emoji": "🗿", + "description": "moyai", + "aliases": [ + "moyai" + ], + "tags": [ + "stone" + ], + "unicode": "🗿", + "htmlDec": "🗿", + "htmlHex": "🗿" + }, + { + "emojiChar": "🎪", + "emoji": "🎪", + "description": "circus tent", + "aliases": [ + "circus_tent" + ], + "tags": [], + "unicode": "🎪", + "htmlDec": "🎪", + "htmlHex": "🎪" + }, + { + "emojiChar": "🎭", + "emoji": "🎭", + "description": "performing arts", + "aliases": [ + "performing_arts" + ], + "tags": [ + "theater", + "drama" + ], + "unicode": "🎭", + "htmlDec": "🎭", + "htmlHex": "🎭" + }, + { + "emojiChar": "📍", + "emoji": "📍", + "description": "round pushpin", + "aliases": [ + "round_pushpin" + ], + "tags": [ + "location" + ], + "unicode": "📍", + "htmlDec": "📍", + "htmlHex": "📍" + }, + { + "emojiChar": "🚩", + "emoji": "🚩", + "description": "triangular flag on post", + "aliases": [ + "triangular_flag_on_post" + ], + "tags": [], + "unicode": "🚩", + "htmlDec": "🚩", + "htmlHex": "🚩" + }, + { + "emojiChar": "1⃣", + "emoji": "1⃣", + "description": "digit one + combining enclosing keycap", + "aliases": [ + "one" + ], + "tags": [], + "unicode": "1⃣", + "htmlDec": "1⃣", + "htmlHex": "1⃣" + }, + { + "emojiChar": "2⃣", + "emoji": "2⃣", + "description": "digit two + combining enclosing keycap", + "aliases": [ + "two" + ], + "tags": [], + "unicode": "2⃣", + "htmlDec": "2⃣", + "htmlHex": "2⃣" + }, + { + "emojiChar": "3⃣", + "emoji": "3⃣", + "description": "digit three + combining enclosing keycap", + "aliases": [ + "three" + ], + "tags": [], + "unicode": "3⃣", + "htmlDec": "3⃣", + "htmlHex": "3⃣" + }, + { + "emojiChar": "4⃣", + "emoji": "4⃣", + "description": "digit four + combining enclosing keycap", + "aliases": [ + "four" + ], + "tags": [], + "unicode": "4⃣", + "htmlDec": "4⃣", + "htmlHex": "4⃣" + }, + { + "emojiChar": "5⃣", + "emoji": "5⃣", + "description": "digit five + combining enclosing keycap", + "aliases": [ + "five" + ], + "tags": [], + "unicode": "5⃣", + "htmlDec": "5⃣", + "htmlHex": "5⃣" + }, + { + "emojiChar": "6⃣", + "emoji": "6⃣", + "description": "digit six + combining enclosing keycap", + "aliases": [ + "six" + ], + "tags": [], + "unicode": "6⃣", + "htmlDec": "6⃣", + "htmlHex": "6⃣" + }, + { + "emojiChar": "7⃣", + "emoji": "7⃣", + "description": "digit seven + combining enclosing keycap", + "aliases": [ + "seven" + ], + "tags": [], + "unicode": "7⃣", + "htmlDec": "7⃣", + "htmlHex": "7⃣" + }, + { + "emojiChar": "8⃣", + "emoji": "8⃣", + "description": "digit eight + combining enclosing keycap", + "aliases": [ + "eight" + ], + "tags": [], + "unicode": "8⃣", + "htmlDec": "8⃣", + "htmlHex": "8⃣" + }, + { + "emojiChar": "9⃣", + "emoji": "9⃣", + "description": "digit nine + combining enclosing keycap", + "aliases": [ + "nine" + ], + "tags": [], + "unicode": "9⃣", + "htmlDec": "9⃣", + "htmlHex": "9⃣" + }, + { + "emojiChar": "0⃣", + "emoji": "0⃣", + "description": "digit zero + combining enclosing keycap", + "aliases": [ + "zero" + ], + "tags": [], + "unicode": "0⃣", + "htmlDec": "0⃣", + "htmlHex": "0⃣" + }, + { + "emojiChar": "🔟", + "emoji": "🔟", + "description": "keycap ten", + "aliases": [ + "keycap_ten" + ], + "tags": [], + "unicode": "🔟", + "htmlDec": "🔟", + "htmlHex": "🔟" + }, + { + "emojiChar": "🔢", + "emoji": "🔢", + "description": "input symbol for numbers", + "aliases": [ + "1234" + ], + "tags": [ + "numbers" + ], + "unicode": "🔢", + "htmlDec": "🔢", + "htmlHex": "🔢" + }, + { + "emojiChar": "#⃣", + "emoji": "#⃣", + "description": "number sign + combining enclosing keycap", + "aliases": [ + "hash" + ], + "tags": [ + "number" + ], + "unicode": "#⃣", + "htmlDec": "#⃣", + "htmlHex": "#⃣" + }, + { + "emojiChar": "🔣", + "emoji": "🔣", + "description": "input symbol for symbols", + "aliases": [ + "symbols" + ], + "tags": [], + "unicode": "🔣", + "htmlDec": "🔣", + "htmlHex": "🔣" + }, + { + "emojiChar": "⬆", + "emoji": "⬆", + "description": "upwards black arrow", + "aliases": [ + "arrow_up" + ], + "tags": [], + "unicode": "⬆", + "htmlDec": "⬆", + "htmlHex": "⬆" + }, + { + "emojiChar": "⬇", + "emoji": "⬇", + "description": "downwards black arrow", + "aliases": [ + "arrow_down" + ], + "tags": [], + "unicode": "⬇", + "htmlDec": "⬇", + "htmlHex": "⬇" + }, + { + "emojiChar": "⬅", + "emoji": "⬅", + "description": "leftwards black arrow", + "aliases": [ + "arrow_left" + ], + "tags": [], + "unicode": "⬅", + "htmlDec": "⬅", + "htmlHex": "⬅" + }, + { + "emojiChar": "➡", + "emoji": "➡", + "description": "black rightwards arrow", + "aliases": [ + "arrow_right" + ], + "tags": [], + "unicode": "➡", + "htmlDec": "➡", + "htmlHex": "➡" + }, + { + "emojiChar": "🔠", + "emoji": "🔠", + "description": "input symbol for latin capital letters", + "aliases": [ + "capital_abcd" + ], + "tags": [ + "letters" + ], + "unicode": "🔠", + "htmlDec": "🔠", + "htmlHex": "🔠" + }, + { + "emojiChar": "🔡", + "emoji": "🔡", + "description": "input symbol for latin small letters", + "aliases": [ + "abcd" + ], + "tags": [], + "unicode": "🔡", + "htmlDec": "🔡", + "htmlHex": "🔡" + }, + { + "emojiChar": "🔤", + "emoji": "🔤", + "description": "input symbol for latin letters", + "aliases": [ + "abc" + ], + "tags": [ + "alphabet" + ], + "unicode": "🔤", + "htmlDec": "🔤", + "htmlHex": "🔤" + }, + { + "emojiChar": "↗", + "emoji": "↗", + "description": "north east arrow", + "aliases": [ + "arrow_upper_right" + ], + "tags": [], + "unicode": "↗", + "htmlDec": "↗", + "htmlHex": "↗" + }, + { + "emojiChar": "↖", + "emoji": "↖", + "description": "north west arrow", + "aliases": [ + "arrow_upper_left" + ], + "tags": [], + "unicode": "↖", + "htmlDec": "↖", + "htmlHex": "↖" + }, + { + "emojiChar": "↘", + "emoji": "↘", + "description": "south east arrow", + "aliases": [ + "arrow_lower_right" + ], + "tags": [], + "unicode": "↘", + "htmlDec": "↘", + "htmlHex": "↘" + }, + { + "emojiChar": "↙", + "emoji": "↙", + "description": "south west arrow", + "aliases": [ + "arrow_lower_left" + ], + "tags": [], + "unicode": "↙", + "htmlDec": "↙", + "htmlHex": "↙" + }, + { + "emojiChar": "↔", + "emoji": "↔", + "description": "left right arrow", + "aliases": [ + "left_right_arrow" + ], + "tags": [], + "unicode": "↔", + "htmlDec": "↔", + "htmlHex": "↔" + }, + { + "emojiChar": "↕", + "emoji": "↕", + "description": "up down arrow", + "aliases": [ + "arrow_up_down" + ], + "tags": [], + "unicode": "↕", + "htmlDec": "↕", + "htmlHex": "↕" + }, + { + "emojiChar": "🔄", + "emoji": "🔄", + "description": "anticlockwise downwards and upwards open circle arrows", + "aliases": [ + "arrows_counterclockwise" + ], + "tags": [ + "sync" + ], + "unicode": "🔄", + "htmlDec": "🔄", + "htmlHex": "🔄" + }, + { + "emojiChar": "◀", + "emoji": "◀", + "description": "black left-pointing triangle", + "aliases": [ + "arrow_backward" + ], + "tags": [], + "unicode": "◀", + "htmlDec": "◀", + "htmlHex": "◀" + }, + { + "emojiChar": "▶", + "emoji": "▶", + "description": "black right-pointing triangle", + "aliases": [ + "arrow_forward" + ], + "tags": [], + "unicode": "▶", + "htmlDec": "▶", + "htmlHex": "▶" + }, + { + "emojiChar": "🔼", + "emoji": "🔼", + "description": "up-pointing small red triangle", + "aliases": [ + "arrow_up_small" + ], + "tags": [], + "unicode": "🔼", + "htmlDec": "🔼", + "htmlHex": "🔼" + }, + { + "emojiChar": "🔽", + "emoji": "🔽", + "description": "down-pointing small red triangle", + "aliases": [ + "arrow_down_small" + ], + "tags": [], + "unicode": "🔽", + "htmlDec": "🔽", + "htmlHex": "🔽" + }, + { + "emojiChar": "↩", + "emoji": "↩", + "description": "leftwards arrow with hook", + "aliases": [ + "leftwards_arrow_with_hook" + ], + "tags": [ + "return" + ], + "unicode": "↩", + "htmlDec": "↩", + "htmlHex": "↩" + }, + { + "emojiChar": "↪", + "emoji": "↪", + "description": "rightwards arrow with hook", + "aliases": [ + "arrow_right_hook" + ], + "tags": [], + "unicode": "↪", + "htmlDec": "↪", + "htmlHex": "↪" + }, + { + "emojiChar": "ℹ", + "emoji": "ℹ", + "description": "information source", + "aliases": [ + "information_source" + ], + "tags": [], + "unicode": "ℹ", + "htmlDec": "ℹ", + "htmlHex": "ℹ" + }, + { + "emojiChar": "⏪", + "emoji": "⏪", + "description": "black left-pointing double triangle", + "aliases": [ + "rewind" + ], + "tags": [], + "unicode": "⏪", + "htmlDec": "⏪", + "htmlHex": "⏪" + }, + { + "emojiChar": "⏊", + "emoji": "⏊", + "description": "black right-pointing double triangle", + "aliases": [ + "fast_forward" + ], + "tags": [], + "unicode": "⏊", + "htmlDec": "⏩", + "htmlHex": "⏩" + }, + { + "emojiChar": "⏫", + "emoji": "⏫", + "description": "black up-pointing double triangle", + "aliases": [ + "arrow_double_up" + ], + "tags": [], + "unicode": "⏫", + "htmlDec": "⏫", + "htmlHex": "⏫" + }, + { + "emojiChar": "⏬", + "emoji": "⏬", + "description": "black down-pointing double triangle", + "aliases": [ + "arrow_double_down" + ], + "tags": [], + "unicode": "⏬", + "htmlDec": "⏬", + "htmlHex": "⏬" + }, + { + "emojiChar": "⤾", + "emoji": "⤾", + "description": "arrow pointing rightwards then curving downwards", + "aliases": [ + "arrow_heading_down" + ], + "tags": [], + "unicode": "⤾", + "htmlDec": "⤵", + "htmlHex": "⤵" + }, + { + "emojiChar": "⤴", + "emoji": "⤴", + "description": "arrow pointing rightwards then curving upwards", + "aliases": [ + "arrow_heading_up" + ], + "tags": [], + "unicode": "⤴", + "htmlDec": "⤴", + "htmlHex": "⤴" + }, + { + "emojiChar": "🆗", + "emoji": "🆗", + "description": "squared ok", + "aliases": [ + "ok" + ], + "tags": [ + "yes" + ], + "unicode": "🆗", + "htmlDec": "🆗", + "htmlHex": "🆗" + }, + { + "emojiChar": "🔀", + "emoji": "🔀", + "description": "twisted rightwards arrows", + "aliases": [ + "twisted_rightwards_arrows" + ], + "tags": [ + "shuffle" + ], + "unicode": "🔀", + "htmlDec": "🔀", + "htmlHex": "🔀" + }, + { + "emojiChar": "🔁", + "emoji": "🔁", + "description": "clockwise rightwards and leftwards open circle arrows", + "aliases": [ + "repeat" + ], + "tags": [ + "loop" + ], + "unicode": "🔁", + "htmlDec": "🔁", + "htmlHex": "🔁" + }, + { + "emojiChar": "🔂", + "emoji": "🔂", + "description": "clockwise rightwards and leftwards open circle arrows with circled one overlay", + "aliases": [ + "repeat_one" + ], + "tags": [], + "unicode": "🔂", + "htmlDec": "🔂", + "htmlHex": "🔂" + }, + { + "emojiChar": "🆕", + "emoji": "🆕", + "description": "squared new", + "aliases": [ + "new" + ], + "tags": [ + "fresh" + ], + "unicode": "🆕", + "htmlDec": "🆕", + "htmlHex": "🆕" + }, + { + "emojiChar": "🆙", + "emoji": "🆙", + "description": "squared up with exclamation mark", + "aliases": [ + "up" + ], + "tags": [], + "unicode": "🆙", + "htmlDec": "🆙", + "htmlHex": "🆙" + }, + { + "emojiChar": "🆒", + "emoji": "🆒", + "description": "squared cool", + "aliases": [ + "cool" + ], + "tags": [], + "unicode": "🆒", + "htmlDec": "🆒", + "htmlHex": "🆒" + }, + { + "emojiChar": "🆓", + "emoji": "🆓", + "description": "squared free", + "aliases": [ + "free" + ], + "tags": [], + "unicode": "🆓", + "htmlDec": "🆓", + "htmlHex": "🆓" + }, + { + "emojiChar": "🆖", + "emoji": "🆖", + "description": "squared ng", + "aliases": [ + "squared_ng" + ], + "tags": [], + "unicode": "🆖", + "htmlDec": "🆖", + "htmlHex": "🆖" + }, + { + "emojiChar": "📶", + "emoji": "📶", + "description": "antenna with bars", + "aliases": [ + "signal_strength" + ], + "tags": [ + "wifi" + ], + "unicode": "📶", + "htmlDec": "📶", + "htmlHex": "📶" + }, + { + "emojiChar": "🎦", + "emoji": "🎦", + "description": "cinema", + "aliases": [ + "cinema" + ], + "tags": [ + "film", + "movie" + ], + "unicode": "🎦", + "htmlDec": "🎦", + "htmlHex": "🎦" + }, + { + "emojiChar": "🈁", + "emoji": "🈁", + "description": "squared katakana koko", + "aliases": [ + "koko" + ], + "tags": [], + "unicode": "🈁", + "htmlDec": "🈁", + "htmlHex": "🈁" + }, + { + "emojiChar": "🈯", + "emoji": "🈯", + "description": "squared cjk unified ideograph-6307", + "aliases": [ + "u6307" + ], + "tags": [], + "unicode": "🈯", + "htmlDec": "🈯", + "htmlHex": "🈯" + }, + { + "emojiChar": "🈳", + "emoji": "🈳", + "description": "squared cjk unified ideograph-7a7a", + "aliases": [ + "u7a7a" + ], + "tags": [], + "unicode": "🈳", + "htmlDec": "🈳", + "htmlHex": "🈳" + }, + { + "emojiChar": "🈵", + "emoji": "🈵", + "description": "squared cjk unified ideograph-6e80", + "aliases": [ + "u6e80" + ], + "tags": [], + "unicode": "🈵", + "htmlDec": "🈵", + "htmlHex": "🈵" + }, + { + "emojiChar": "🈴", + "emoji": "🈴", + "description": "squared cjk unified ideograph-5408", + "aliases": [ + "u5408" + ], + "tags": [], + "unicode": "🈴", + "htmlDec": "🈴", + "htmlHex": "🈴" + }, + { + "emojiChar": "🈲", + "emoji": "🈲", + "description": "squared cjk unified ideograph-7981", + "aliases": [ + "u7981" + ], + "tags": [], + "unicode": "🈲", + "htmlDec": "🈲", + "htmlHex": "🈲" + }, + { + "emojiChar": "🉐", + "emoji": "🉐", + "description": "circled ideograph advantage", + "aliases": [ + "ideograph_advantage" + ], + "tags": [], + "unicode": "🉐", + "htmlDec": "🉐", + "htmlHex": "🉐" + }, + { + "emojiChar": "🈹", + "emoji": "🈹", + "description": "squared cjk unified ideograph-5272", + "aliases": [ + "u5272" + ], + "tags": [], + "unicode": "🈹", + "htmlDec": "🈹", + "htmlHex": "🈹" + }, + { + "emojiChar": "🈺", + "emoji": "🈺", + "description": "squared cjk unified ideograph-55b6", + "aliases": [ + "u55b6" + ], + "tags": [], + "unicode": "🈺", + "htmlDec": "🈺", + "htmlHex": "🈺" + }, + { + "emojiChar": "🈶", + "emoji": "🈶", + "description": "squared cjk unified ideograph-6709", + "aliases": [ + "u6709" + ], + "tags": [], + "unicode": "🈶", + "htmlDec": "🈶", + "htmlHex": "🈶" + }, + { + "emojiChar": "🈚", + "emoji": "🈚", + "description": "squared cjk unified ideograph-7121", + "aliases": [ + "u7121" + ], + "tags": [], + "unicode": "🈚", + "htmlDec": "🈚", + "htmlHex": "🈚" + }, + { + "emojiChar": "🚻", + "emoji": "🚻", + "description": "restroom", + "aliases": [ + "restroom" + ], + "tags": [ + "toilet" + ], + "unicode": "🚻", + "htmlDec": "🚻", + "htmlHex": "🚻" + }, + { + "emojiChar": "🚹", + "emoji": "🚹", + "description": "mens symbol", + "aliases": [ + "mens" + ], + "tags": [], + "unicode": "🚹", + "htmlDec": "🚹", + "htmlHex": "🚹" + }, + { + "emojiChar": "🚺", + "emoji": "🚺", + "description": "womens symbol", + "aliases": [ + "womens" + ], + "tags": [], + "unicode": "🚺", + "htmlDec": "🚺", + "htmlHex": "🚺" + }, + { + "emojiChar": "🚼", + "emoji": "🚼", + "description": "baby symbol", + "aliases": [ + "baby_symbol" + ], + "tags": [], + "unicode": "🚼", + "htmlDec": "🚼", + "htmlHex": "🚼" + }, + { + "emojiChar": "🚾", + "emoji": "🚾", + "description": "water closet", + "aliases": [ + "wc" + ], + "tags": [ + "toilet", + "restroom" + ], + "unicode": "🚾", + "htmlDec": "🚾", + "htmlHex": "🚾" + }, + { + "emojiChar": "🚰", + "emoji": "🚰", + "description": "potable water symbol", + "aliases": [ + "potable_water" + ], + "tags": [], + "unicode": "🚰", + "htmlDec": "🚰", + "htmlHex": "🚰" + }, + { + "emojiChar": "🚮", + "emoji": "🚮", + "description": "put litter in its place symbol", + "aliases": [ + "put_litter_in_its_place" + ], + "tags": [], + "unicode": "🚮", + "htmlDec": "🚮", + "htmlHex": "🚮" + }, + { + "emojiChar": "🅿", + "emoji": "🅿", + "description": "negative squared latin capital letter p", + "aliases": [ + "parking" + ], + "tags": [], + "unicode": "🅿", + "htmlDec": "🅿", + "htmlHex": "🅿" + }, + { + "emojiChar": "♿", + "emoji": "♿", + "description": "wheelchair symbol", + "aliases": [ + "wheelchair" + ], + "tags": [ + "accessibility" + ], + "unicode": "♿", + "htmlDec": "♿", + "htmlHex": "♿" + }, + { + "emojiChar": "🚭", + "emoji": "🚭", + "description": "no smoking symbol", + "aliases": [ + "no_smoking" + ], + "tags": [], + "unicode": "🚭", + "htmlDec": "🚭", + "htmlHex": "🚭" + }, + { + "emojiChar": "🈷", + "emoji": "🈷", + "description": "squared cjk unified ideograph-6708", + "aliases": [ + "u6708" + ], + "tags": [], + "unicode": "🈷", + "htmlDec": "🈷", + "htmlHex": "🈷" + }, + { + "emojiChar": "🈸", + "emoji": "🈸", + "description": "squared cjk unified ideograph-7533", + "aliases": [ + "u7533" + ], + "tags": [], + "unicode": "🈸", + "htmlDec": "🈸", + "htmlHex": "🈸" + }, + { + "emojiChar": "🈂", + "emoji": "🈂", + "description": "squared katakana sa", + "aliases": [ + "sa" + ], + "tags": [], + "unicode": "🈂", + "htmlDec": "🈂", + "htmlHex": "🈂" + }, + { + "emojiChar": "Ⓜ", + "emoji": "Ⓜ", + "description": "circled latin capital letter m", + "aliases": [ + "m" + ], + "tags": [], + "unicode": "Ⓜ", + "htmlDec": "Ⓜ", + "htmlHex": "Ⓜ" + }, + { + "emojiChar": "🛂", + "emoji": "🛂", + "description": "passport control", + "aliases": [ + "passport_control" + ], + "tags": [], + "unicode": "🛂", + "htmlDec": "🛂", + "htmlHex": "🛂" + }, + { + "emojiChar": "🛄", + "emoji": "🛄", + "description": "baggage claim", + "aliases": [ + "baggage_claim" + ], + "tags": [ + "airport" + ], + "unicode": "🛄", + "htmlDec": "🛄", + "htmlHex": "🛄" + }, + { + "emojiChar": "🛅", + "emoji": "🛅", + "description": "left luggage", + "aliases": [ + "left_luggage" + ], + "tags": [], + "unicode": "🛅", + "htmlDec": "🛅", + "htmlHex": "🛅" + }, + { + "emojiChar": "🛃", + "emoji": "🛃", + "description": "customs", + "aliases": [ + "customs" + ], + "tags": [], + "unicode": "🛃", + "htmlDec": "🛃", + "htmlHex": "🛃" + }, + { + "emojiChar": "🉑", + "emoji": "🉑", + "description": "circled ideograph accept", + "aliases": [ + "accept" + ], + "tags": [], + "unicode": "🉑", + "htmlDec": "🉑", + "htmlHex": "🉑" + }, + { + "emojiChar": "㊙", + "emoji": "㊙", + "description": "circled ideograph secret", + "aliases": [ + "secret" + ], + "tags": [], + "unicode": "㊙", + "htmlDec": "㊙", + "htmlHex": "㊙" + }, + { + "emojiChar": "㊗", + "emoji": "㊗", + "description": "circled ideograph congratulation", + "aliases": [ + "congratulations" + ], + "tags": [], + "unicode": "㊗", + "htmlDec": "㊗", + "htmlHex": "㊗" + }, + { + "emojiChar": "🆑", + "emoji": "🆑", + "description": "squared cl", + "aliases": [ + "cl" + ], + "tags": [], + "unicode": "🆑", + "htmlDec": "🆑", + "htmlHex": "🆑" + }, + { + "emojiChar": "🆘", + "emoji": "🆘", + "description": "squared sos", + "aliases": [ + "sos" + ], + "tags": [ + "help", + "emergency" + ], + "unicode": "🆘", + "htmlDec": "🆘", + "htmlHex": "🆘" + }, + { + "emojiChar": "🆔", + "emoji": "🆔", + "description": "squared id", + "aliases": [ + "id" + ], + "tags": [], + "unicode": "🆔", + "htmlDec": "🆔", + "htmlHex": "🆔" + }, + { + "emojiChar": "🚫", + "emoji": "🚫", + "description": "no entry sign", + "aliases": [ + "no_entry_sign" + ], + "tags": [ + "block", + "forbidden" + ], + "unicode": "🚫", + "htmlDec": "🚫", + "htmlHex": "🚫" + }, + { + "emojiChar": "🔞", + "emoji": "🔞", + "description": "no one under eighteen symbol", + "aliases": [ + "underage" + ], + "tags": [], + "unicode": "🔞", + "htmlDec": "🔞", + "htmlHex": "🔞" + }, + { + "emojiChar": "📵", + "emoji": "📵", + "description": "no mobile phones", + "aliases": [ + "no_mobile_phones" + ], + "tags": [], + "unicode": "📵", + "htmlDec": "📵", + "htmlHex": "📵" + }, + { + "emojiChar": "🚯", + "emoji": "🚯", + "description": "do not litter symbol", + "aliases": [ + "do_not_litter" + ], + "tags": [], + "unicode": "🚯", + "htmlDec": "🚯", + "htmlHex": "🚯" + }, + { + "emojiChar": "🚱", + "emoji": "🚱", + "description": "non-potable water symbol", + "aliases": [ + "non-potable_water" + ], + "tags": [], + "unicode": "🚱", + "htmlDec": "🚱", + "htmlHex": "🚱" + }, + { + "emojiChar": "🚳", + "emoji": "🚳", + "description": "no bicycles", + "aliases": [ + "no_bicycles" + ], + "tags": [], + "unicode": "🚳", + "htmlDec": "🚳", + "htmlHex": "🚳" + }, + { + "emojiChar": "🚷", + "emoji": "🚷", + "description": "no pedestrians", + "aliases": [ + "no_pedestrians" + ], + "tags": [], + "unicode": "🚷", + "htmlDec": "🚷", + "htmlHex": "🚷" + }, + { + "emojiChar": "🚸", + "emoji": "🚸", + "description": "children crossing", + "aliases": [ + "children_crossing" + ], + "tags": [], + "unicode": "🚸", + "htmlDec": "🚸", + "htmlHex": "🚸" + }, + { + "emojiChar": "⛔", + "emoji": "⛔", + "description": "no entry", + "aliases": [ + "no_entry" + ], + "tags": [ + "limit" + ], + "unicode": "⛔", + "htmlDec": "⛔", + "htmlHex": "⛔" + }, + { + "emojiChar": "✳", + "emoji": "✳", + "description": "eight spoked asterisk", + "aliases": [ + "eight_spoked_asterisk" + ], + "tags": [], + "unicode": "✳", + "htmlDec": "✳", + "htmlHex": "✳" + }, + { + "emojiChar": "❇", + "emoji": "❇", + "description": "sparkle", + "aliases": [ + "sparkle" + ], + "tags": [], + "unicode": "❇", + "htmlDec": "❇", + "htmlHex": "❇" + }, + { + "emojiChar": "❎", + "emoji": "❎", + "description": "negative squared cross mark", + "aliases": [ + "negative_squared_cross_mark" + ], + "tags": [], + "unicode": "❎", + "htmlDec": "❎", + "htmlHex": "❎" + }, + { + "emojiChar": "✅", + "emoji": "✅", + "description": "white heavy check mark", + "aliases": [ + "white_check_mark" + ], + "tags": [], + "unicode": "✅", + "htmlDec": "✅", + "htmlHex": "✅" + }, + { + "emojiChar": "✴", + "emoji": "✴", + "description": "eight pointed black star", + "aliases": [ + "eight_pointed_black_star" + ], + "tags": [], + "unicode": "✴", + "htmlDec": "✴", + "htmlHex": "✴" + }, + { + "emojiChar": "💟", + "emoji": "💟", + "description": "heart decoration", + "aliases": [ + "heart_decoration" + ], + "tags": [], + "unicode": "💟", + "htmlDec": "💟", + "htmlHex": "💟" + }, + { + "emojiChar": "🆚", + "emoji": "🆚", + "description": "squared vs", + "aliases": [ + "vs" + ], + "tags": [], + "unicode": "🆚", + "htmlDec": "🆚", + "htmlHex": "🆚" + }, + { + "emojiChar": "📳", + "emoji": "📳", + "description": "vibration mode", + "aliases": [ + "vibration_mode" + ], + "tags": [], + "unicode": "📳", + "htmlDec": "📳", + "htmlHex": "📳" + }, + { + "emojiChar": "📴", + "emoji": "📴", + "description": "mobile phone off", + "aliases": [ + "mobile_phone_off" + ], + "tags": [ + "mute", + "off" + ], + "unicode": "📴", + "htmlDec": "📴", + "htmlHex": "📴" + }, + { + "emojiChar": "🅰", + "emoji": "🅰", + "description": "negative squared latin capital letter a", + "aliases": [ + "a" + ], + "tags": [], + "unicode": "🅰", + "htmlDec": "🅰", + "htmlHex": "🅰" + }, + { + "emojiChar": "🅱", + "emoji": "🅱", + "description": "negative squared latin capital letter b", + "aliases": [ + "b" + ], + "tags": [], + "unicode": "🅱", + "htmlDec": "🅱", + "htmlHex": "🅱" + }, + { + "emojiChar": "🆎", + "emoji": "🆎", + "description": "negative squared ab", + "aliases": [ + "ab" + ], + "tags": [], + "unicode": "🆎", + "htmlDec": "🆎", + "htmlHex": "🆎" + }, + { + "emojiChar": "🅾", + "emoji": "🅾", + "description": "negative squared latin capital letter o", + "aliases": [ + "o2" + ], + "tags": [], + "unicode": "🅾", + "htmlDec": "🅾", + "htmlHex": "🅾" + }, + { + "emojiChar": "💠", + "emoji": "💠", + "description": "diamond shape with a dot inside", + "aliases": [ + "diamond_shape_with_a_dot_inside" + ], + "tags": [], + "unicode": "💠", + "htmlDec": "💠", + "htmlHex": "💠" + }, + { + "emojiChar": "➿", + "emoji": "➿", + "description": "double curly loop", + "aliases": [ + "loop" + ], + "tags": [], + "unicode": "➿", + "htmlDec": "➿", + "htmlHex": "➿" + }, + { + "emojiChar": "♻", + "emoji": "♻", + "description": "black universal recycling symbol", + "aliases": [ + "recycle" + ], + "tags": [ + "environment", + "green" + ], + "unicode": "♻", + "htmlDec": "♻", + "htmlHex": "♻" + }, + { + "emojiChar": "♈", + "emoji": "♈", + "description": "aries", + "aliases": [ + "aries" + ], + "tags": [], + "unicode": "♈", + "htmlDec": "♈", + "htmlHex": "♈" + }, + { + "emojiChar": "♉", + "emoji": "♉", + "description": "taurus", + "aliases": [ + "taurus" + ], + "tags": [], + "unicode": "♉", + "htmlDec": "♉", + "htmlHex": "♉" + }, + { + "emojiChar": "♊", + "emoji": "♊", + "description": "gemini", + "aliases": [ + "gemini" + ], + "tags": [], + "unicode": "♊", + "htmlDec": "♊", + "htmlHex": "♊" + }, + { + "emojiChar": "♋", + "emoji": "♋", + "description": "cancer", + "aliases": [ + "cancer" + ], + "tags": [], + "unicode": "♋", + "htmlDec": "♋", + "htmlHex": "♋" + }, + { + "emojiChar": "♌", + "emoji": "♌", + "description": "leo", + "aliases": [ + "leo" + ], + "tags": [], + "unicode": "♌", + "htmlDec": "♌", + "htmlHex": "♌" + }, + { + "emojiChar": "♍", + "emoji": "♍", + "description": "virgo", + "aliases": [ + "virgo" + ], + "tags": [], + "unicode": "♍", + "htmlDec": "♍", + "htmlHex": "♍" + }, + { + "emojiChar": "♎", + "emoji": "♎", + "description": "libra", + "aliases": [ + "libra" + ], + "tags": [], + "unicode": "♎", + "htmlDec": "♎", + "htmlHex": "♎" + }, + { + "emojiChar": "♏", + "emoji": "♏", + "description": "scorpius", + "aliases": [ + "scorpius" + ], + "tags": [], + "unicode": "♏", + "htmlDec": "♏", + "htmlHex": "♏" + }, + { + "emojiChar": "♐", + "emoji": "♐", + "description": "sagittarius", + "aliases": [ + "sagittarius" + ], + "tags": [], + "unicode": "♐", + "htmlDec": "♐", + "htmlHex": "♐" + }, + { + "emojiChar": "♑", + "emoji": "♑", + "description": "capricorn", + "aliases": [ + "capricorn" + ], + "tags": [], + "unicode": "♑", + "htmlDec": "♑", + "htmlHex": "♑" + }, + { + "emojiChar": "♒", + "emoji": "♒", + "description": "aquarius", + "aliases": [ + "aquarius" + ], + "tags": [], + "unicode": "♒", + "htmlDec": "♒", + "htmlHex": "♒" + }, + { + "emojiChar": "♓", + "emoji": "♓", + "description": "pisces", + "aliases": [ + "pisces" + ], + "tags": [], + "unicode": "♓", + "htmlDec": "♓", + "htmlHex": "♓" + }, + { + "emojiChar": "⛎", + "emoji": "⛎", + "description": "ophiuchus", + "aliases": [ + "ophiuchus" + ], + "tags": [], + "unicode": "⛎", + "htmlDec": "⛎", + "htmlHex": "⛎" + }, + { + "emojiChar": "🔯", + "emoji": "🔯", + "description": "six pointed star with middle dot", + "aliases": [ + "six_pointed_star" + ], + "tags": [], + "unicode": "🔯", + "htmlDec": "🔯", + "htmlHex": "🔯" + }, + { + "emojiChar": "🏧", + "emoji": "🏧", + "description": "automated teller machine", + "aliases": [ + "atm" + ], + "tags": [], + "unicode": "🏧", + "htmlDec": "🏧", + "htmlHex": "🏧" + }, + { + "emojiChar": "💹", + "emoji": "💹", + "description": "chart with upwards trend and yen sign", + "aliases": [ + "chart" + ], + "tags": [], + "unicode": "💹", + "htmlDec": "💹", + "htmlHex": "💹" + }, + { + "emojiChar": "💲", + "emoji": "💲", + "description": "heavy dollar sign", + "aliases": [ + "heavy_dollar_sign" + ], + "tags": [], + "unicode": "💲", + "htmlDec": "💲", + "htmlHex": "💲" + }, + { + "emojiChar": "💱", + "emoji": "💱", + "description": "currency exchange", + "aliases": [ + "currency_exchange" + ], + "tags": [], + "unicode": "💱", + "htmlDec": "💱", + "htmlHex": "💱" + }, + { + "emojiChar": "Š", + "emoji": "Š", + "description": "copyright sign", + "aliases": [ + "copyright" + ], + "tags": [], + "unicode": "Š", + "htmlDec": "©", + "htmlHex": "©" + }, + { + "emojiChar": "ÂŽ", + "emoji": "ÂŽ", + "description": "registered sign", + "aliases": [ + "registered" + ], + "tags": [], + "unicode": "ÂŽ", + "htmlDec": "®", + "htmlHex": "®" + }, + { + "emojiChar": "™", + "emoji": "™", + "description": "trade mark sign", + "aliases": [ + "tm" + ], + "tags": [ + "trademark" + ], + "unicode": "™", + "htmlDec": "™", + "htmlHex": "™" + }, + { + "emojiChar": "❌", + "emoji": "❌", + "description": "cross mark", + "aliases": [ + "x" + ], + "tags": [], + "unicode": "❌", + "htmlDec": "❌", + "htmlHex": "❌" + }, + { + "emojiChar": "‼", + "emoji": "‼", + "description": "double exclamation mark", + "aliases": [ + "bangbang" + ], + "tags": [], + "unicode": "‼", + "htmlDec": "‼", + "htmlHex": "‼" + }, + { + "emojiChar": "⁉", + "emoji": "⁉", + "description": "exclamation question mark", + "aliases": [ + "interrobang" + ], + "tags": [], + "unicode": "⁉", + "htmlDec": "⁉", + "htmlHex": "⁉" + }, + { + "emojiChar": "❗", + "emoji": "❗", + "description": "heavy exclamation mark symbol", + "aliases": [ + "exclamation", + "heavy_exclamation_mark" + ], + "tags": [ + "bang" + ], + "unicode": "❗", + "htmlDec": "❗", + "htmlHex": "❗" + }, + { + "emojiChar": "❓", + "emoji": "❓", + "description": "black question mark ornament", + "aliases": [ + "question" + ], + "tags": [ + "confused" + ], + "unicode": "❓", + "htmlDec": "❓", + "htmlHex": "❓" + }, + { + "emojiChar": "❕", + "emoji": "❕", + "description": "white exclamation mark ornament", + "aliases": [ + "grey_exclamation" + ], + "tags": [], + "unicode": "❕", + "htmlDec": "❕", + "htmlHex": "❕" + }, + { + "emojiChar": "❔", + "emoji": "❔", + "description": "white question mark ornament", + "aliases": [ + "grey_question" + ], + "tags": [], + "unicode": "❔", + "htmlDec": "❔", + "htmlHex": "❔" + }, + { + "emojiChar": "⭕", + "emoji": "⭕", + "description": "heavy large circle", + "aliases": [ + "o" + ], + "tags": [], + "unicode": "⭕", + "htmlDec": "⭕", + "htmlHex": "⭕" + }, + { + "emojiChar": "🔝", + "emoji": "🔝", + "description": "top with upwards arrow above", + "aliases": [ + "top" + ], + "tags": [], + "unicode": "🔝", + "htmlDec": "🔝", + "htmlHex": "🔝" + }, + { + "emojiChar": "🔚", + "emoji": "🔚", + "description": "end with leftwards arrow above", + "aliases": [ + "end" + ], + "tags": [], + "unicode": "🔚", + "htmlDec": "🔚", + "htmlHex": "🔚" + }, + { + "emojiChar": "🔙", + "emoji": "🔙", + "description": "back with leftwards arrow above", + "aliases": [ + "back" + ], + "tags": [], + "unicode": "🔙", + "htmlDec": "🔙", + "htmlHex": "🔙" + }, + { + "emojiChar": "🔛", + "emoji": "🔛", + "description": "on with exclamation mark with left right arrow above", + "aliases": [ + "on" + ], + "tags": [], + "unicode": "🔛", + "htmlDec": "🔛", + "htmlHex": "🔛" + }, + { + "emojiChar": "🔜", + "emoji": "🔜", + "description": "soon with rightwards arrow above", + "aliases": [ + "soon" + ], + "tags": [], + "unicode": "🔜", + "htmlDec": "🔜", + "htmlHex": "🔜" + }, + { + "emojiChar": "🔃", + "emoji": "🔃", + "description": "clockwise downwards and upwards open circle arrows", + "aliases": [ + "arrows_clockwise" + ], + "tags": [], + "unicode": "🔃", + "htmlDec": "🔃", + "htmlHex": "🔃" + }, + { + "emojiChar": "🕛", + "emoji": "🕛", + "description": "clock face twelve oclock", + "aliases": [ + "clock12" + ], + "tags": [], + "unicode": "🕛", + "htmlDec": "🕛", + "htmlHex": "🕛" + }, + { + "emojiChar": "🕧", + "emoji": "🕧", + "description": "clock face twelve-thirty", + "aliases": [ + "clock1230" + ], + "tags": [], + "unicode": "🕧", + "htmlDec": "🕧", + "htmlHex": "🕧" + }, + { + "emojiChar": "🕐", + "emoji": "🕐", + "description": "clock face one oclock", + "aliases": [ + "clock1" + ], + "tags": [], + "unicode": "🕐", + "htmlDec": "🕐", + "htmlHex": "🕐" + }, + { + "emojiChar": "🕜", + "emoji": "🕜", + "description": "clock face one-thirty", + "aliases": [ + "clock130" + ], + "tags": [], + "unicode": "🕜", + "htmlDec": "🕜", + "htmlHex": "🕜" + }, + { + "emojiChar": "🕑", + "emoji": "🕑", + "description": "clock face two oclock", + "aliases": [ + "clock2" + ], + "tags": [], + "unicode": "🕑", + "htmlDec": "🕑", + "htmlHex": "🕑" + }, + { + "emojiChar": "🕝", + "emoji": "🕝", + "description": "clock face two-thirty", + "aliases": [ + "clock230" + ], + "tags": [], + "unicode": "🕝", + "htmlDec": "🕝", + "htmlHex": "🕝" + }, + { + "emojiChar": "🕒", + "emoji": "🕒", + "description": "clock face three oclock", + "aliases": [ + "clock3" + ], + "tags": [], + "unicode": "🕒", + "htmlDec": "🕒", + "htmlHex": "🕒" + }, + { + "emojiChar": "🕞", + "emoji": "🕞", + "description": "clock face three-thirty", + "aliases": [ + "clock330" + ], + "tags": [], + "unicode": "🕞", + "htmlDec": "🕞", + "htmlHex": "🕞" + }, + { + "emojiChar": "🕓", + "emoji": "🕓", + "description": "clock face four oclock", + "aliases": [ + "clock4" + ], + "tags": [], + "unicode": "🕓", + "htmlDec": "🕓", + "htmlHex": "🕓" + }, + { + "emojiChar": "🕟", + "emoji": "🕟", + "description": "clock face four-thirty", + "aliases": [ + "clock430" + ], + "tags": [], + "unicode": "🕟", + "htmlDec": "🕟", + "htmlHex": "🕟" + }, + { + "emojiChar": "🕔", + "emoji": "🕔", + "description": "clock face five oclock", + "aliases": [ + "clock5" + ], + "tags": [], + "unicode": "🕔", + "htmlDec": "🕔", + "htmlHex": "🕔" + }, + { + "emojiChar": "🕠", + "emoji": "🕠", + "description": "clock face five-thirty", + "aliases": [ + "clock530" + ], + "tags": [], + "unicode": "🕠", + "htmlDec": "🕠", + "htmlHex": "🕠" + }, + { + "emojiChar": "🕕", + "emoji": "🕕", + "description": "clock face six oclock", + "aliases": [ + "clock6" + ], + "tags": [], + "unicode": "🕕", + "htmlDec": "🕕", + "htmlHex": "🕕" + }, + { + "emojiChar": "🕖", + "emoji": "🕖", + "description": "clock face seven oclock", + "aliases": [ + "clock7" + ], + "tags": [], + "unicode": "🕖", + "htmlDec": "🕖", + "htmlHex": "🕖" + }, + { + "emojiChar": "🕗", + "emoji": "🕗", + "description": "clock face eight oclock", + "aliases": [ + "clock8" + ], + "tags": [], + "unicode": "🕗", + "htmlDec": "🕗", + "htmlHex": "🕗" + }, + { + "emojiChar": "🕘", + "emoji": "🕘", + "description": "clock face nine oclock", + "aliases": [ + "clock9" + ], + "tags": [], + "unicode": "🕘", + "htmlDec": "🕘", + "htmlHex": "🕘" + }, + { + "emojiChar": "🕙", + "emoji": "🕙", + "description": "clock face ten oclock", + "aliases": [ + "clock10" + ], + "tags": [], + "unicode": "🕙", + "htmlDec": "🕙", + "htmlHex": "🕙" + }, + { + "emojiChar": "🕚", + "emoji": "🕚", + "description": "clock face eleven oclock", + "aliases": [ + "clock11" + ], + "tags": [], + "unicode": "🕚", + "htmlDec": "🕚", + "htmlHex": "🕚" + }, + { + "emojiChar": "🕡", + "emoji": "🕡", + "description": "clock face six-thirty", + "aliases": [ + "clock630" + ], + "tags": [], + "unicode": "🕡", + "htmlDec": "🕡", + "htmlHex": "🕡" + }, + { + "emojiChar": "🕢", + "emoji": "🕢", + "description": "clock face seven-thirty", + "aliases": [ + "clock730" + ], + "tags": [], + "unicode": "🕢", + "htmlDec": "🕢", + "htmlHex": "🕢" + }, + { + "emojiChar": "🕣", + "emoji": "🕣", + "description": "clock face eight-thirty", + "aliases": [ + "clock830" + ], + "tags": [], + "unicode": "🕣", + "htmlDec": "🕣", + "htmlHex": "🕣" + }, + { + "emojiChar": "🕤", + "emoji": "🕤", + "description": "clock face nine-thirty", + "aliases": [ + "clock930" + ], + "tags": [], + "unicode": "🕤", + "htmlDec": "🕤", + "htmlHex": "🕤" + }, + { + "emojiChar": "🕥", + "emoji": "🕥", + "description": "clock face ten-thirty", + "aliases": [ + "clock1030" + ], + "tags": [], + "unicode": "🕥", + "htmlDec": "🕥", + "htmlHex": "🕥" + }, + { + "emojiChar": "🕦", + "emoji": "🕦", + "description": "clock face eleven-thirty", + "aliases": [ + "clock1130" + ], + "tags": [], + "unicode": "🕦", + "htmlDec": "🕦", + "htmlHex": "🕦" + }, + { + "emojiChar": "✖", + "emoji": "✖", + "description": "heavy multiplication x", + "aliases": [ + "heavy_multiplication_x" + ], + "tags": [], + "unicode": "✖", + "htmlDec": "✖", + "htmlHex": "✖" + }, + { + "emojiChar": "➕", + "emoji": "➕", + "description": "heavy plus sign", + "aliases": [ + "heavy_plus_sign" + ], + "tags": [], + "unicode": "➕", + "htmlDec": "➕", + "htmlHex": "➕" + }, + { + "emojiChar": "➖", + "emoji": "➖", + "description": "heavy minus sign", + "aliases": [ + "heavy_minus_sign" + ], + "tags": [], + "unicode": "➖", + "htmlDec": "➖", + "htmlHex": "➖" + }, + { + "emojiChar": "➗", + "emoji": "➗", + "description": "heavy division sign", + "aliases": [ + "heavy_division_sign" + ], + "tags": [], + "unicode": "➗", + "htmlDec": "➗", + "htmlHex": "➗" + }, + { + "emojiChar": "♠", + "emoji": "♠", + "description": "black spade suit", + "aliases": [ + "spades" + ], + "tags": [], + "unicode": "♠", + "htmlDec": "♠", + "htmlHex": "♠" + }, + { + "emojiChar": "♥", + "emoji": "♥", + "description": "black heart suit", + "aliases": [ + "hearts" + ], + "tags": [], + "unicode": "♥", + "htmlDec": "♥", + "htmlHex": "♥" + }, + { + "emojiChar": "♣", + "emoji": "♣", + "description": "black club suit", + "aliases": [ + "clubs" + ], + "tags": [], + "unicode": "♣", + "htmlDec": "♣", + "htmlHex": "♣" + }, + { + "emojiChar": "♦", + "emoji": "♦", + "description": "black diamond suit", + "aliases": [ + "diamonds" + ], + "tags": [], + "unicode": "♦", + "htmlDec": "♦", + "htmlHex": "♦" + }, + { + "emojiChar": "💮", + "emoji": "💮", + "description": "white flower", + "aliases": [ + "white_flower" + ], + "tags": [], + "unicode": "💮", + "htmlDec": "💮", + "htmlHex": "💮" + }, + { + "emojiChar": "💯", + "emoji": "💯", + "description": "hundred points symbol", + "aliases": [ + "100" + ], + "tags": [ + "score", + "perfect" + ], + "unicode": "💯", + "htmlDec": "💯", + "htmlHex": "💯" + }, + { + "emojiChar": "✔", + "emoji": "✔", + "description": "heavy check mark", + "aliases": [ + "heavy_check_mark" + ], + "tags": [], + "unicode": "✔", + "htmlDec": "✔", + "htmlHex": "✔" + }, + { + "emojiChar": "☑", + "emoji": "☑", + "description": "ballot box with check", + "aliases": [ + "ballot_box_with_check" + ], + "tags": [], + "unicode": "☑", + "htmlDec": "☑", + "htmlHex": "☑" + }, + { + "emojiChar": "🔘", + "emoji": "🔘", + "description": "radio button", + "aliases": [ + "radio_button" + ], + "tags": [], + "unicode": "🔘", + "htmlDec": "🔘", + "htmlHex": "🔘" + }, + { + "emojiChar": "🔗", + "emoji": "🔗", + "description": "link symbol", + "aliases": [ + "link" + ], + "tags": [], + "unicode": "🔗", + "htmlDec": "🔗", + "htmlHex": "🔗" + }, + { + "emojiChar": "➰", + "emoji": "➰", + "description": "curly loop", + "aliases": [ + "curly_loop" + ], + "tags": [], + "unicode": "➰", + "htmlDec": "➰", + "htmlHex": "➰" + }, + { + "emojiChar": "〰", + "emoji": "〰", + "description": "wavy dash", + "aliases": [ + "wavy_dash" + ], + "tags": [], + "unicode": "〰", + "htmlDec": "〰", + "htmlHex": "〰" + }, + { + "emojiChar": "〽", + "emoji": "〽", + "description": "part alternation mark", + "aliases": [ + "part_alternation_mark" + ], + "tags": [], + "unicode": "〽", + "htmlDec": "〽", + "htmlHex": "〽" + }, + { + "emojiChar": "🔱", + "emoji": "🔱", + "description": "trident emblem", + "aliases": [ + "trident" + ], + "tags": [], + "unicode": "🔱", + "htmlDec": "🔱", + "htmlHex": "🔱" + }, + { + "emojiChar": "◼", + "emoji": "◼", + "description": "black medium square", + "aliases": [ + "black_medium_square" + ], + "tags": [], + "unicode": "◼", + "htmlDec": "◼", + "htmlHex": "◼" + }, + { + "emojiChar": "◻", + "emoji": "◻", + "description": "white medium square", + "aliases": [ + "white_medium_square" + ], + "tags": [], + "unicode": "◻", + "htmlDec": "◻", + "htmlHex": "◻" + }, + { + "emojiChar": "◾", + "emoji": "◾", + "description": "black medium small square", + "aliases": [ + "black_medium_small_square" + ], + "tags": [], + "unicode": "◾", + "htmlDec": "◾", + "htmlHex": "◾" + }, + { + "emojiChar": "◽", + "emoji": "◽", + "description": "white medium small square", + "aliases": [ + "white_medium_small_square" + ], + "tags": [], + "unicode": "◽", + "htmlDec": "◽", + "htmlHex": "◽" + }, + { + "emojiChar": "▪", + "emoji": "▪", + "description": "black small square", + "aliases": [ + "black_small_square" + ], + "tags": [], + "unicode": "▪", + "htmlDec": "▪", + "htmlHex": "▪" + }, + { + "emojiChar": "▫", + "emoji": "▫", + "description": "white small square", + "aliases": [ + "white_small_square" + ], + "tags": [], + "unicode": "▫", + "htmlDec": "▫", + "htmlHex": "▫" + }, + { + "emojiChar": "🔺", + "emoji": "🔺", + "description": "up-pointing red triangle", + "aliases": [ + "small_red_triangle" + ], + "tags": [], + "unicode": "🔺", + "htmlDec": "🔺", + "htmlHex": "🔺" + }, + { + "emojiChar": "🔲", + "emoji": "🔲", + "description": "black square button", + "aliases": [ + "black_square_button" + ], + "tags": [], + "unicode": "🔲", + "htmlDec": "🔲", + "htmlHex": "🔲" + }, + { + "emojiChar": "🔳", + "emoji": "🔳", + "description": "white square button", + "aliases": [ + "white_square_button" + ], + "tags": [], + "unicode": "🔳", + "htmlDec": "🔳", + "htmlHex": "🔳" + }, + { + "emojiChar": "⚫", + "emoji": "⚫", + "description": "medium black circle", + "aliases": [ + "black_circle" + ], + "tags": [], + "unicode": "⚫", + "htmlDec": "⚫", + "htmlHex": "⚫" + }, + { + "emojiChar": "⚪", + "emoji": "⚪", + "description": "medium white circle", + "aliases": [ + "white_circle" + ], + "tags": [], + "unicode": "⚪", + "htmlDec": "⚪", + "htmlHex": "⚪" + }, + { + "emojiChar": "🔴", + "emoji": "🔴", + "description": "large red circle", + "aliases": [ + "red_circle" + ], + "tags": [], + "unicode": "🔴", + "htmlDec": "🔴", + "htmlHex": "🔴" + }, + { + "emojiChar": "🔵", + "emoji": "🔵", + "description": "large blue circle", + "aliases": [ + "large_blue_circle" + ], + "tags": [], + "unicode": "🔵", + "htmlDec": "🔵", + "htmlHex": "🔵" + }, + { + "emojiChar": "🔻", + "emoji": "🔻", + "description": "down-pointing red triangle", + "aliases": [ + "small_red_triangle_down" + ], + "tags": [], + "unicode": "🔻", + "htmlDec": "🔻", + "htmlHex": "🔻" + }, + { + "emojiChar": "⬜", + "emoji": "⬜", + "description": "white large square", + "aliases": [ + "white_large_square" + ], + "tags": [], + "unicode": "⬜", + "htmlDec": "⬜", + "htmlHex": "⬜" + }, + { + "emojiChar": "⬛", + "emoji": "⬛", + "description": "black large square", + "aliases": [ + "black_large_square" + ], + "tags": [], + "unicode": "⬛", + "htmlDec": "⬛", + "htmlHex": "⬛" + }, + { + "emojiChar": "🔶", + "emoji": "🔶", + "description": "large orange diamond", + "aliases": [ + "large_orange_diamond" + ], + "tags": [], + "unicode": "🔶", + "htmlDec": "🔶", + "htmlHex": "🔶" + }, + { + "emojiChar": "🔷", + "emoji": "🔷", + "description": "large blue diamond", + "aliases": [ + "large_blue_diamond" + ], + "tags": [], + "unicode": "🔷", + "htmlDec": "🔷", + "htmlHex": "🔷" + }, + { + "emojiChar": "🔸", + "emoji": "🔸", + "description": "small orange diamond", + "aliases": [ + "small_orange_diamond" + ], + "tags": [], + "unicode": "🔸", + "htmlDec": "🔸", + "htmlHex": "🔸" + }, + { + "emojiChar": "🔹", + "emoji": "🔹", + "description": "small blue diamond", + "aliases": [ + "small_blue_diamond" + ], + "tags": [], + "unicode": "🔹", + "htmlDec": "🔹", + "htmlHex": "🔹" + }, + { + "emojiChar": "🇦", + "emoji": "🇦", + "description": "regional indicator symbol letter a", + "aliases": [ + "regional_indicator_symbol_a" + ], + "tags": [ + "letter", + "a" + ], + "unicode": "🇦", + "htmlDec": "🇦", + "htmlHex": "🇦" + }, + { + "emojiChar": "🇧", + "emoji": "🇧", + "description": "regional indicator symbol letter b", + "aliases": [ + "regional_indicator_symbol_b" + ], + "tags": [ + "letter", + "b" + ], + "unicode": "🇧", + "htmlDec": "🇧", + "htmlHex": "🇧" + }, + { + "emojiChar": "🇨", + "emoji": "🇨", + "description": "regional indicator symbol letter c", + "aliases": [ + "regional_indicator_symbol_c" + ], + "tags": [ + "letter", + "c" + ], + "unicode": "🇨", + "htmlDec": "🇨", + "htmlHex": "🇨" + }, + { + "emojiChar": "🇩", + "emoji": "🇩", + "description": "regional indicator symbol letter d", + "aliases": [ + "regional_indicator_symbol_d" + ], + "tags": [ + "letter", + "d" + ], + "unicode": "🇩", + "htmlDec": "🇩", + "htmlHex": "🇩" + }, + { + "emojiChar": "🇪", + "emoji": "🇪", + "description": "regional indicator symbol letter e", + "aliases": [ + "regional_indicator_symbol_e" + ], + "tags": [ + "letter", + "e" + ], + "unicode": "🇪", + "htmlDec": "🇪", + "htmlHex": "🇪" + }, + { + "emojiChar": "🇫", + "emoji": "🇫", + "description": "regional indicator symbol letter f", + "aliases": [ + "regional_indicator_symbol_f" + ], + "tags": [ + "letter", + "f" + ], + "unicode": "🇫", + "htmlDec": "🇫", + "htmlHex": "🇫" + }, + { + "emojiChar": "🇬", + "emoji": "🇬", + "description": "regional indicator symbol letter g", + "aliases": [ + "regional_indicator_symbol_g" + ], + "tags": [ + "letter", + "g" + ], + "unicode": "🇬", + "htmlDec": "🇬", + "htmlHex": "🇬" + }, + { + "emojiChar": "🇭", + "emoji": "🇭", + "description": "regional indicator symbol letter h", + "aliases": [ + "regional_indicator_symbol_h" + ], + "tags": [ + "letter", + "h" + ], + "unicode": "🇭", + "htmlDec": "🇭", + "htmlHex": "🇭" + }, + { + "emojiChar": "🇮", + "emoji": "🇮", + "description": "regional indicator symbol letter i", + "aliases": [ + "regional_indicator_symbol_i" + ], + "tags": [ + "letter", + "i" + ], + "unicode": "🇮", + "htmlDec": "🇮", + "htmlHex": "🇮" + }, + { + "emojiChar": "🇯", + "emoji": "🇯", + "description": "regional indicator symbol letter j", + "aliases": [ + "regional_indicator_symbol_j" + ], + "tags": [ + "letter", + "j" + ], + "unicode": "🇯", + "htmlDec": "🇯", + "htmlHex": "🇯" + }, + { + "emojiChar": "🇰", + "emoji": "🇰", + "description": "regional indicator symbol letter k", + "aliases": [ + "regional_indicator_symbol_k" + ], + "tags": [ + "letter", + "k" + ], + "unicode": "🇰", + "htmlDec": "🇰", + "htmlHex": "🇰" + }, + { + "emojiChar": "🇱", + "emoji": "🇱", + "description": "regional indicator symbol letter l", + "aliases": [ + "regional_indicator_symbol_l" + ], + "tags": [ + "letter", + "l" + ], + "unicode": "🇱", + "htmlDec": "🇱", + "htmlHex": "🇱" + }, + { + "emojiChar": "🇲", + "emoji": "🇲", + "description": "regional indicator symbol letter m", + "aliases": [ + "regional_indicator_symbol_m" + ], + "tags": [ + "letter", + "m" + ], + "unicode": "🇲", + "htmlDec": "🇲", + "htmlHex": "🇲" + }, + { + "emojiChar": "🇳", + "emoji": "🇳", + "description": "regional indicator symbol letter n", + "aliases": [ + "regional_indicator_symbol_n" + ], + "tags": [ + "letter", + "n" + ], + "unicode": "🇳", + "htmlDec": "🇳", + "htmlHex": "🇳" + }, + { + "emojiChar": "🇴", + "emoji": "🇴", + "description": "regional indicator symbol letter o", + "aliases": [ + "regional_indicator_symbol_o" + ], + "tags": [ + "letter", + "o" + ], + "unicode": "🇴", + "htmlDec": "🇴", + "htmlHex": "🇴" + }, + { + "emojiChar": "🇵", + "emoji": "🇵", + "description": "regional indicator symbol letter p", + "aliases": [ + "regional_indicator_symbol_p" + ], + "tags": [ + "letter", + "p" + ], + "unicode": "🇵", + "htmlDec": "🇵", + "htmlHex": "🇵" + }, + { + "emojiChar": "🇶", + "emoji": "🇶", + "description": "regional indicator symbol letter q", + "aliases": [ + "regional_indicator_symbol_q" + ], + "tags": [ + "letter", + "q" + ], + "unicode": "🇶", + "htmlDec": "🇶", + "htmlHex": "🇶" + }, + { + "emojiChar": "🇷", + "emoji": "🇷", + "description": "regional indicator symbol letter r", + "aliases": [ + "regional_indicator_symbol_r" + ], + "tags": [ + "letter", + "r" + ], + "unicode": "🇷", + "htmlDec": "🇷", + "htmlHex": "🇷" + }, + { + "emojiChar": "🇸", + "emoji": "🇸", + "description": "regional indicator symbol letter s", + "aliases": [ + "regional_indicator_symbol_s" + ], + "tags": [ + "letter", + "s" + ], + "unicode": "🇸", + "htmlDec": "🇸", + "htmlHex": "🇸" + }, + { + "emojiChar": "🇹", + "emoji": "🇹", + "description": "regional indicator symbol letter t", + "aliases": [ + "regional_indicator_symbol_t" + ], + "tags": [ + "letter", + "t" + ], + "unicode": "🇹", + "htmlDec": "🇹", + "htmlHex": "🇹" + }, + { + "emojiChar": "🇺", + "emoji": "🇺", + "description": "regional indicator symbol letter u", + "aliases": [ + "regional_indicator_symbol_u" + ], + "tags": [ + "letter", + "u" + ], + "unicode": "🇺", + "htmlDec": "🇺", + "htmlHex": "🇺" + }, + { + "emojiChar": "🇻", + "emoji": "🇻", + "description": "regional indicator symbol letter v", + "aliases": [ + "regional_indicator_symbol_v" + ], + "tags": [ + "letter", + "v" + ], + "unicode": "🇻", + "htmlDec": "🇻", + "htmlHex": "🇻" + }, + { + "emojiChar": "🇼", + "emoji": "🇼", + "description": "regional indicator symbol letter w", + "aliases": [ + "regional_indicator_symbol_w" + ], + "tags": [ + "letter", + "w" + ], + "unicode": "🇼", + "htmlDec": "🇼", + "htmlHex": "🇼" + }, + { + "emojiChar": "🇽", + "emoji": "🇽", + "description": "regional indicator symbol letter x", + "aliases": [ + "regional_indicator_symbol_x" + ], + "tags": [ + "letter", + "x" + ], + "unicode": "🇽", + "htmlDec": "🇽", + "htmlHex": "🇽" + }, + { + "emojiChar": "🇾", + "emoji": "🇾", + "description": "regional indicator symbol letter y", + "aliases": [ + "regional_indicator_symbol_y" + ], + "tags": [ + "letter", + "y" + ], + "unicode": "🇾", + "htmlDec": "🇾", + "htmlHex": "🇾" + }, + { + "emojiChar": "🇿", + "emoji": "🇿", + "description": "regional indicator symbol letter z", + "aliases": [ + "regional_indicator_symbol_z" + ], + "tags": [ + "letter", + "z" + ], + "unicode": "🇿", + "htmlDec": "🇿", + "htmlHex": "🇿" + }, + { + "emojiChar": "👨‍👩‍👦", + "emoji": "👨‍👩‍👦", + "description": "family (man, woman, boy)", + "aliases": [ + "family_man_woman_boy" + ], + "tags": [ + "family", + "man", + "woman", + "boy" + ], + "unicode": "👨‍👩‍👦", + "htmlDec": "👨‍👩‍👦", + "htmlHex": "👨‍👩‍👦" + }, + { + "emojiChar": "👨‍👩‍👧", + "emoji": "👨‍👩‍👧", + "description": "family (man, woman, girl)", + "aliases": [ + "family_man_woman_girl" + ], + "tags": [ + "family", + "man", + "woman", + "girl" + ], + "unicode": "👨‍👩‍👧", + "htmlDec": "👨‍👩‍👧", + "htmlHex": "👨‍👩‍👧" + }, + { + "emojiChar": "👨‍👩‍👦‍👦", + "emoji": "👨‍👩‍👦‍👦", + "description": "family (man, woman, boy, boy)", + "aliases": [ + "family_man_woman_boy_boy" + ], + "tags": [ + "family", + "man", + "woman", + "boy" + ], + "unicode": "👨‍👩‍👦‍👦", + "htmlDec": "👨‍👩‍👦‍👦", + "htmlHex": "👨‍👩‍👦‍👦" + }, + { + "emojiChar": "👨‍👩‍👧‍👧", + "emoji": "👨‍👩‍👧‍👧", + "description": "family (man, woman, girl, girl)", + "aliases": [ + "family_man_woman_girl_girl" + ], + "tags": [ + "family", + "man", + "woman", + "girl" + ], + "unicode": "👨‍👩‍👧‍👧", + "htmlDec": "👨‍👩‍👧‍👧", + "htmlHex": "👨‍👩‍👧‍👧" + }, + { + "emojiChar": "👨‍👩‍👧‍👦", + "emoji": "👨‍👩‍👧‍👦", + "description": "family (man, woman, girl, boy)", + "aliases": [ + "family_man_woman_girl_boy" + ], + "tags": [ + "family", + "man", + "woman", + "girl", + "boy" + ], + "unicode": "👨‍👩‍👧‍👦", + "htmlDec": "👨‍👩‍👧‍👦", + "htmlHex": "👨‍👩‍👧‍👦" + }, + { + "emojiChar": "👩‍👩‍👦", + "emoji": "👩‍👩‍👦", + "description": "family (woman, woman, boy)", + "aliases": [ + "family_woman_woman_boy" + ], + "tags": [ + "family", + "woman", + "boy" + ], + "unicode": "👩‍👩‍👦", + "htmlDec": "👩‍👩‍👦", + "htmlHex": "👩‍👩‍👦" + }, + { + "emojiChar": "👩‍👩‍👧", + "emoji": "👩‍👩‍👧", + "description": "family (woman, woman, girl)", + "aliases": [ + "family_woman_woman_girl" + ], + "tags": [ + "family", + "woman", + "girl" + ], + "unicode": "👩‍👩‍👧", + "htmlDec": "👩‍👩‍👧", + "htmlHex": "👩‍👩‍👧" + }, + { + "emojiChar": "👩‍👩‍👧‍👦", + "emoji": "👩‍👩‍👧‍👦", + "description": "family (woman, woman, girl, boy)", + "aliases": [ + "family_woman_woman_girl_boy" + ], + "tags": [ + "family", + "woman", + "girl", + "boy" + ], + "unicode": "👩‍👩‍👧‍👦", + "htmlDec": "👩‍👩‍👧‍👦", + "htmlHex": "👩‍👩‍👧‍👦" + }, + { + "emojiChar": "👩‍👩‍👦‍👦", + "emoji": "👩‍👩‍👦‍👦", + "description": "family (woman, woman, boy, boy)", + "aliases": [ + "family_woman_woman_boy_boy" + ], + "tags": [ + "family", + "woman", + "boy" + ], + "unicode": "👩‍👩‍👦‍👦", + "htmlDec": "👩‍👩‍👦‍👦", + "htmlHex": "👩‍👩‍👦‍👦" + }, + { + "emojiChar": "👩‍👩‍👧‍👧", + "emoji": "👩‍👩‍👧‍👧", + "description": "family (woman, woman, girl, girl)", + "aliases": [ + "family_woman_woman_girl_girl" + ], + "tags": [ + "family", + "woman", + "girl" + ], + "unicode": "👩‍👩‍👧‍👧", + "htmlDec": "👩‍👩‍👧‍👧", + "htmlHex": "👩‍👩‍👧‍👧" + }, + { + "emojiChar": "👨‍👨‍👦", + "emoji": "👨‍👨‍👦", + "description": "family (man, man, boy)", + "aliases": [ + "family_man_man_boy" + ], + "tags": [ + "family", + "man", + "boy" + ], + "unicode": "👨‍👨‍👦", + "htmlDec": "👨‍👨‍👦", + "htmlHex": "👨‍👨‍👦" + }, + { + "emojiChar": "👨‍👨‍👧", + "emoji": "👨‍👨‍👧", + "description": "family (man, man, girl)", + "aliases": [ + "family_man_man_girl" + ], + "tags": [ + "family", + "man", + "girl" + ], + "unicode": "👨‍👨‍👧", + "htmlDec": "👨‍👨‍👧", + "htmlHex": "👨‍👨‍👧" + }, + { + "emojiChar": "👨‍👨‍👧‍👦", + "emoji": "👨‍👨‍👧‍👦", + "description": "family (man, man, girl, boy)", + "aliases": [ + "family_man_man_girl_boy" + ], + "tags": [ + "family", + "man", + "girl", + "boy" + ], + "unicode": "👨‍👨‍👧‍👦", + "htmlDec": "👨‍👨‍👧‍👦", + "htmlHex": "👨‍👨‍👧‍👦" + }, + { + "emojiChar": "👨‍👨‍👦‍👦", + "emoji": "👨‍👨‍👦‍👦", + "description": "family (man, man, boy, boy)", + "aliases": [ + "family_man_man_boy_boy" + ], + "tags": [ + "family", + "man", + "boy" + ], + "unicode": "👨‍👨‍👦‍👦", + "htmlDec": "👨‍👨‍👦‍👦", + "htmlHex": "👨‍👨‍👦‍👦" + }, + { + "emojiChar": "👨‍👨‍👧‍👧", + "emoji": "👨‍👨‍👧‍👧", + "description": "family (man, man, girl, girl)", + "aliases": [ + "family_man_man_girl_girl" + ], + "tags": [ + "family", + "man", + "girl" + ], + "unicode": "👨‍👨‍👧‍👧", + "htmlDec": "👨‍👨‍👧‍👧", + "htmlHex": "👨‍👨‍👧‍👧" + }, + { + "emojiChar": "👩‍❤️‍👩", + "emoji": "👩‍❤️‍👩", + "description": "couple with heart (woman, woman)", + "aliases": [ + "couple_with_heart_woman_woman" + ], + "tags": [ + "couple", + "heart", + "woman" + ], + "unicode": "👩‍❤️‍👩", + "htmlDec": "👩‍❤️‍👩", + "htmlHex": "👩‍❤️‍👩" + }, + { + "emojiChar": "👨‍❤️‍👨", + "emoji": "👨‍❤️‍👨", + "description": "couple with heart (man, man)", + "aliases": [ + "couple_with_heart_man_man" + ], + "tags": [ + "couple", + "heart", + "man" + ], + "unicode": "👨‍❤️‍👨", + "htmlDec": "👨‍❤️‍👨", + "htmlHex": "👨‍❤️‍👨" + }, + { + "emojiChar": "👩‍❤️‍💋‍👩", + "emoji": "👩‍❤️‍💋‍👩", + "description": "kiss (woman, woman)", + "aliases": [ + "couplekiss_woman_woman" + ], + "tags": [ + "couple", + "kiss", + "woman" + ], + "unicode": "👩‍❤️‍💋‍👩", + "htmlDec": "👩‍❤️‍💋‍👩", + "htmlHex": "👩‍❤️‍💋‍👩" + }, + { + "emojiChar": "👨‍❤️‍💋‍👨", + "emoji": "👨‍❤️‍💋‍👨", + "description": "kiss (man, man)", + "aliases": [ + "couplekiss_man_man" + ], + "tags": [ + "couple", + "kiss", + "man" + ], + "unicode": "👨‍❤️‍💋‍👨", + "htmlDec": "👨‍❤️‍💋‍👨", + "htmlHex": "👨‍❤️‍💋‍👨" + }, + { + "emojiChar": "🖖", + "emoji": "🖖", + "description": "raised hand with part between middle and ring fingers", + "supports_fitzpatrick": true, + "aliases": [ + "vulcan_salute" + ], + "tags": [ + "vulcan", + "salute" + ], + "unicode": "🖖", + "htmlDec": "🖖", + "htmlHex": "🖖" + }, + { + "emojiChar": "🖕", + "emoji": "🖕", + "description": "reversed hand with middle finger extended", + "supports_fitzpatrick": true, + "aliases": [ + "middle_finger" + ], + "tags": [], + "unicode": "🖕", + "htmlDec": "🖕", + "htmlHex": "🖕" + }, + { + "emojiChar": "🙂", + "emoji": "🙂", + "description": "slightly smiling face", + "aliases": [ + "slightly_smiling", + "slight_smile" + ], + "tags": [], + "unicode": "🙂", + "htmlDec": "🙂", + "htmlHex": "🙂" + }, + { + "emojiChar": "🤗", + "emoji": "🤗", + "description": "hugging face", + "aliases": [ + "hugging", + "hug", + "hugs" + ], + "tags": [], + "unicode": "🤗", + "htmlDec": "🤗", + "htmlHex": "🤗" + }, + { + "emojiChar": "🤔", + "emoji": "🤔", + "description": "thinking face", + "aliases": [ + "thinking", + "think", + "thinker" + ], + "tags": [], + "unicode": "🤔", + "htmlDec": "🤔", + "htmlHex": "🤔" + }, + { + "emojiChar": "🙄", + "emoji": "🙄", + "description": "face with rolling eyes", + "aliases": [ + "eye_roll", + "rolling_eyes" + ], + "tags": [], + "unicode": "🙄", + "htmlDec": "🙄", + "htmlHex": "🙄" + }, + { + "emojiChar": "🤐", + "emoji": "🤐", + "description": "zipper-mouth face", + "aliases": [ + "zipper_mouth", + "zip_it", + "sealed_lips", + "lips_sealed" + ], + "tags": [], + "unicode": "🤐", + "htmlDec": "🤐", + "htmlHex": "🤐" + }, + { + "emojiChar": "🤓", + "emoji": "🤓", + "description": "nerd face", + "aliases": [ + "nerd", + "nerdy" + ], + "tags": [], + "unicode": "🤓", + "htmlDec": "🤓", + "htmlHex": "🤓" + }, + { + "emojiChar": "☚", + "emoji": "☚", + "description": "white frowning face", + "aliases": [ + "frowning_face" + ], + "tags": [], + "unicode": "☚", + "htmlDec": "☹", + "htmlHex": "☹" + }, + { + "emojiChar": "🙁", + "emoji": "🙁", + "description": "slightly frowning face", + "aliases": [ + "slightly_frowning" + ], + "tags": [], + "unicode": "🙁", + "htmlDec": "🙁", + "htmlHex": "🙁" + }, + { + "emojiChar": "🙃", + "emoji": "🙃", + "description": "upside-down face", + "aliases": [ + "upside_down", + "flipped_face" + ], + "tags": [], + "unicode": "🙃", + "htmlDec": "🙃", + "htmlHex": "🙃" + }, + { + "emojiChar": "🤒", + "emoji": "🤒", + "description": "face with thermometer", + "aliases": [ + "sick", + "ill", + "thermometer_face" + ], + "tags": [], + "unicode": "🤒", + "htmlDec": "🤒", + "htmlHex": "🤒" + }, + { + "emojiChar": "🤕", + "emoji": "🤕", + "description": "face with head bandage", + "aliases": [ + "injured", + "head_bandage", + "head_bandaged", + "bandaged" + ], + "tags": [], + "unicode": "🤕", + "htmlDec": "🤕", + "htmlHex": "🤕" + }, + { + "emojiChar": "🤑", + "emoji": "🤑", + "description": "money-mouth face", + "aliases": [ + "money_mouth", + "money_face" + ], + "tags": [], + "unicode": "🤑", + "htmlDec": "🤑", + "htmlHex": "🤑" + }, + { + "emojiChar": "⛑", + "emoji": "⛑", + "description": "helmet with white crosse", + "aliases": [ + "helmet_white_cross" + ], + "tags": [], + "unicode": "⛑", + "htmlDec": "⛑", + "htmlHex": "⛑" + }, + { + "emojiChar": "🕵", + "emoji": "🕵", + "description": "sleuth or spy", + "supports_fitzpatrick": true, + "aliases": [ + "detective", + "sleuth", + "private_eye", + "spy" + ], + "tags": [], + "unicode": "🕵", + "htmlDec": "🕵", + "htmlHex": "🕵" + }, + { + "emojiChar": "🗣", + "emoji": "🗣", + "description": "speaking head in silhouette", + "aliases": [ + "speaking_head_in_silhouette" + ], + "tags": [], + "unicode": "🗣", + "htmlDec": "🗣", + "htmlHex": "🗣" + }, + { + "emojiChar": "🕴", + "emoji": "🕴", + "description": "man in business suit levitating", + "supports_fitzpatrick": true, + "aliases": [ + "hovering_man", + "levitating_man" + ], + "tags": [], + "unicode": "🕴", + "htmlDec": "🕴", + "htmlHex": "🕴" + }, + { + "emojiChar": "🤘", + "emoji": "🤘", + "description": "sign of the horns", + "supports_fitzpatrick": true, + "aliases": [ + "horns_sign", + "rock_on", + "heavy_metal", + "devil_fingers" + ], + "tags": [], + "unicode": "🤘", + "htmlDec": "🤘", + "htmlHex": "🤘" + }, + { + "emojiChar": "🖐", + "emoji": "🖐", + "description": "raised hand with five fingers splayed", + "supports_fitzpatrick": true, + "aliases": [ + "raised_hand_with_fingers_splayed", + "splayed_hand" + ], + "tags": [], + "unicode": "🖐", + "htmlDec": "🖐", + "htmlHex": "🖐" + }, + { + "emojiChar": "✍", + "emoji": "✍", + "description": "writing hand", + "supports_fitzpatrick": true, + "aliases": [ + "writing", + "writing_hand" + ], + "tags": [], + "unicode": "✍", + "htmlDec": "✍", + "htmlHex": "✍" + }, + { + "emojiChar": "👁", + "emoji": "👁", + "description": "eye", + "aliases": [ + "eye" + ], + "tags": [], + "unicode": "👁", + "htmlDec": "👁", + "htmlHex": "👁" + }, + { + "emojiChar": "❣", + "emoji": "❣", + "description": "heavy heart exclamation mark ornament", + "aliases": [ + "exclamation_heart" + ], + "tags": [], + "unicode": "❣", + "htmlDec": "❣", + "htmlHex": "❣" + }, + { + "emojiChar": "🕳", + "emoji": "🕳", + "description": "hole", + "aliases": [ + "hole" + ], + "tags": [], + "unicode": "🕳", + "htmlDec": "🕳", + "htmlHex": "🕳" + }, + { + "emojiChar": "🗯", + "emoji": "🗯", + "description": "right anger bubble", + "aliases": [ + "right_anger_bubble", + "zig_zag_bubble" + ], + "tags": [], + "unicode": "🗯", + "htmlDec": "🗯", + "htmlHex": "🗯" + }, + { + "emojiChar": "🕶", + "emoji": "🕶", + "description": "dark sunglasses", + "aliases": [ + "dark_sunglasses" + ], + "tags": [], + "unicode": "🕶", + "htmlDec": "🕶", + "htmlHex": "🕶" + }, + { + "emojiChar": "🛍", + "emoji": "🛍", + "description": "shopping bags", + "aliases": [ + "shopping_bags" + ], + "tags": [], + "unicode": "🛍", + "htmlDec": "🛍", + "htmlHex": "🛍" + }, + { + "emojiChar": "📿", + "emoji": "📿", + "description": "prayer beads", + "aliases": [ + "prayer_beads", + "dhikr_beads", + "rosary_beads" + ], + "tags": [], + "unicode": "📿", + "htmlDec": "📿", + "htmlHex": "📿" + }, + { + "emojiChar": "☠", + "emoji": "☠", + "description": "skull and crossbones", + "aliases": [ + "skull_crossbones" + ], + "tags": [], + "unicode": "☠", + "htmlDec": "☠", + "htmlHex": "☠" + }, + { + "emojiChar": "🤖", + "emoji": "🤖", + "description": "robot face", + "aliases": [ + "robot_face", + "bot_face" + ], + "tags": [], + "unicode": "🤖", + "htmlDec": "🤖", + "htmlHex": "🤖" + }, + { + "emojiChar": "🦁", + "emoji": "🦁", + "description": "lion face", + "aliases": [ + "lion_face", + "cute_lion", + "timid_lion" + ], + "tags": [], + "unicode": "🦁", + "htmlDec": "🦁", + "htmlHex": "🦁" + }, + { + "emojiChar": "🦄", + "emoji": "🦄", + "description": "unicorn face", + "aliases": [ + "unicorn_face" + ], + "tags": [], + "unicode": "🦄", + "htmlDec": "🦄", + "htmlHex": "🦄" + }, + { + "emojiChar": "🐿", + "emoji": "🐿", + "description": "chipmunk", + "aliases": [ + "chipmunk", + "squirrel" + ], + "tags": [], + "unicode": "🐿", + "htmlDec": "🐿", + "htmlHex": "🐿" + }, + { + "emojiChar": "🦃", + "emoji": "🦃", + "description": "turkey", + "aliases": [ + "turkey" + ], + "tags": [], + "unicode": "🦃", + "htmlDec": "🦃", + "htmlHex": "🦃" + }, + { + "emojiChar": "🕊", + "emoji": "🕊", + "description": "dove of peace, carrying an olive branch", + "aliases": [ + "dove", + "dove_peace" + ], + "tags": [], + "unicode": "🕊", + "htmlDec": "🕊", + "htmlHex": "🕊" + }, + { + "emojiChar": "🦀", + "emoji": "🦀", + "description": "red crab", + "aliases": [ + "crab" + ], + "tags": [], + "unicode": "🦀", + "htmlDec": "🦀", + "htmlHex": "🦀" + }, + { + "emojiChar": "🕷", + "emoji": "🕷", + "description": "black spider with eight legs", + "aliases": [ + "spider" + ], + "tags": [], + "unicode": "🕷", + "htmlDec": "🕷", + "htmlHex": "🕷" + }, + { + "emojiChar": "🕸", + "emoji": "🕸", + "description": "spider web in orb form", + "aliases": [ + "spider_web", + "cobweb" + ], + "tags": [], + "unicode": "🕸", + "htmlDec": "🕸", + "htmlHex": "🕸" + }, + { + "emojiChar": "🦂", + "emoji": "🦂", + "description": "scorpion", + "aliases": [ + "scorpion" + ], + "tags": [], + "unicode": "🦂", + "htmlDec": "🦂", + "htmlHex": "🦂" + }, + { + "emojiChar": "🏵", + "emoji": "🏵", + "description": "rosette", + "aliases": [ + "rosette" + ], + "tags": [], + "unicode": "🏵", + "htmlDec": "🏵", + "htmlHex": "🏵" + }, + { + "emojiChar": "☘", + "emoji": "☘", + "description": "shamrock", + "aliases": [ + "shamrock", + "st_patrick" + ], + "tags": [], + "unicode": "☘", + "htmlDec": "☘", + "htmlHex": "☘" + }, + { + "emojiChar": "🌶", + "emoji": "🌶", + "description": "hot pepper", + "aliases": [ + "hot_pepper", + "chili_pepper", + "spice", + "spicy" + ], + "tags": [], + "unicode": "🌶", + "htmlDec": "🌶", + "htmlHex": "🌶" + }, + { + "emojiChar": "🧀", + "emoji": "🧀", + "description": "cheese wedge", + "aliases": [ + "cheese" + ], + "tags": [], + "unicode": "🧀", + "htmlDec": "🧀", + "htmlHex": "🧀" + }, + { + "emojiChar": "🌭", + "emoji": "🌭", + "description": "hot dog", + "aliases": [ + "hot_dog" + ], + "tags": [], + "unicode": "🌭", + "htmlDec": "🌭", + "htmlHex": "🌭" + }, + { + "emojiChar": "🌮", + "emoji": "🌮", + "description": "taco", + "aliases": [ + "taco" + ], + "tags": [], + "unicode": "🌮", + "htmlDec": "🌮", + "htmlHex": "🌮" + }, + { + "emojiChar": "🌯", + "emoji": "🌯", + "description": "burrito", + "aliases": [ + "burrito", + "wrap" + ], + "tags": [], + "unicode": "🌯", + "htmlDec": "🌯", + "htmlHex": "🌯" + }, + { + "emojiChar": "🍿", + "emoji": "🍿", + "description": "popcorn", + "aliases": [ + "popcorn" + ], + "tags": [], + "unicode": "🍿", + "htmlDec": "🍿", + "htmlHex": "🍿" + }, + { + "emojiChar": "🍾", + "emoji": "🍾", + "description": "bottle with popping cork", + "aliases": [ + "champagne", + "sparkling_wine" + ], + "tags": [], + "unicode": "🍾", + "htmlDec": "🍾", + "htmlHex": "🍾" + }, + { + "emojiChar": "🍽", + "emoji": "🍽", + "description": "fork and knife with plate", + "aliases": [ + "fork_knife_plate" + ], + "tags": [], + "unicode": "🍽", + "htmlDec": "🍽", + "htmlHex": "🍽" + }, + { + "emojiChar": "🏺", + "emoji": "🏺", + "description": "amphora", + "aliases": [ + "amphora", + "jar", + "vase" + ], + "tags": [], + "unicode": "🏺", + "htmlDec": "🏺", + "htmlHex": "🏺" + }, + { + "emojiChar": "🗺", + "emoji": "🗺", + "description": "world map", + "aliases": [ + "world_map" + ], + "tags": [], + "unicode": "🗺", + "htmlDec": "🗺", + "htmlHex": "🗺" + }, + { + "emojiChar": "🏔", + "emoji": "🏔", + "description": "snow capped mountain", + "aliases": [ + "snow_capped_mountain", + "mont_fuji" + ], + "tags": [], + "unicode": "🏔", + "htmlDec": "🏔", + "htmlHex": "🏔" + }, + { + "emojiChar": "⛰", + "emoji": "⛰", + "description": "mountain", + "aliases": [ + "mountain" + ], + "tags": [], + "unicode": "⛰", + "htmlDec": "⛰", + "htmlHex": "⛰" + }, + { + "emojiChar": "🏕", + "emoji": "🏕", + "description": "camping with tent and tree", + "aliases": [ + "camping", + "campsite" + ], + "tags": [], + "unicode": "🏕", + "htmlDec": "🏕", + "htmlHex": "🏕" + }, + { + "emojiChar": "🏖", + "emoji": "🏖", + "description": "beach with umbrella", + "aliases": [ + "breach" + ], + "tags": [], + "unicode": "🏖", + "htmlDec": "🏖", + "htmlHex": "🏖" + }, + { + "emojiChar": "🏜", + "emoji": "🏜", + "description": "desert with cactus", + "aliases": [ + "desert" + ], + "tags": [], + "unicode": "🏜", + "htmlDec": "🏜", + "htmlHex": "🏜" + }, + { + "emojiChar": "🏝", + "emoji": "🏝", + "description": "desert island with palm tree", + "aliases": [ + "desert_island" + ], + "tags": [], + "unicode": "🏝", + "htmlDec": "🏝", + "htmlHex": "🏝" + }, + { + "emojiChar": "🏞", + "emoji": "🏞", + "description": "national park", + "aliases": [ + "national_park" + ], + "tags": [], + "unicode": "🏞", + "htmlDec": "🏞", + "htmlHex": "🏞" + }, + { + "emojiChar": "🏟", + "emoji": "🏟", + "description": "stadium", + "aliases": [ + "stadium" + ], + "tags": [], + "unicode": "🏟", + "htmlDec": "🏟", + "htmlHex": "🏟" + }, + { + "emojiChar": "🏛", + "emoji": "🏛", + "description": "classical building", + "aliases": [ + "classical_building" + ], + "tags": [], + "unicode": "🏛", + "htmlDec": "🏛", + "htmlHex": "🏛" + }, + { + "emojiChar": "🏗", + "emoji": "🏗", + "description": "building in construction with crane", + "aliases": [ + "building_construction", + "crane" + ], + "tags": [], + "unicode": "🏗", + "htmlDec": "🏗", + "htmlHex": "🏗" + }, + { + "emojiChar": "🏘", + "emoji": "🏘", + "description": "house buildings", + "aliases": [ + "house_buildings", + "multiple_houses" + ], + "tags": [], + "unicode": "🏘", + "htmlDec": "🏘", + "htmlHex": "🏘" + }, + { + "emojiChar": "🏙", + "emoji": "🏙", + "description": "cityscape", + "aliases": [ + "cityscape" + ], + "tags": [], + "unicode": "🏙", + "htmlDec": "🏙", + "htmlHex": "🏙" + }, + { + "emojiChar": "🏚", + "emoji": "🏚", + "description": "derelict house", + "aliases": [ + "derelict_house", + "old_house", + "abandoned_house" + ], + "tags": [], + "unicode": "🏚", + "htmlDec": "🏚", + "htmlHex": "🏚" + }, + { + "emojiChar": "🛐", + "emoji": "🛐", + "description": "place of worship", + "aliases": [ + "worship_building", + "worship_place", + "religious_building", + "religious_place" + ], + "tags": [], + "unicode": "🛐", + "htmlDec": "🛐", + "htmlHex": "🛐" + }, + { + "emojiChar": "🕋", + "emoji": "🕋", + "description": "kaaba", + "aliases": [ + "kaaba", + "mecca" + ], + "tags": [], + "unicode": "🕋", + "htmlDec": "🕋", + "htmlHex": "🕋" + }, + { + "emojiChar": "🕌", + "emoji": "🕌", + "description": "mosque with domed roof and minaret", + "aliases": [ + "mosque", + "minaret", + "domed_roof" + ], + "tags": [], + "unicode": "🕌", + "htmlDec": "🕌", + "htmlHex": "🕌" + }, + { + "emojiChar": "🕍", + "emoji": "🕍", + "description": "synagogue with star of David", + "aliases": [ + "synagogue", + "temple", + "jewish" + ], + "tags": [], + "unicode": "🕍", + "htmlDec": "🕍", + "htmlHex": "🕍" + }, + { + "emojiChar": "🖼", + "emoji": "🖼", + "description": "frame with picture or painting", + "aliases": [ + "picture_frame", + "painting", + "gallery" + ], + "tags": [], + "unicode": "🖼", + "htmlDec": "🖼", + "htmlHex": "🖼" + }, + { + "emojiChar": "🛢", + "emoji": "🛢", + "description": "oil drum", + "aliases": [ + "oil_drum" + ], + "tags": [], + "unicode": "🛢", + "htmlDec": "🛢", + "htmlHex": "🛢" + }, + { + "emojiChar": "🛣", + "emoji": "🛣", + "description": "motorway", + "aliases": [ + "motorway", + "highway", + "road", + "interstate", + "freeway" + ], + "tags": [], + "unicode": "🛣", + "htmlDec": "🛣", + "htmlHex": "🛣" + }, + { + "emojiChar": "🛤", + "emoji": "🛤", + "description": "railway track", + "aliases": [ + "railway_track" + ], + "tags": [], + "unicode": "🛤", + "htmlDec": "🛤", + "htmlHex": "🛤" + }, + { + "emojiChar": "🛳", + "emoji": "🛳", + "description": "passenger ship", + "aliases": [ + "passenger_ship" + ], + "tags": [], + "unicode": "🛳", + "htmlDec": "🛳", + "htmlHex": "🛳" + }, + { + "emojiChar": "⛴", + "emoji": "⛴", + "description": "ferry", + "aliases": [ + "ferry" + ], + "tags": [], + "unicode": "⛴", + "htmlDec": "⛴", + "htmlHex": "⛴" + }, + { + "emojiChar": "🛥", + "emoji": "🛥", + "description": "motor boat", + "aliases": [ + "motor_boat" + ], + "tags": [], + "unicode": "🛥", + "htmlDec": "🛥", + "htmlHex": "🛥" + }, + { + "emojiChar": "🛩", + "emoji": "🛩", + "description": "small airplane", + "aliases": [ + "small_airplane" + ], + "tags": [], + "unicode": "🛩", + "htmlDec": "🛩", + "htmlHex": "🛩" + }, + { + "emojiChar": "🛫", + "emoji": "🛫", + "description": "airplane departure", + "aliases": [ + "airplane_departure", + "take_off" + ], + "tags": [], + "unicode": "🛫", + "htmlDec": "🛫", + "htmlHex": "🛫" + }, + { + "emojiChar": "🛬", + "emoji": "🛬", + "description": "airplane arriving", + "aliases": [ + "airplane_arriving", + "airplane_arrival", + "landing" + ], + "tags": [], + "unicode": "🛬", + "htmlDec": "🛬", + "htmlHex": "🛬" + }, + { + "emojiChar": "🛰", + "emoji": "🛰", + "description": "satellite", + "aliases": [ + "satellite" + ], + "tags": [], + "unicode": "🛰", + "htmlDec": "🛰", + "htmlHex": "🛰" + }, + { + "emojiChar": "🛎", + "emoji": "🛎", + "description": "bellhop bell", + "aliases": [ + "bellhop_bell" + ], + "tags": [], + "unicode": "🛎", + "htmlDec": "🛎", + "htmlHex": "🛎" + }, + { + "emojiChar": "🛌", + "emoji": "🛌", + "description": "sleeping accommodation", + "supports_fitzpatrick": true, + "aliases": [ + "sleeping_accommodation" + ], + "tags": [], + "unicode": "🛌", + "htmlDec": "🛌", + "htmlHex": "🛌" + }, + { + "emojiChar": "🛏", + "emoji": "🛏", + "description": "bed or bedroom", + "aliases": [ + "bed", + "bedroom" + ], + "tags": [], + "unicode": "🛏", + "htmlDec": "🛏", + "htmlHex": "🛏" + }, + { + "emojiChar": "🛋", + "emoji": "🛋", + "description": "couch and lamp", + "aliases": [ + "couch_lamp", + "couch", + "sofa", + "lounge" + ], + "tags": [], + "unicode": "🛋", + "htmlDec": "🛋", + "htmlHex": "🛋" + }, + { + "emojiChar": "⏱", + "emoji": "⏱", + "description": "stopwatch", + "aliases": [ + "stopwatch" + ], + "tags": [], + "unicode": "⏱", + "htmlDec": "⏱", + "htmlHex": "⏱" + }, + { + "emojiChar": "⏲", + "emoji": "⏲", + "description": "timer clock", + "aliases": [ + "timer_clock" + ], + "tags": [], + "unicode": "⏲", + "htmlDec": "⏲", + "htmlHex": "⏲" + }, + { + "emojiChar": "🕰", + "emoji": "🕰", + "description": "mantelpiece clock", + "aliases": [ + "mantelpiece_clock" + ], + "tags": [], + "unicode": "🕰", + "htmlDec": "🕰", + "htmlHex": "🕰" + }, + { + "emojiChar": "🌡", + "emoji": "🌡", + "description": "thermometer", + "aliases": [ + "thermometer", + "hot_weather", + "temperature" + ], + "tags": [], + "unicode": "🌡", + "htmlDec": "🌡", + "htmlHex": "🌡" + }, + { + "emojiChar": "⛈", + "emoji": "⛈", + "description": "thunder cloud and rain", + "aliases": [ + "thunder_cloud_rain" + ], + "tags": [], + "unicode": "⛈", + "htmlDec": "⛈", + "htmlHex": "⛈" + }, + { + "emojiChar": "🌤", + "emoji": "🌤", + "description": "white sun with small cloud", + "aliases": [ + "white_sun_small_cloud" + ], + "tags": [], + "unicode": "🌤", + "htmlDec": "🌤", + "htmlHex": "🌤" + }, + { + "emojiChar": "🌥", + "emoji": "🌥", + "description": "white sun behind cloud", + "aliases": [ + "white_sun_behind_cloud" + ], + "tags": [], + "unicode": "🌥", + "htmlDec": "🌥", + "htmlHex": "🌥" + }, + { + "emojiChar": "🌦", + "emoji": "🌦", + "description": "white sun behind cloud with rain", + "aliases": [ + "white_sun_behind_cloud_rain" + ], + "tags": [], + "unicode": "🌦", + "htmlDec": "🌦", + "htmlHex": "🌦" + }, + { + "emojiChar": "🌧", + "emoji": "🌧", + "description": "cloud with rain", + "aliases": [ + "cloud_rain" + ], + "tags": [], + "unicode": "🌧", + "htmlDec": "🌧", + "htmlHex": "🌧" + }, + { + "emojiChar": "🌨", + "emoji": "🌨", + "description": "cloud with snow", + "aliases": [ + "cloud_snow" + ], + "tags": [], + "unicode": "🌨", + "htmlDec": "🌨", + "htmlHex": "🌨" + }, + { + "emojiChar": "🌩", + "emoji": "🌩", + "description": "cloud with lightning", + "aliases": [ + "cloud_lightning" + ], + "tags": [], + "unicode": "🌩", + "htmlDec": "🌩", + "htmlHex": "🌩" + }, + { + "emojiChar": "🌪", + "emoji": "🌪", + "description": "cloud with tornado", + "aliases": [ + "cloud_tornado" + ], + "tags": [], + "unicode": "🌪", + "htmlDec": "🌪", + "htmlHex": "🌪" + }, + { + "emojiChar": "🌫", + "emoji": "🌫", + "description": "fog", + "aliases": [ + "fog" + ], + "tags": [], + "unicode": "🌫", + "htmlDec": "🌫", + "htmlHex": "🌫" + }, + { + "emojiChar": "🌬", + "emoji": "🌬", + "description": "wind blowing face", + "aliases": [ + "wind_blowing_face", + "mother_nature", + "blowing_wind" + ], + "tags": [], + "unicode": "🌬", + "htmlDec": "🌬", + "htmlHex": "🌬" + }, + { + "emojiChar": "☂", + "emoji": "☂", + "description": "open umbrella", + "aliases": [ + "open_umbrella" + ], + "tags": [], + "unicode": "☂", + "htmlDec": "☂", + "htmlHex": "☂" + }, + { + "emojiChar": "⛱", + "emoji": "⛱", + "description": "umbrella planted on the ground", + "aliases": [ + "planted_umbrella", + "umbrella_on_ground" + ], + "tags": [], + "unicode": "⛱", + "htmlDec": "⛱", + "htmlHex": "⛱" + }, + { + "emojiChar": "☃", + "emoji": "☃", + "description": "snowman with snow", + "aliases": [ + "snowman_with_snow", + "snowing_snowman" + ], + "tags": [], + "unicode": "☃", + "htmlDec": "☃", + "htmlHex": "☃" + }, + { + "emojiChar": "☄", + "emoji": "☄", + "description": "comet", + "aliases": [ + "comet", + "light_beam", + "blue_beam" + ], + "tags": [], + "unicode": "☄", + "htmlDec": "☄", + "htmlHex": "☄" + }, + { + "emojiChar": "🕎", + "emoji": "🕎", + "description": "menorah with nine branches", + "aliases": [ + "menorah", + "candelabrum", + "chanukiah" + ], + "tags": [], + "unicode": "🕎", + "htmlDec": "🕎", + "htmlHex": "🕎" + }, + { + "emojiChar": "🎖", + "emoji": "🎖", + "description": "military medal with ribbon", + "aliases": [ + "military_medal", + "military_decoration" + ], + "tags": [], + "unicode": "🎖", + "htmlDec": "🎖", + "htmlHex": "🎖" + }, + { + "emojiChar": "🎗", + "emoji": "🎗", + "description": "reminder ribbon", + "aliases": [ + "reminder_ribbon", + "awareness_ribbon" + ], + "tags": [], + "unicode": "🎗", + "htmlDec": "🎗", + "htmlHex": "🎗" + }, + { + "emojiChar": "🎞", + "emoji": "🎞", + "description": "film frames", + "aliases": [ + "film_frames" + ], + "tags": [], + "unicode": "🎞", + "htmlDec": "🎞", + "htmlHex": "🎞" + }, + { + "emojiChar": "🎟", + "emoji": "🎟", + "description": "admission ticket", + "aliases": [ + "admission_ticket" + ], + "tags": [], + "unicode": "🎟", + "htmlDec": "🎟", + "htmlHex": "🎟" + }, + { + "emojiChar": "🏷", + "emoji": "🏷", + "description": "label", + "aliases": [ + "label" + ], + "tags": [], + "unicode": "🏷", + "htmlDec": "🏷", + "htmlHex": "🏷" + }, + { + "emojiChar": "🏌", + "emoji": "🏌", + "description": "golfer swinging a golf club", + "supports_fitzpatrick": true, + "aliases": [ + "golfer", + "golf_club" + ], + "tags": [], + "unicode": "🏌", + "htmlDec": "🏌", + "htmlHex": "🏌" + }, + { + "emojiChar": "🏌️‍♂️", + "emoji": "🏌️‍♂️", + "description": "man golfing", + "supports_fitzpatrick": true, + "aliases": [ + "man_golfer", + "male_golfer", + "man_golfing", + "male_golfing" + ], + "tags": [], + "unicode": "🏌️‍♂️", + "htmlDec": "🏌️‍♂️", + "htmlHex": "🏌️‍♂️" + }, + { + "emojiChar": "🏌️‍♀️", + "emoji": "🏌️‍♀️", + "description": "woman golfing", + "supports_fitzpatrick": true, + "aliases": [ + "woman_golfer", + "female_golfer", + "woman_golfing", + "female_golfing" + ], + "tags": [], + "unicode": "🏌️‍♀️", + "htmlDec": "🏌️‍♀️", + "htmlHex": "🏌️‍♀️" + }, + { + "emojiChar": "⛸", + "emoji": "⛸", + "description": "single ice skate", + "aliases": [ + "ice_skate", + "ice_skating" + ], + "tags": [], + "unicode": "⛸", + "htmlDec": "⛸", + "htmlHex": "⛸" + }, + { + "emojiChar": "⛷", + "emoji": "⛷", + "description": "skier", + "aliases": [ + "skier" + ], + "tags": [], + "unicode": "⛷", + "htmlDec": "⛷", + "htmlHex": "⛷" + }, + { + "emojiChar": "⛹", + "emoji": "⛹", + "description": "person with ball", + "supports_fitzpatrick": true, + "aliases": [ + "person_with_ball" + ], + "tags": [], + "unicode": "⛹", + "htmlDec": "⛹", + "htmlHex": "⛹" + }, + { + "emojiChar": "🏋", + "emoji": "🏋", + "description": "weight lifter", + "supports_fitzpatrick": true, + "aliases": [ + "weight_lifter" + ], + "tags": [], + "unicode": "🏋", + "htmlDec": "🏋", + "htmlHex": "🏋" + }, + { + "emojiChar": "🏎", + "emoji": "🏎", + "description": "racing car", + "aliases": [ + "racing_car", + "formula_one", + "f1" + ], + "tags": [], + "unicode": "🏎", + "htmlDec": "🏎", + "htmlHex": "🏎" + }, + { + "emojiChar": "🏍", + "emoji": "🏍", + "description": "racing motorcycle", + "aliases": [ + "racing_motorcycle", + "motorcycle", + "motorbike" + ], + "tags": [], + "unicode": "🏍", + "htmlDec": "🏍", + "htmlHex": "🏍" + }, + { + "emojiChar": "🏅", + "emoji": "🏅", + "description": "sports medal", + "aliases": [ + "sports_medal", + "sports_decoration" + ], + "tags": [], + "unicode": "🏅", + "htmlDec": "🏅", + "htmlHex": "🏅" + }, + { + "emojiChar": "🏏", + "emoji": "🏏", + "description": "cricket bat and ball", + "aliases": [ + "cricket_bat_and_ball", + "cricket_game" + ], + "tags": [], + "unicode": "🏏", + "htmlDec": "🏏", + "htmlHex": "🏏" + }, + { + "emojiChar": "🏐", + "emoji": "🏐", + "description": "volleyball", + "aliases": [ + "volleyball" + ], + "tags": [], + "unicode": "🏐", + "htmlDec": "🏐", + "htmlHex": "🏐" + }, + { + "emojiChar": "🏑", + "emoji": "🏑", + "description": "field hockey stick and ball", + "aliases": [ + "field_hockey" + ], + "tags": [], + "unicode": "🏑", + "htmlDec": "🏑", + "htmlHex": "🏑" + }, + { + "emojiChar": "🏒", + "emoji": "🏒", + "description": "ice hockey stick and puck", + "aliases": [ + "ice_hockey" + ], + "tags": [], + "unicode": "🏒", + "htmlDec": "🏒", + "htmlHex": "🏒" + }, + { + "emojiChar": "🏓", + "emoji": "🏓", + "description": "table tennis paddle and ball", + "aliases": [ + "table_tennis", + "ping_pong" + ], + "tags": [], + "unicode": "🏓", + "htmlDec": "🏓", + "htmlHex": "🏓" + }, + { + "emojiChar": "🏸", + "emoji": "🏸", + "description": "badminton racket and shuttlecock", + "aliases": [ + "badminton" + ], + "tags": [], + "unicode": "🏸", + "htmlDec": "🏸", + "htmlHex": "🏸" + }, + { + "emojiChar": "🕹", + "emoji": "🕹", + "description": "joystick", + "aliases": [ + "joystick" + ], + "tags": [], + "unicode": "🕹", + "htmlDec": "🕹", + "htmlHex": "🕹" + }, + { + "emojiChar": "⏭", + "emoji": "⏭", + "description": "black right-pointing double triangle with vertical bar", + "aliases": [ + "black_right_pointing_double_triangle_with_vertical_bar" + ], + "tags": [], + "unicode": "⏭", + "htmlDec": "⏭", + "htmlHex": "⏭" + }, + { + "emojiChar": "⏯", + "emoji": "⏯", + "description": "black right-pointing triangle with double vertical bar", + "aliases": [ + "black_right_pointing_triangle_with_double_vertical_bar" + ], + "tags": [], + "unicode": "⏯", + "htmlDec": "⏯", + "htmlHex": "⏯" + }, + { + "emojiChar": "⏎", + "emoji": "⏎", + "description": "black left-pointing double triangle with vertical bar", + "aliases": [ + "black_left_pointing_double_triangle_with_vertical_bar" + ], + "tags": [], + "unicode": "⏎", + "htmlDec": "⏮", + "htmlHex": "⏮" + }, + { + "emojiChar": "⏸", + "emoji": "⏸", + "description": "double vertical bar", + "aliases": [ + "double_vertical_bar" + ], + "tags": [], + "unicode": "⏸", + "htmlDec": "⏸", + "htmlHex": "⏸" + }, + { + "emojiChar": "⏚", + "emoji": "⏚", + "description": "black square for stop", + "aliases": [ + "black_square_for_stop" + ], + "tags": [], + "unicode": "⏚", + "htmlDec": "⏹", + "htmlHex": "⏹" + }, + { + "emojiChar": "⏺", + "emoji": "⏺", + "description": "black circle for record", + "aliases": [ + "black_circle_for_record" + ], + "tags": [], + "unicode": "⏺", + "htmlDec": "⏺", + "htmlHex": "⏺" + }, + { + "emojiChar": "🎙", + "emoji": "🎙", + "description": "studio microphone", + "aliases": [ + "studio_microphone" + ], + "tags": [], + "unicode": "🎙", + "htmlDec": "🎙", + "htmlHex": "🎙" + }, + { + "emojiChar": "🎚", + "emoji": "🎚", + "description": "level slider", + "aliases": [ + "level_slider" + ], + "tags": [], + "unicode": "🎚", + "htmlDec": "🎚", + "htmlHex": "🎚" + }, + { + "emojiChar": "🎛", + "emoji": "🎛", + "description": "control knobs", + "aliases": [ + "control_knobs" + ], + "tags": [], + "unicode": "🎛", + "htmlDec": "🎛", + "htmlHex": "🎛" + }, + { + "emojiChar": "*⃣", + "emoji": "*⃣", + "description": "keycap asterisk", + "aliases": [ + "keycap_asterisk", + "star_keycap" + ], + "tags": [], + "unicode": "*⃣", + "htmlDec": "*⃣", + "htmlHex": "*⃣" + }, + { + "emojiChar": "🖥", + "emoji": "🖥", + "description": "desktop computer", + "aliases": [ + "desktop_computer", + "pc_tower", + "imac" + ], + "tags": [], + "unicode": "🖥", + "htmlDec": "🖥", + "htmlHex": "🖥" + }, + { + "emojiChar": "🖨", + "emoji": "🖨", + "description": "printer", + "aliases": [ + "printer" + ], + "tags": [], + "unicode": "🖨", + "htmlDec": "🖨", + "htmlHex": "🖨" + }, + { + "emojiChar": "⌨", + "emoji": "⌨", + "description": "keyboard", + "aliases": [ + "keyboard" + ], + "tags": [], + "unicode": "⌨", + "htmlDec": "⌨", + "htmlHex": "⌨" + }, + { + "emojiChar": "🖱", + "emoji": "🖱", + "description": "three button mouse", + "aliases": [ + "computer_mouse", + "three_button_mouse" + ], + "tags": [], + "unicode": "🖱", + "htmlDec": "🖱", + "htmlHex": "🖱" + }, + { + "emojiChar": "🖲", + "emoji": "🖲", + "description": "trackball", + "aliases": [ + "trackball" + ], + "tags": [], + "unicode": "🖲", + "htmlDec": "🖲", + "htmlHex": "🖲" + }, + { + "emojiChar": "📽", + "emoji": "📽", + "description": "film projector", + "aliases": [ + "film_projector" + ], + "tags": [], + "unicode": "📽", + "htmlDec": "📽", + "htmlHex": "📽" + }, + { + "emojiChar": "📸", + "emoji": "📸", + "description": "camera with flash", + "aliases": [ + "camera_flash" + ], + "tags": [], + "unicode": "📸", + "htmlDec": "📸", + "htmlHex": "📸" + }, + { + "emojiChar": "🕯", + "emoji": "🕯", + "description": "candle burning", + "aliases": [ + "candle" + ], + "tags": [], + "unicode": "🕯", + "htmlDec": "🕯", + "htmlHex": "🕯" + }, + { + "emojiChar": "🗞", + "emoji": "🗞", + "description": "newspaper rolled up for delivery", + "aliases": [ + "rolled_up_newspaper", + "newspaper_delivery" + ], + "tags": [], + "unicode": "🗞", + "htmlDec": "🗞", + "htmlHex": "🗞" + }, + { + "emojiChar": "🗳", + "emoji": "🗳", + "description": "ballot bow with ballot", + "aliases": [ + "ballot", + "ballot_box" + ], + "tags": [], + "unicode": "🗳", + "htmlDec": "🗳", + "htmlHex": "🗳" + }, + { + "emojiChar": "🖋", + "emoji": "🖋", + "description": "lower left fountain pen", + "aliases": [ + "lower_left_fountain_pen" + ], + "tags": [], + "unicode": "🖋", + "htmlDec": "🖋", + "htmlHex": "🖋" + }, + { + "emojiChar": "🖊", + "emoji": "🖊", + "description": "lower left ballpoint pen", + "aliases": [ + "lower_left_ballpoint_pen" + ], + "tags": [], + "unicode": "🖊", + "htmlDec": "🖊", + "htmlHex": "🖊" + }, + { + "emojiChar": "🖌", + "emoji": "🖌", + "description": "lower left paintbrush", + "aliases": [ + "lower_left_paintbrush" + ], + "tags": [], + "unicode": "🖌", + "htmlDec": "🖌", + "htmlHex": "🖌" + }, + { + "emojiChar": "🖍", + "emoji": "🖍", + "description": "lower left crayon", + "aliases": [ + "lower_left_crayon" + ], + "tags": [], + "unicode": "🖍", + "htmlDec": "🖍", + "htmlHex": "🖍" + }, + { + "emojiChar": "🗂", + "emoji": "🗂", + "description": "card index dividers", + "aliases": [ + "card_index_dividers" + ], + "tags": [], + "unicode": "🗂", + "htmlDec": "🗂", + "htmlHex": "🗂" + }, + { + "emojiChar": "🗒", + "emoji": "🗒", + "description": "spiral note pad", + "aliases": [ + "spiral_note_pad" + ], + "tags": [], + "unicode": "🗒", + "htmlDec": "🗒", + "htmlHex": "🗒" + }, + { + "emojiChar": "🗓", + "emoji": "🗓", + "description": "spiral calendar pad", + "aliases": [ + "spiral_calendar_pad" + ], + "tags": [], + "unicode": "🗓", + "htmlDec": "🗓", + "htmlHex": "🗓" + }, + { + "emojiChar": "🖇", + "emoji": "🖇", + "description": "multiple paperclips linked together", + "aliases": [ + "linked_paperclips" + ], + "tags": [], + "unicode": "🖇", + "htmlDec": "🖇", + "htmlHex": "🖇" + }, + { + "emojiChar": "🗃", + "emoji": "🗃", + "description": "card file box", + "aliases": [ + "card_file_box" + ], + "tags": [], + "unicode": "🗃", + "htmlDec": "🗃", + "htmlHex": "🗃" + }, + { + "emojiChar": "🗄", + "emoji": "🗄", + "description": "file cabinet", + "aliases": [ + "file_cabinet" + ], + "tags": [], + "unicode": "🗄", + "htmlDec": "🗄", + "htmlHex": "🗄" + }, + { + "emojiChar": "🗑", + "emoji": "🗑", + "description": "wastebasket", + "aliases": [ + "wastebasket" + ], + "tags": [], + "unicode": "🗑", + "htmlDec": "🗑", + "htmlHex": "🗑" + }, + { + "emojiChar": "🗝", + "emoji": "🗝", + "description": "an ornate old key", + "aliases": [ + "old_key" + ], + "tags": [], + "unicode": "🗝", + "htmlDec": "🗝", + "htmlHex": "🗝" + }, + { + "emojiChar": "⛏", + "emoji": "⛏", + "description": "pick", + "aliases": [ + "pick" + ], + "tags": [], + "unicode": "⛏", + "htmlDec": "⛏", + "htmlHex": "⛏" + }, + { + "emojiChar": "⚒", + "emoji": "⚒", + "description": "hammer and pick", + "aliases": [ + "hammer_and_pick" + ], + "tags": [], + "unicode": "⚒", + "htmlDec": "⚒", + "htmlHex": "⚒" + }, + { + "emojiChar": "🛠", + "emoji": "🛠", + "description": "hammer and wrench", + "aliases": [ + "hammer_and_wrench" + ], + "tags": [], + "unicode": "🛠", + "htmlDec": "🛠", + "htmlHex": "🛠" + }, + { + "emojiChar": "⚙", + "emoji": "⚙", + "description": "gear", + "aliases": [ + "gear" + ], + "tags": [], + "unicode": "⚙", + "htmlDec": "⚙", + "htmlHex": "⚙" + }, + { + "emojiChar": "🗜", + "emoji": "🗜", + "description": "compression", + "aliases": [ + "compression" + ], + "tags": [], + "unicode": "🗜", + "htmlDec": "🗜", + "htmlHex": "🗜" + }, + { + "emojiChar": "⚗", + "emoji": "⚗", + "description": "alembic", + "aliases": [ + "alembic" + ], + "tags": [], + "unicode": "⚗", + "htmlDec": "⚗", + "htmlHex": "⚗" + }, + { + "emojiChar": "⚖", + "emoji": "⚖", + "description": "scales of justice", + "aliases": [ + "scales", + "scales_of_justice" + ], + "tags": [], + "unicode": "⚖", + "htmlDec": "⚖", + "htmlHex": "⚖" + }, + { + "emojiChar": "⛓", + "emoji": "⛓", + "description": "chains", + "aliases": [ + "chains" + ], + "tags": [], + "unicode": "⛓", + "htmlDec": "⛓", + "htmlHex": "⛓" + }, + { + "emojiChar": "🗡", + "emoji": "🗡", + "description": "dagger knife", + "aliases": [ + "dagger", + "dagger_knife", + "knife_weapon" + ], + "tags": [], + "unicode": "🗡", + "htmlDec": "🗡", + "htmlHex": "🗡" + }, + { + "emojiChar": "⚔", + "emoji": "⚔", + "description": "crossed swords", + "aliases": [ + "crossed_swords" + ], + "tags": [], + "unicode": "⚔", + "htmlDec": "⚔", + "htmlHex": "⚔" + }, + { + "emojiChar": "🛡", + "emoji": "🛡", + "description": "shield", + "aliases": [ + "shield" + ], + "tags": [], + "unicode": "🛡", + "htmlDec": "🛡", + "htmlHex": "🛡" + }, + { + "emojiChar": "🏹", + "emoji": "🏹", + "description": "bow and arrow", + "aliases": [ + "bow_and_arrow", + "bow_arrow", + "archery" + ], + "tags": [], + "unicode": "🏹", + "htmlDec": "🏹", + "htmlHex": "🏹" + }, + { + "emojiChar": "⚰", + "emoji": "⚰", + "description": "coffin", + "aliases": [ + "coffin", + "funeral", + "casket" + ], + "tags": [], + "unicode": "⚰", + "htmlDec": "⚰", + "htmlHex": "⚰" + }, + { + "emojiChar": "⚱", + "emoji": "⚱", + "description": "funeral urn", + "aliases": [ + "funeral_urn" + ], + "tags": [], + "unicode": "⚱", + "htmlDec": "⚱", + "htmlHex": "⚱" + }, + { + "emojiChar": "🏳", + "emoji": "🏳", + "description": "waving white flag", + "aliases": [ + "waving_white_flag" + ], + "tags": [], + "unicode": "🏳", + "htmlDec": "🏳", + "htmlHex": "🏳" + }, + { + "emojiChar": "🏴", + "emoji": "🏴", + "description": "waving black flag", + "aliases": [ + "waving_black_flag" + ], + "tags": [], + "unicode": "🏴", + "htmlDec": "🏴", + "htmlHex": "🏴" + }, + { + "emojiChar": "⚜", + "emoji": "⚜", + "description": "fleur-de-lis", + "aliases": [ + "fleur_de_lis", + "scouts" + ], + "tags": [], + "unicode": "⚜", + "htmlDec": "⚜", + "htmlHex": "⚜" + }, + { + "emojiChar": "⚛", + "emoji": "⚛", + "description": "atom symbol", + "aliases": [ + "atom", + "atom_symbol" + ], + "tags": [], + "unicode": "⚛", + "htmlDec": "⚛", + "htmlHex": "⚛" + }, + { + "emojiChar": "🕉", + "emoji": "🕉", + "description": "om symbol", + "aliases": [ + "om_symbol", + "pranava", + "aumkara", + "omkara" + ], + "tags": [], + "unicode": "🕉", + "htmlDec": "🕉", + "htmlHex": "🕉" + }, + { + "emojiChar": "✡", + "emoji": "✡", + "description": "star of David", + "aliases": [ + "star_of_david" + ], + "tags": [], + "unicode": "✡", + "htmlDec": "✡", + "htmlHex": "✡" + }, + { + "emojiChar": "☸", + "emoji": "☸", + "description": "wheel of Dharma", + "aliases": [ + "wheel_of_dharma" + ], + "tags": [], + "unicode": "☸", + "htmlDec": "☸", + "htmlHex": "☸" + }, + { + "emojiChar": "☯", + "emoji": "☯", + "description": "yin yang", + "aliases": [ + "yin_yang" + ], + "tags": [], + "unicode": "☯", + "htmlDec": "☯", + "htmlHex": "☯" + }, + { + "emojiChar": "✝", + "emoji": "✝", + "description": "latin cross", + "aliases": [ + "latin_cross", + "christian_cross" + ], + "tags": [], + "unicode": "✝", + "htmlDec": "✝", + "htmlHex": "✝" + }, + { + "emojiChar": "☌", + "emoji": "☌", + "description": "orthodox cross", + "aliases": [ + "orthodox_cross" + ], + "tags": [], + "unicode": "☌", + "htmlDec": "☦", + "htmlHex": "☦" + }, + { + "emojiChar": "⛩", + "emoji": "⛩", + "description": "shinto shrine", + "aliases": [ + "shinto_shrine", + "kami_no_michi" + ], + "tags": [], + "unicode": "⛩", + "htmlDec": "⛩", + "htmlHex": "⛩" + }, + { + "emojiChar": "☪", + "emoji": "☪", + "description": "star and crescent", + "aliases": [ + "star_and_crescent", + "star_crescent" + ], + "tags": [], + "unicode": "☪", + "htmlDec": "☪", + "htmlHex": "☪" + }, + { + "emojiChar": "☎", + "emoji": "☎", + "description": "peace symbol", + "aliases": [ + "peace_symbol", + "peace_sign" + ], + "tags": [], + "unicode": "☎", + "htmlDec": "☮", + "htmlHex": "☮" + }, + { + "emojiChar": "☢", + "emoji": "☢", + "description": "radioactive symbol", + "aliases": [ + "radioactive", + "radioactive_symbol", + "radioactive_sign" + ], + "tags": [], + "unicode": "☢", + "htmlDec": "☢", + "htmlHex": "☢" + }, + { + "emojiChar": "☣", + "emoji": "☣", + "description": "biohazard symbol", + "aliases": [ + "biohazard", + "biohazard_symbol", + "biohazard_sign" + ], + "tags": [], + "unicode": "☣", + "htmlDec": "☣", + "htmlHex": "☣" + }, + { + "emojiChar": "🗨", + "emoji": "🗨", + "description": "left speech bubble", + "aliases": [ + "left_speech_bubble" + ], + "tags": [], + "unicode": "🗨", + "htmlDec": "🗨", + "htmlHex": "🗨" + }, + { + "emojiChar": "👁‍🗨", + "emoji": "👁‍🗨", + "description": "eye in speech bubble", + "aliases": [ + "eye_in_speech_bubble", + "i_am_a_witness" + ], + "tags": [], + "unicode": "👁‍🗨", + "htmlDec": "👁‍🗨", + "htmlHex": "👁‍🗨" + }, + { + "emojiChar": "🤣", + "emoji": "🤣", + "description": "rolling on the floor laughing", + "aliases": [ + "rolling_on_the_floor_laughing", + "rofl" + ], + "tags": [], + "unicode": "🤣", + "htmlDec": "🤣", + "htmlHex": "🤣" + }, + { + "emojiChar": "🤠", + "emoji": "🤠", + "description": "face with cowboy hat", + "aliases": [ + "face_with_cowboy_hat", + "cowboy" + ], + "tags": [], + "unicode": "🤠", + "htmlDec": "🤠", + "htmlHex": "🤠" + }, + { + "emojiChar": "🤡", + "emoji": "🤡", + "description": "clown face", + "aliases": [ + "clown_face", + "clown" + ], + "tags": [], + "unicode": "🤡", + "htmlDec": "🤡", + "htmlHex": "🤡" + }, + { + "emojiChar": "🤥", + "emoji": "🤥", + "description": "lying face", + "aliases": [ + "lying_face" + ], + "tags": [], + "unicode": "🤥", + "htmlDec": "🤥", + "htmlHex": "🤥" + }, + { + "emojiChar": "🤤", + "emoji": "🤤", + "description": "drooling face", + "aliases": [ + "drooling_face" + ], + "tags": [], + "unicode": "🤤", + "htmlDec": "🤤", + "htmlHex": "🤤" + }, + { + "emojiChar": "🤢", + "emoji": "🤢", + "description": "nauseated face", + "aliases": [ + "nauseated_face" + ], + "tags": [], + "unicode": "🤢", + "htmlDec": "🤢", + "htmlHex": "🤢" + }, + { + "emojiChar": "🤧", + "emoji": "🤧", + "description": "sneezing face", + "aliases": [ + "sneezing_face" + ], + "tags": [], + "unicode": "🤧", + "htmlDec": "🤧", + "htmlHex": "🤧" + }, + { + "emojiChar": "🤴", + "emoji": "🤴", + "description": "prince", + "supports_fitzpatrick": true, + "aliases": [ + "prince" + ], + "tags": [], + "unicode": "🤴", + "htmlDec": "🤴", + "htmlHex": "🤴" + }, + { + "emojiChar": "🤶", + "emoji": "🤶", + "description": "mother christmas", + "supports_fitzpatrick": true, + "aliases": [ + "mother_christmas" + ], + "tags": [], + "unicode": "🤶", + "htmlDec": "🤶", + "htmlHex": "🤶" + }, + { + "emojiChar": "🤵", + "emoji": "🤵", + "description": "man in tuxedo", + "supports_fitzpatrick": true, + "aliases": [ + "man_in_tuxedo" + ], + "tags": [], + "unicode": "🤵", + "htmlDec": "🤵", + "htmlHex": "🤵" + }, + { + "emojiChar": "🤷", + "emoji": "🤷", + "description": "shrug", + "supports_fitzpatrick": true, + "aliases": [ + "shrug" + ], + "tags": [], + "unicode": "🤷", + "htmlDec": "🤷", + "htmlHex": "🤷" + }, + { + "emojiChar": "🤦", + "emoji": "🤦", + "description": "face palm", + "supports_fitzpatrick": true, + "aliases": [ + "face_palm" + ], + "tags": [], + "unicode": "🤦", + "htmlDec": "🤦", + "htmlHex": "🤦" + }, + { + "emojiChar": "🤰", + "emoji": "🤰", + "description": "pregnant woman", + "supports_fitzpatrick": true, + "aliases": [ + "pregnant_woman" + ], + "tags": [], + "unicode": "🤰", + "htmlDec": "🤰", + "htmlHex": "🤰" + }, + { + "emojiChar": "🕺", + "emoji": "🕺", + "description": "man dancing", + "supports_fitzpatrick": true, + "aliases": [ + "man_dancing" + ], + "tags": [], + "unicode": "🕺", + "htmlDec": "🕺", + "htmlHex": "🕺" + }, + { + "emojiChar": "🤳", + "emoji": "🤳", + "description": "selfie", + "supports_fitzpatrick": true, + "aliases": [ + "selfie" + ], + "tags": [], + "unicode": "🤳", + "htmlDec": "🤳", + "htmlHex": "🤳" + }, + { + "emojiChar": "🤞", + "emoji": "🤞", + "description": "hand with index and middle fingers crossed", + "supports_fitzpatrick": true, + "aliases": [ + "hand_with_index_and_middle_fingers_crossed" + ], + "tags": [], + "unicode": "🤞", + "htmlDec": "🤞", + "htmlHex": "🤞" + }, + { + "emojiChar": "🤙", + "emoji": "🤙", + "description": "call me hand", + "supports_fitzpatrick": true, + "aliases": [ + "call_me_hand" + ], + "tags": [], + "unicode": "🤙", + "htmlDec": "🤙", + "htmlHex": "🤙" + }, + { + "emojiChar": "🤛", + "emoji": "🤛", + "description": "left-facing fist", + "supports_fitzpatrick": true, + "aliases": [ + "left-facing_fist" + ], + "tags": [], + "unicode": "🤛", + "htmlDec": "🤛", + "htmlHex": "🤛" + }, + { + "emojiChar": "🤜", + "emoji": "🤜", + "description": "right-facing fist", + "supports_fitzpatrick": true, + "aliases": [ + "right-facing_fist" + ], + "tags": [], + "unicode": "🤜", + "htmlDec": "🤜", + "htmlHex": "🤜" + }, + { + "emojiChar": "🤚", + "emoji": "🤚", + "description": "raised back of hand", + "supports_fitzpatrick": true, + "aliases": [ + "raised_back_of_hand" + ], + "tags": [], + "unicode": "🤚", + "htmlDec": "🤚", + "htmlHex": "🤚" + }, + { + "emojiChar": "🤝", + "emoji": "🤝", + "description": "handshake", + "supports_fitzpatrick": true, + "aliases": [ + "handshake" + ], + "tags": [], + "unicode": "🤝", + "htmlDec": "🤝", + "htmlHex": "🤝" + }, + { + "emojiChar": "🖤", + "emoji": "🖤", + "description": "black heart", + "aliases": [ + "black_heart" + ], + "tags": [], + "unicode": "🖤", + "htmlDec": "🖤", + "htmlHex": "🖤" + }, + { + "emojiChar": "🦍", + "emoji": "🦍", + "description": "gorilla", + "aliases": [ + "gorilla" + ], + "tags": [], + "unicode": "🦍", + "htmlDec": "🦍", + "htmlHex": "🦍" + }, + { + "emojiChar": "🦊", + "emoji": "🦊", + "description": "fox face", + "aliases": [ + "fox_face" + ], + "tags": [], + "unicode": "🦊", + "htmlDec": "🦊", + "htmlHex": "🦊" + }, + { + "emojiChar": "🦌", + "emoji": "🦌", + "description": "deer", + "aliases": [ + "deer" + ], + "tags": [], + "unicode": "🦌", + "htmlDec": "🦌", + "htmlHex": "🦌" + }, + { + "emojiChar": "🦏", + "emoji": "🦏", + "description": "rhinoceros", + "aliases": [ + "rhinoceros" + ], + "tags": [], + "unicode": "🦏", + "htmlDec": "🦏", + "htmlHex": "🦏" + }, + { + "emojiChar": "🦇", + "emoji": "🦇", + "description": "bat", + "aliases": [ + "bat" + ], + "tags": [], + "unicode": "🦇", + "htmlDec": "🦇", + "htmlHex": "🦇" + }, + { + "emojiChar": "🦅", + "emoji": "🦅", + "description": "eagle", + "aliases": [ + "eagle" + ], + "tags": [], + "unicode": "🦅", + "htmlDec": "🦅", + "htmlHex": "🦅" + }, + { + "emojiChar": "🦆", + "emoji": "🦆", + "description": "duck", + "aliases": [ + "duck" + ], + "tags": [], + "unicode": "🦆", + "htmlDec": "🦆", + "htmlHex": "🦆" + }, + { + "emojiChar": "🦉", + "emoji": "🦉", + "description": "owl", + "aliases": [ + "owl" + ], + "tags": [], + "unicode": "🦉", + "htmlDec": "🦉", + "htmlHex": "🦉" + }, + { + "emojiChar": "🦎", + "emoji": "🦎", + "description": "lizard", + "aliases": [ + "lizard" + ], + "tags": [], + "unicode": "🦎", + "htmlDec": "🦎", + "htmlHex": "🦎" + }, + { + "emojiChar": "🦈", + "emoji": "🦈", + "description": "shark", + "aliases": [ + "shark" + ], + "tags": [], + "unicode": "🦈", + "htmlDec": "🦈", + "htmlHex": "🦈" + }, + { + "emojiChar": "🦐", + "emoji": "🦐", + "description": "shrimp", + "aliases": [ + "shrimp" + ], + "tags": [], + "unicode": "🦐", + "htmlDec": "🦐", + "htmlHex": "🦐" + }, + { + "emojiChar": "🦑", + "emoji": "🦑", + "description": "squid", + "aliases": [ + "squid" + ], + "tags": [], + "unicode": "🦑", + "htmlDec": "🦑", + "htmlHex": "🦑" + }, + { + "emojiChar": "🦋", + "emoji": "🦋", + "description": "butterfly", + "aliases": [ + "butterfly" + ], + "tags": [], + "unicode": "🦋", + "htmlDec": "🦋", + "htmlHex": "🦋" + }, + { + "emojiChar": "🥀", + "emoji": "🥀", + "description": "wilted flower", + "aliases": [ + "wilted_flower" + ], + "tags": [], + "unicode": "🥀", + "htmlDec": "🥀", + "htmlHex": "🥀" + }, + { + "emojiChar": "🥝", + "emoji": "🥝", + "description": "kiwifruit", + "aliases": [ + "kiwifruit" + ], + "tags": [], + "unicode": "🥝", + "htmlDec": "🥝", + "htmlHex": "🥝" + }, + { + "emojiChar": "🥑", + "emoji": "🥑", + "description": "avocado", + "aliases": [ + "avocado" + ], + "tags": [], + "unicode": "🥑", + "htmlDec": "🥑", + "htmlHex": "🥑" + }, + { + "emojiChar": "🥔", + "emoji": "🥔", + "description": "potato", + "aliases": [ + "potato" + ], + "tags": [], + "unicode": "🥔", + "htmlDec": "🥔", + "htmlHex": "🥔" + }, + { + "emojiChar": "🥕", + "emoji": "🥕", + "description": "carrot", + "aliases": [ + "carrot" + ], + "tags": [], + "unicode": "🥕", + "htmlDec": "🥕", + "htmlHex": "🥕" + }, + { + "emojiChar": "🥒", + "emoji": "🥒", + "description": "cucumber", + "aliases": [ + "cucumber" + ], + "tags": [], + "unicode": "🥒", + "htmlDec": "🥒", + "htmlHex": "🥒" + }, + { + "emojiChar": "🥜", + "emoji": "🥜", + "description": "peanuts", + "aliases": [ + "peanuts" + ], + "tags": [], + "unicode": "🥜", + "htmlDec": "🥜", + "htmlHex": "🥜" + }, + { + "emojiChar": "🥐", + "emoji": "🥐", + "description": "croissant", + "aliases": [ + "croissant" + ], + "tags": [], + "unicode": "🥐", + "htmlDec": "🥐", + "htmlHex": "🥐" + }, + { + "emojiChar": "🥖", + "emoji": "🥖", + "description": "baguette bread", + "aliases": [ + "baguette_bread" + ], + "tags": [], + "unicode": "🥖", + "htmlDec": "🥖", + "htmlHex": "🥖" + }, + { + "emojiChar": "🥞", + "emoji": "🥞", + "description": "pancakes", + "aliases": [ + "pancakes" + ], + "tags": [], + "unicode": "🥞", + "htmlDec": "🥞", + "htmlHex": "🥞" + }, + { + "emojiChar": "🥓", + "emoji": "🥓", + "description": "bacon", + "aliases": [ + "bacon" + ], + "tags": [], + "unicode": "🥓", + "htmlDec": "🥓", + "htmlHex": "🥓" + }, + { + "emojiChar": "🥙", + "emoji": "🥙", + "description": "stuffed flatbread", + "aliases": [ + "stuffed_flatbread" + ], + "tags": [], + "unicode": "🥙", + "htmlDec": "🥙", + "htmlHex": "🥙" + }, + { + "emojiChar": "🥚", + "emoji": "🥚", + "description": "egg", + "aliases": [ + "egg" + ], + "tags": [], + "unicode": "🥚", + "htmlDec": "🥚", + "htmlHex": "🥚" + }, + { + "emojiChar": "🥘", + "emoji": "🥘", + "description": "shallow pan of food", + "aliases": [ + "shallow_pan_of_food" + ], + "tags": [], + "unicode": "🥘", + "htmlDec": "🥘", + "htmlHex": "🥘" + }, + { + "emojiChar": "🥗", + "emoji": "🥗", + "description": "green salad", + "aliases": [ + "green_salad" + ], + "tags": [], + "unicode": "🥗", + "htmlDec": "🥗", + "htmlHex": "🥗" + }, + { + "emojiChar": "🥛", + "emoji": "🥛", + "description": "glass of milk", + "aliases": [ + "glass_of_milk" + ], + "tags": [], + "unicode": "🥛", + "htmlDec": "🥛", + "htmlHex": "🥛" + }, + { + "emojiChar": "🥂", + "emoji": "🥂", + "description": "clinking glasses", + "aliases": [ + "clinking_glasses" + ], + "tags": [], + "unicode": "🥂", + "htmlDec": "🥂", + "htmlHex": "🥂" + }, + { + "emojiChar": "🥃", + "emoji": "🥃", + "description": "tumbler glass", + "aliases": [ + "tumbler_glass" + ], + "tags": [], + "unicode": "🥃", + "htmlDec": "🥃", + "htmlHex": "🥃" + }, + { + "emojiChar": "🥄", + "emoji": "🥄", + "description": "spoon", + "aliases": [ + "spoon" + ], + "tags": [], + "unicode": "🥄", + "htmlDec": "🥄", + "htmlHex": "🥄" + }, + { + "emojiChar": "🛑", + "emoji": "🛑", + "description": "octagonal sign", + "aliases": [ + "octagonal_sign", + "stop_sign" + ], + "tags": [], + "unicode": "🛑", + "htmlDec": "🛑", + "htmlHex": "🛑" + }, + { + "emojiChar": "🛴", + "emoji": "🛴", + "description": "scooter", + "aliases": [ + "scooter" + ], + "tags": [], + "unicode": "🛴", + "htmlDec": "🛴", + "htmlHex": "🛴" + }, + { + "emojiChar": "🛵", + "emoji": "🛵", + "description": "motor scooter", + "aliases": [ + "motor_scooter" + ], + "tags": [], + "unicode": "🛵", + "htmlDec": "🛵", + "htmlHex": "🛵" + }, + { + "emojiChar": "🛶", + "emoji": "🛶", + "description": "canoe", + "aliases": [ + "canoe" + ], + "tags": [], + "unicode": "🛶", + "htmlDec": "🛶", + "htmlHex": "🛶" + }, + { + "emojiChar": "🥇", + "emoji": "🥇", + "description": "first place medal", + "aliases": [ + "first_place_medal" + ], + "tags": [], + "unicode": "🥇", + "htmlDec": "🥇", + "htmlHex": "🥇" + }, + { + "emojiChar": "🥈", + "emoji": "🥈", + "description": "second place medal", + "aliases": [ + "second_place_medal" + ], + "tags": [], + "unicode": "🥈", + "htmlDec": "🥈", + "htmlHex": "🥈" + }, + { + "emojiChar": "🥉", + "emoji": "🥉", + "description": "third place medal", + "aliases": [ + "third_place_medal" + ], + "tags": [], + "unicode": "🥉", + "htmlDec": "🥉", + "htmlHex": "🥉" + }, + { + "emojiChar": "🥊", + "emoji": "🥊", + "description": "boxing glove", + "aliases": [ + "boxing_glove" + ], + "tags": [], + "unicode": "🥊", + "htmlDec": "🥊", + "htmlHex": "🥊" + }, + { + "emojiChar": "🥋", + "emoji": "🥋", + "description": "martial arts uniform", + "aliases": [ + "martial_arts_uniform" + ], + "tags": [], + "unicode": "🥋", + "htmlDec": "🥋", + "htmlHex": "🥋" + }, + { + "emojiChar": "🤸", + "emoji": "🤸", + "description": "person doing cartwheel", + "supports_fitzpatrick": true, + "aliases": [ + "person_doing_cartwheel" + ], + "tags": [], + "unicode": "🤸", + "htmlDec": "🤸", + "htmlHex": "🤸" + }, + { + "emojiChar": "🤸‍♂️", + "emoji": "🤸‍♂️", + "description": "man doing cartwheel", + "supports_fitzpatrick": true, + "aliases": [ + "man_doing_cartwheel", + "male_doing_cartwheel" + ], + "tags": [], + "unicode": "🤸‍♂️", + "htmlDec": "🤸‍♂️", + "htmlHex": "🤸‍♂️" + }, + { + "emojiChar": "🤸‍♀️", + "emoji": "🤸‍♀️", + "description": "woman doing cartwheel", + "supports_fitzpatrick": true, + "aliases": [ + "woman_doing_cartwheel", + "female_doing_cartwheel" + ], + "tags": [], + "unicode": "🤸‍♀️", + "htmlDec": "🤸‍♀️", + "htmlHex": "🤸‍♀️" + }, + { + "emojiChar": "🤼", + "emoji": "🤼", + "description": "wrestlers", + "supports_fitzpatrick": true, + "aliases": [ + "wrestlers" + ], + "tags": [], + "unicode": "🤼", + "htmlDec": "🤼", + "htmlHex": "🤼" + }, + { + "emojiChar": "🤼‍♂️", + "emoji": "🤼‍♂️", + "description": "man wrestlers", + "supports_fitzpatrick": true, + "aliases": [ + "man_wrestlers", + "male_wrestlers" + ], + "tags": [], + "unicode": "🤼‍♂️", + "htmlDec": "🤼‍♂️", + "htmlHex": "🤼‍♂️" + }, + { + "emojiChar": "🤼‍♀️", + "emoji": "🤼‍♀️", + "description": "woman wrestlers", + "supports_fitzpatrick": true, + "aliases": [ + "woman_wrestlers", + "female_wrestlers" + ], + "tags": [], + "unicode": "🤼‍♀️", + "htmlDec": "🤼‍♀️", + "htmlHex": "🤼‍♀️" + }, + { + "emojiChar": "🤽", + "emoji": "🤽", + "description": "water polo", + "supports_fitzpatrick": true, + "aliases": [ + "water_polo" + ], + "tags": [], + "unicode": "🤽", + "htmlDec": "🤽", + "htmlHex": "🤽" + }, + { + "emojiChar": "🤽‍♂️", + "emoji": "🤽‍♂️", + "description": "man water polo", + "supports_fitzpatrick": true, + "aliases": [ + "man_water_polo", + "male_water_polo" + ], + "tags": [], + "unicode": "🤽‍♂️", + "htmlDec": "🤽‍♂️", + "htmlHex": "🤽‍♂️" + }, + { + "emojiChar": "🤽‍♀️", + "emoji": "🤽‍♀️", + "description": "woman water polo", + "supports_fitzpatrick": true, + "aliases": [ + "woman_water_polo", + "female_water_polo" + ], + "tags": [], + "unicode": "🤽‍♀️", + "htmlDec": "🤽‍♀️", + "htmlHex": "🤽‍♀️" + }, + { + "emojiChar": "🤾", + "emoji": "🤾", + "description": "handball", + "supports_fitzpatrick": true, + "aliases": [ + "handball" + ], + "tags": [], + "unicode": "🤾", + "htmlDec": "🤾", + "htmlHex": "🤾" + }, + { + "emojiChar": "🤾‍♂️", + "emoji": "🤾‍♂️", + "description": "man handball", + "supports_fitzpatrick": true, + "aliases": [ + "man_handball", + "male_handball" + ], + "tags": [], + "unicode": "🤾‍♂️", + "htmlDec": "🤾‍♂️", + "htmlHex": "🤾‍♂️" + }, + { + "emojiChar": "🤾‍♀️", + "emoji": "🤾‍♀️", + "description": "woman handball", + "supports_fitzpatrick": true, + "aliases": [ + "woman_handball", + "female_handball" + ], + "tags": [], + "unicode": "🤾‍♀️", + "htmlDec": "🤾‍♀️", + "htmlHex": "🤾‍♀️" + }, + { + "emojiChar": "🤺", + "emoji": "🤺", + "description": "fencer", + "aliases": [ + "fencer" + ], + "tags": [], + "unicode": "🤺", + "htmlDec": "🤺", + "htmlHex": "🤺" + }, + { + "emojiChar": "🥅", + "emoji": "🥅", + "description": "goal net", + "aliases": [ + "goal_net" + ], + "tags": [], + "unicode": "🥅", + "htmlDec": "🥅", + "htmlHex": "🥅" + }, + { + "emojiChar": "🤹", + "emoji": "🤹", + "description": "juggling", + "supports_fitzpatrick": true, + "aliases": [ + "juggling" + ], + "tags": [], + "unicode": "🤹", + "htmlDec": "🤹", + "htmlHex": "🤹" + }, + { + "emojiChar": "🤹‍♂️", + "emoji": "🤹‍♂️", + "description": "man juggling", + "supports_fitzpatrick": true, + "aliases": [ + "man_juggling", + "male_juggling" + ], + "tags": [], + "unicode": "🤹‍♂️", + "htmlDec": "🤹‍♂️", + "htmlHex": "🤹‍♂️" + }, + { + "emojiChar": "🤹‍♀️", + "emoji": "🤹‍♀️", + "description": "woman juggling", + "supports_fitzpatrick": true, + "aliases": [ + "woman_juggling", + "female_juggling" + ], + "tags": [], + "unicode": "🤹‍♀️", + "htmlDec": "🤹‍♀️", + "htmlHex": "🤹‍♀️" + }, + { + "emojiChar": "🥁", + "emoji": "🥁", + "description": "drum with drumsticks", + "aliases": [ + "drum_with_drumsticks" + ], + "tags": [], + "unicode": "🥁", + "htmlDec": "🥁", + "htmlHex": "🥁" + }, + { + "emojiChar": "🛒", + "emoji": "🛒", + "description": "shopping trolley", + "aliases": [ + "shopping_trolley", + "shopping_cart" + ], + "tags": [], + "unicode": "🛒", + "htmlDec": "🛒", + "htmlHex": "🛒" + }, + { + "emojiChar": "👨‍⚕️", + "emoji": "👨‍⚕️", + "description": "man health worker", + "supports_fitzpatrick": true, + "aliases": [ + "male_health_worker", + "man_health_worker" + ], + "tags": [], + "unicode": "👨‍⚕️", + "htmlDec": "👨‍⚕️", + "htmlHex": "👨‍⚕️" + }, + { + "emojiChar": "👩‍⚕️", + "emoji": "👩‍⚕️", + "description": "woman health worker", + "supports_fitzpatrick": true, + "aliases": [ + "female_health_worker", + "woman_health_worker" + ], + "tags": [], + "unicode": "👩‍⚕️", + "htmlDec": "👩‍⚕️", + "htmlHex": "👩‍⚕️" + }, + { + "emojiChar": "👨‍🎓", + "emoji": "👨‍🎓", + "description": "man student", + "supports_fitzpatrick": true, + "aliases": [ + "male_student", + "man_student" + ], + "tags": [], + "unicode": "👨‍🎓", + "htmlDec": "👨‍🎓", + "htmlHex": "👨‍🎓" + }, + { + "emojiChar": "👩‍🎓", + "emoji": "👩‍🎓", + "description": "woman student", + "supports_fitzpatrick": true, + "aliases": [ + "female_student", + "woman_student" + ], + "tags": [], + "unicode": "👩‍🎓", + "htmlDec": "👩‍🎓", + "htmlHex": "👩‍🎓" + }, + { + "emojiChar": "👨‍🏫", + "emoji": "👨‍🏫", + "description": "man teacher", + "supports_fitzpatrick": true, + "aliases": [ + "male_teacher", + "man_teacher" + ], + "tags": [], + "unicode": "👨‍🏫", + "htmlDec": "👨‍🏫", + "htmlHex": "👨‍🏫" + }, + { + "emojiChar": "👩‍🏫", + "emoji": "👩‍🏫", + "description": "woman teacher", + "supports_fitzpatrick": true, + "aliases": [ + "female_teacher", + "woman_teacher" + ], + "tags": [], + "unicode": "👩‍🏫", + "htmlDec": "👩‍🏫", + "htmlHex": "👩‍🏫" + }, + { + "emojiChar": "👨‍🌾", + "emoji": "👨‍🌾", + "description": "man farmer", + "supports_fitzpatrick": true, + "aliases": [ + "male_farmer", + "man_farmer" + ], + "tags": [], + "unicode": "👨‍🌾", + "htmlDec": "👨‍🌾", + "htmlHex": "👨‍🌾" + }, + { + "emojiChar": "👩‍🌾", + "emoji": "👩‍🌾", + "description": "woman famer", + "supports_fitzpatrick": true, + "aliases": [ + "female_farmer", + "woman_farmer" + ], + "tags": [], + "unicode": "👩‍🌾", + "htmlDec": "👩‍🌾", + "htmlHex": "👩‍🌾" + }, + { + "emojiChar": "👨‍🍳", + "emoji": "👨‍🍳", + "description": "man cook", + "supports_fitzpatrick": true, + "aliases": [ + "male_cook", + "man_cook" + ], + "tags": [], + "unicode": "👨‍🍳", + "htmlDec": "👨‍🍳", + "htmlHex": "👨‍🍳" + }, + { + "emojiChar": "👩‍🍳", + "emoji": "👩‍🍳", + "description": "woman cook", + "supports_fitzpatrick": true, + "aliases": [ + "female_cook", + "woman_cook" + ], + "tags": [], + "unicode": "👩‍🍳", + "htmlDec": "👩‍🍳", + "htmlHex": "👩‍🍳" + }, + { + "emojiChar": "👨‍🔧", + "emoji": "👨‍🔧", + "description": "man mechanic", + "supports_fitzpatrick": true, + "aliases": [ + "male_mechanic", + "man_mechanic" + ], + "tags": [], + "unicode": "👨‍🔧", + "htmlDec": "👨‍🔧", + "htmlHex": "👨‍🔧" + }, + { + "emojiChar": "👩‍🔧", + "emoji": "👩‍🔧", + "description": "woman mechanic", + "supports_fitzpatrick": true, + "aliases": [ + "female_mechanic", + "woman_mechanic" + ], + "tags": [], + "unicode": "👩‍🔧", + "htmlDec": "👩‍🔧", + "htmlHex": "👩‍🔧" + }, + { + "emojiChar": "👨‍🏭", + "emoji": "👨‍🏭", + "description": "man factory worker", + "supports_fitzpatrick": true, + "aliases": [ + "male_factory_worker", + "man_factory_worker" + ], + "tags": [], + "unicode": "👨‍🏭", + "htmlDec": "👨‍🏭", + "htmlHex": "👨‍🏭" + }, + { + "emojiChar": "👩‍🏭", + "emoji": "👩‍🏭", + "description": "woman factory worker", + "supports_fitzpatrick": true, + "aliases": [ + "female_factory_worker", + "woman_factory_worker" + ], + "tags": [], + "unicode": "👩‍🏭", + "htmlDec": "👩‍🏭", + "htmlHex": "👩‍🏭" + }, + { + "emojiChar": "👨‍💼", + "emoji": "👨‍💼", + "description": "man office worker", + "supports_fitzpatrick": true, + "aliases": [ + "male_office_worker", + "man_office_worker" + ], + "tags": [], + "unicode": "👨‍💼", + "htmlDec": "👨‍💼", + "htmlHex": "👨‍💼" + }, + { + "emojiChar": "👩‍💼", + "emoji": "👩‍💼", + "description": "woman office worker", + "supports_fitzpatrick": true, + "aliases": [ + "female_office_worker", + "woman_office_worker" + ], + "tags": [], + "unicode": "👩‍💼", + "htmlDec": "👩‍💼", + "htmlHex": "👩‍💼" + }, + { + "emojiChar": "👨‍🔬", + "emoji": "👨‍🔬", + "description": "man scientist", + "supports_fitzpatrick": true, + "aliases": [ + "male_scientist", + "man_scientist" + ], + "tags": [], + "unicode": "👨‍🔬", + "htmlDec": "👨‍🔬", + "htmlHex": "👨‍🔬" + }, + { + "emojiChar": "👩‍🔬", + "emoji": "👩‍🔬", + "description": "woman scientist", + "supports_fitzpatrick": true, + "aliases": [ + "female_scientist", + "woman_scientist" + ], + "tags": [], + "unicode": "👩‍🔬", + "htmlDec": "👩‍🔬", + "htmlHex": "👩‍🔬" + }, + { + "emojiChar": "👨‍💻", + "emoji": "👨‍💻", + "description": "man technologist", + "supports_fitzpatrick": true, + "aliases": [ + "male_technologist", + "man_technologist" + ], + "tags": [], + "unicode": "👨‍💻", + "htmlDec": "👨‍💻", + "htmlHex": "👨‍💻" + }, + { + "emojiChar": "👩‍💻", + "emoji": "👩‍💻", + "description": "woman technologist", + "supports_fitzpatrick": true, + "aliases": [ + "female_technologist", + "woman_technologist" + ], + "tags": [], + "unicode": "👩‍💻", + "htmlDec": "👩‍💻", + "htmlHex": "👩‍💻" + }, + { + "emojiChar": "👨‍🎤", + "emoji": "👨‍🎤", + "description": "man singer", + "supports_fitzpatrick": true, + "aliases": [ + "male_singer", + "man_singer" + ], + "tags": [], + "unicode": "👨‍🎤", + "htmlDec": "👨‍🎤", + "htmlHex": "👨‍🎤" + }, + { + "emojiChar": "👩‍🎤", + "emoji": "👩‍🎤", + "description": "woman singer", + "supports_fitzpatrick": true, + "aliases": [ + "female_singer", + "woman_singer" + ], + "tags": [], + "unicode": "👩‍🎤", + "htmlDec": "👩‍🎤", + "htmlHex": "👩‍🎤" + }, + { + "emojiChar": "👨‍🎨", + "emoji": "👨‍🎨", + "description": "man artist", + "supports_fitzpatrick": true, + "aliases": [ + "male_artist", + "man_artist" + ], + "tags": [], + "unicode": "👨‍🎨", + "htmlDec": "👨‍🎨", + "htmlHex": "👨‍🎨" + }, + { + "emojiChar": "👩‍🎨", + "emoji": "👩‍🎨", + "description": "woman artist", + "supports_fitzpatrick": true, + "aliases": [ + "female_artist", + "woman_artist" + ], + "tags": [], + "unicode": "👩‍🎨", + "htmlDec": "👩‍🎨", + "htmlHex": "👩‍🎨" + }, + { + "emojiChar": "👨‍✈️", + "emoji": "👨‍✈️", + "description": "man pilot", + "supports_fitzpatrick": true, + "aliases": [ + "male_pilot", + "man_pilot" + ], + "tags": [], + "unicode": "👨‍✈️", + "htmlDec": "👨‍✈️", + "htmlHex": "👨‍✈️" + }, + { + "emojiChar": "👩‍✈️", + "emoji": "👩‍✈️", + "description": "woman pilot", + "supports_fitzpatrick": true, + "aliases": [ + "female_pilot", + "woman_pilot" + ], + "tags": [], + "unicode": "👩‍✈️", + "htmlDec": "👩‍✈️", + "htmlHex": "👩‍✈️" + }, + { + "emojiChar": "👨‍🚀", + "emoji": "👨‍🚀", + "description": "man astronaut", + "supports_fitzpatrick": true, + "aliases": [ + "male_astronaut", + "man_astronaut" + ], + "tags": [], + "unicode": "👨‍🚀", + "htmlDec": "👨‍🚀", + "htmlHex": "👨‍🚀" + }, + { + "emojiChar": "👩‍🚀", + "emoji": "👩‍🚀", + "description": "woman astronaut", + "supports_fitzpatrick": true, + "aliases": [ + "female_astronaut", + "woman_astronaut" + ], + "tags": [], + "unicode": "👩‍🚀", + "htmlDec": "👩‍🚀", + "htmlHex": "👩‍🚀" + }, + { + "emojiChar": "👨‍🚒", + "emoji": "👨‍🚒", + "description": "man firefighter", + "supports_fitzpatrick": true, + "aliases": [ + "male_firefighter", + "man_firefighter" + ], + "tags": [], + "unicode": "👨‍🚒", + "htmlDec": "👨‍🚒", + "htmlHex": "👨‍🚒" + }, + { + "emojiChar": "👩‍🚒", + "emoji": "👩‍🚒", + "description": "woman firefighter", + "supports_fitzpatrick": true, + "aliases": [ + "female_firefighter", + "woman_firefighter" + ], + "tags": [], + "unicode": "👩‍🚒", + "htmlDec": "👩‍🚒", + "htmlHex": "👩‍🚒" + }, + { + "emojiChar": "🤦‍♀️", + "emoji": "🤦‍♀️", + "description": "woman facepalm", + "supports_fitzpatrick": true, + "aliases": [ + "female_facepalm", + "woman_facepalm" + ], + "tags": [], + "unicode": "🤦‍♀️", + "htmlDec": "🤦‍♀️", + "htmlHex": "🤦‍♀️" + }, + { + "emojiChar": "🤷‍♂️", + "emoji": "🤷‍♂️", + "description": "man shrug", + "supports_fitzpatrick": true, + "aliases": [ + "male_shrug", + "man_shrug" + ], + "tags": [], + "unicode": "🤷‍♂️", + "htmlDec": "🤷‍♂️", + "htmlHex": "🤷‍♂️" + }, + { + "emojiChar": "🤷‍♀️", + "emoji": "🤷‍♀️", + "description": "woman shrug", + "supports_fitzpatrick": true, + "aliases": [ + "female_shrug", + "woman_shrug" + ], + "tags": [], + "unicode": "🤷‍♀️", + "htmlDec": "🤷‍♀️", + "htmlHex": "🤷‍♀️" + }, + { + "emojiChar": "⚕", + "emoji": "⚕", + "description": "medical symbol", + "aliases": [ + "medical_symbol", + "staff_of_aesculapius" + ], + "tags": [], + "unicode": "⚕", + "htmlDec": "⚕", + "htmlHex": "⚕" + }, + { + "emojiChar": "👨‍⚖️", + "emoji": "👨‍⚖️", + "description": "man judge", + "aliases": [ + "man_judge", + "male_judge" + ], + "tags": [], + "unicode": "👨‍⚖️", + "htmlDec": "👨‍⚖️", + "htmlHex": "👨‍⚖️" + }, + { + "emojiChar": "👩‍⚖️", + "emoji": "👩‍⚖️", + "description": "woman judge", + "aliases": [ + "woman_judge", + "female_judge" + ], + "tags": [], + "unicode": "👩‍⚖️", + "htmlDec": "👩‍⚖️", + "htmlHex": "👩‍⚖️" + }, + { + "emojiChar": "🤩", + "emoji": "🤩", + "description": "star-struck", + "aliases": [ + "star_struck", + "excited", + "star_eyes", + "starry_eyed", + "wow_face", + "face_with_starry_eyes", + "grinning_face_with_star_eyes" + ], + "tags": [], + "unicode": "🤩", + "htmlDec": "🤩", + "htmlHex": "🤩" + }, + { + "emojiChar": "🤪", + "emoji": "🤪", + "description": "zany face", + "aliases": [ + "zany_face", + "crazy_eyes", + "wild", + "goofy_face", + "grinning_face_with_one_large_and_one_small_eye" + ], + "tags": [], + "unicode": "🤪", + "htmlDec": "🤪", + "htmlHex": "🤪" + }, + { + "emojiChar": "🤭", + "emoji": "🤭", + "description": "face with hand over mouth", + "aliases": [ + "face_with_hand_over_mouth", + "blushing_face_with_hand_over_mouth", + "smiling_face_with_smiling_eyes_and_hand_covering_mouth" + ], + "tags": [], + "unicode": "🤭", + "htmlDec": "🤭", + "htmlHex": "🤭" + }, + { + "emojiChar": "🤫", + "emoji": "🤫", + "description": "shushing face", + "aliases": [ + "shushing_face", + "hush", + "quiet", + "shh", + "face_with_finger_covering_closed_lips" + ], + "tags": [], + "unicode": "🤫", + "htmlDec": "🤫", + "htmlHex": "🤫" + }, + { + "emojiChar": "🤨", + "emoji": "🤨", + "description": "face with raised eyebrow", + "aliases": [ + "face_with_raised_eyebrow", + "colbert", + "the_rock", + "face_with_one_eyebrow_raised" + ], + "tags": [], + "unicode": "🤨", + "htmlDec": "🤨", + "htmlHex": "🤨" + }, + { + "emojiChar": "🤮", + "emoji": "🤮", + "description": "face vomiting", + "aliases": [ + "face_vomiting", + "spew", + "throwing_up", + "vomit", + "vomiting_face", + "face_with_open_mouth_vomiting" + ], + "tags": [], + "unicode": "🤮", + "htmlDec": "🤮", + "htmlHex": "🤮" + }, + { + "emojiChar": "🤯", + "emoji": "🤯", + "description": "exploding head", + "aliases": [ + "exploding_head", + "mind_blown", + "shocked_face_with_exploding_head" + ], + "tags": [], + "unicode": "🤯", + "htmlDec": "🤯", + "htmlHex": "🤯" + }, + { + "emojiChar": "🧐", + "emoji": "🧐", + "description": "face with monocle", + "aliases": [ + "face_with_monocle" + ], + "tags": [], + "unicode": "🧐", + "htmlDec": "🧐", + "htmlHex": "🧐" + }, + { + "emojiChar": "🤬", + "emoji": "🤬", + "description": "face with symbols on mouth", + "aliases": [ + "face_with_symbols_on_mouth", + "cursing", + "cussing", + "grawlix", + "swearing", + "face_with_symbols_over_mouth", + "serious_face_with_symbols_covering_mouth" + ], + "tags": [], + "unicode": "🤬", + "htmlDec": "🤬", + "htmlHex": "🤬" + }, + { + "emojiChar": "🧡", + "emoji": "🧡", + "description": "orange heart", + "aliases": [ + "orange_heart" + ], + "tags": [], + "unicode": "🧡", + "htmlDec": "🧡", + "htmlHex": "🧡" + }, + { + "emojiChar": "🤟", + "emoji": "🤟", + "description": "love you gesture", + "supports_fitzpatrick": true, + "aliases": [ + "love_you_gesture", + "i_love_you_hand_sign" + ], + "tags": [], + "unicode": "🤟", + "htmlDec": "🤟", + "htmlHex": "🤟" + }, + { + "emojiChar": "🤲", + "emoji": "🤲", + "description": "palms up together", + "supports_fitzpatrick": true, + "aliases": [ + "palms_up_together", + "dua", + "palms_together_facing_up" + ], + "tags": [], + "unicode": "🤲", + "htmlDec": "🤲", + "htmlHex": "🤲" + }, + { + "emojiChar": "🧠", + "emoji": "🧠", + "description": "brain", + "aliases": [ + "brain" + ], + "tags": [], + "unicode": "🧠", + "htmlDec": "🧠", + "htmlHex": "🧠" + }, + { + "emojiChar": "🧒", + "emoji": "🧒", + "description": "child", + "supports_fitzpatrick": true, + "aliases": [ + "child", + "gender_neutral_child" + ], + "tags": [], + "unicode": "🧒", + "htmlDec": "🧒", + "htmlHex": "🧒" + }, + { + "emojiChar": "🧑", + "emoji": "🧑", + "description": "person", + "supports_fitzpatrick": true, + "aliases": [ + "person", + "gender_neutral_adult", + "gender_neutral_person" + ], + "tags": [], + "unicode": "🧑", + "htmlDec": "🧑", + "htmlHex": "🧑" + }, + { + "emojiChar": "🧔", + "emoji": "🧔", + "description": "man: beard", + "supports_fitzpatrick": true, + "aliases": [ + "beard", + "bearded_man", + "bearded_person", + "man_with_beard", + "person_with_beard" + ], + "tags": [], + "unicode": "🧔", + "htmlDec": "🧔", + "htmlHex": "🧔" + }, + { + "emojiChar": "🧓", + "emoji": "🧓", + "description": "older person", + "supports_fitzpatrick": true, + "aliases": [ + "older_person", + "gender_neutral_older_person", + "older_adult", + "gender_neutral_older_adult" + ], + "tags": [], + "unicode": "🧓", + "htmlDec": "🧓", + "htmlHex": "🧓" + }, + { + "emojiChar": "🧕", + "emoji": "🧕", + "description": "person with headscarf", + "supports_fitzpatrick": true, + "aliases": [ + "person_with_headscarf", + "woman_with_headscarf", + "hijab" + ], + "tags": [], + "unicode": "🧕", + "htmlDec": "🧕", + "htmlHex": "🧕" + }, + { + "emojiChar": "🤱", + "emoji": "🤱", + "description": "breastfeeding", + "supports_fitzpatrick": true, + "aliases": [ + "breastfeeding" + ], + "tags": [], + "unicode": "🤱", + "htmlDec": "🤱", + "htmlHex": "🤱" + }, + { + "emojiChar": "🧙", + "emoji": "🧙", + "description": "mage", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "mage", + "gender_neutral_mage" + ], + "tags": [ + "mage" + ], + "unicode": "🧙", + "htmlDec": "🧙", + "htmlHex": "🧙" + }, + { + "emojiChar": "🧙‍♂️", + "emoji": "🧙‍♂️", + "description": "man mage", + "supports_fitzpatrick": true, + "aliases": [ + "man_mage", + "wizard", + "sorcerer" + ], + "tags": [ + "mage" + ], + "unicode": "🧙‍♂️", + "htmlDec": "🧙‍♂️", + "htmlHex": "🧙‍♂️" + }, + { + "emojiChar": "🧙‍♀️", + "emoji": "🧙‍♀️", + "description": "woman mage", + "supports_fitzpatrick": true, + "aliases": [ + "woman_mage", + "witch", + "sorceress" + ], + "tags": [ + "mage" + ], + "unicode": "🧙‍♀️", + "htmlDec": "🧙‍♀️", + "htmlHex": "🧙‍♀️" + }, + { + "emojiChar": "🧚", + "emoji": "🧚", + "description": "fairy", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "fairy", + "gender_neutral_fairy" + ], + "tags": [ + "fairy" + ], + "unicode": "🧚", + "htmlDec": "🧚", + "htmlHex": "🧚" + }, + { + "emojiChar": "🧚‍♂️", + "emoji": "🧚‍♂️", + "description": "man fairy", + "supports_fitzpatrick": true, + "aliases": [ + "man_fairy" + ], + "tags": [ + "fairy" + ], + "unicode": "🧚‍♂️", + "htmlDec": "🧚‍♂️", + "htmlHex": "🧚‍♂️" + }, + { + "emojiChar": "🧚‍♀️", + "emoji": "🧚‍♀️", + "description": "woman fairy", + "supports_fitzpatrick": true, + "aliases": [ + "woman_fairy" + ], + "tags": [ + "fairy" + ], + "unicode": "🧚‍♀️", + "htmlDec": "🧚‍♀️", + "htmlHex": "🧚‍♀️" + }, + { + "emojiChar": "🧛", + "emoji": "🧛", + "description": "vampire", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "vampire", + "gender_neutral_vampire" + ], + "tags": [ + "vampire" + ], + "unicode": "🧛", + "htmlDec": "🧛", + "htmlHex": "🧛" + }, + { + "emojiChar": "🧛‍♂️", + "emoji": "🧛‍♂️", + "description": "man vampire", + "supports_fitzpatrick": true, + "aliases": [ + "man_vampire", + "dracula" + ], + "tags": [ + "vampire" + ], + "unicode": "🧛‍♂️", + "htmlDec": "🧛‍♂️", + "htmlHex": "🧛‍♂️" + }, + { + "emojiChar": "🧛‍♀️", + "emoji": "🧛‍♀️", + "description": "woman vampire", + "supports_fitzpatrick": true, + "aliases": [ + "woman_vampire" + ], + "tags": [ + "vampire" + ], + "unicode": "🧛‍♀️", + "htmlDec": "🧛‍♀️", + "htmlHex": "🧛‍♀️" + }, + { + "emojiChar": "🧜", + "emoji": "🧜", + "description": "merperson", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "merperson", + "gender_neutral_merperson" + ], + "tags": [ + "merperson" + ], + "unicode": "🧜", + "htmlDec": "🧜", + "htmlHex": "🧜" + }, + { + "emojiChar": "🧜‍♂️", + "emoji": "🧜‍♂️", + "description": "merman", + "supports_fitzpatrick": true, + "aliases": [ + "merman", + "merboy", + "man_merperson" + ], + "tags": [ + "merperson" + ], + "unicode": "🧜‍♂️", + "htmlDec": "🧜‍♂️", + "htmlHex": "🧜‍♂️" + }, + { + "emojiChar": "🧜‍♀️", + "emoji": "🧜‍♀️", + "description": "mermaid", + "supports_fitzpatrick": true, + "aliases": [ + "mermaid", + "mergirl", + "woman_merperson" + ], + "tags": [ + "merperson" + ], + "unicode": "🧜‍♀️", + "htmlDec": "🧜‍♀️", + "htmlHex": "🧜‍♀️" + }, + { + "emojiChar": "🧝", + "emoji": "🧝", + "description": "elf", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "elf", + "gender_neutral_elf" + ], + "tags": [ + "elf" + ], + "unicode": "🧝", + "htmlDec": "🧝", + "htmlHex": "🧝" + }, + { + "emojiChar": "🧝‍♂️", + "emoji": "🧝‍♂️", + "description": "man elf", + "supports_fitzpatrick": true, + "aliases": [ + "man_elf", + "legolas" + ], + "tags": [ + "elf" + ], + "unicode": "🧝‍♂️", + "htmlDec": "🧝‍♂️", + "htmlHex": "🧝‍♂️" + }, + { + "emojiChar": "🧝‍♀️", + "emoji": "🧝‍♀️", + "description": "woman elf", + "supports_fitzpatrick": true, + "aliases": [ + "woman_elf" + ], + "tags": [ + "elf" + ], + "unicode": "🧝‍♀️", + "htmlDec": "🧝‍♀️", + "htmlHex": "🧝‍♀️" + }, + { + "emojiChar": "🧞", + "emoji": "🧞", + "description": "genie", + "supports_gender": true, + "aliases": [ + "genie", + "gender_neutral_genie", + "djinni", + "jinni" + ], + "tags": [ + "genie" + ], + "unicode": "🧞", + "htmlDec": "🧞", + "htmlHex": "🧞" + }, + { + "emojiChar": "🧞‍♂️", + "emoji": "🧞‍♂️", + "description": "man genie", + "aliases": [ + "man_genie" + ], + "tags": [ + "genie" + ], + "unicode": "🧞‍♂️", + "htmlDec": "🧞‍♂️", + "htmlHex": "🧞‍♂️" + }, + { + "emojiChar": "🧞‍♀️", + "emoji": "🧞‍♀️", + "description": "woman genie", + "aliases": [ + "woman_genie" + ], + "tags": [ + "genie" + ], + "unicode": "🧞‍♀️", + "htmlDec": "🧞‍♀️", + "htmlHex": "🧞‍♀️" + }, + { + "emojiChar": "🧟", + "emoji": "🧟", + "description": "zombie", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "zombie", + "gender_neutral_zombie" + ], + "tags": [ + "zombie" + ], + "unicode": "🧟", + "htmlDec": "🧟", + "htmlHex": "🧟" + }, + { + "emojiChar": "🧟‍♂️", + "emoji": "🧟‍♂️", + "description": "man zombie", + "supports_fitzpatrick": true, + "aliases": [ + "man_zombie" + ], + "tags": [ + "zombie" + ], + "unicode": "🧟‍♂️", + "htmlDec": "🧟‍♂️", + "htmlHex": "🧟‍♂️" + }, + { + "emojiChar": "🧟‍♀️", + "emoji": "🧟‍♀️", + "description": "woman zombie", + "supports_fitzpatrick": true, + "aliases": [ + "woman_zombie" + ], + "tags": [ + "zombie" + ], + "unicode": "🧟‍♀️", + "htmlDec": "🧟‍♀️", + "htmlHex": "🧟‍♀️" + }, + { + "emojiChar": "🧖", + "emoji": "🧖", + "description": "person in steamy room", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "person_in_steamy_room", + "sauna" + ], + "tags": [ + "person_in_steamy_room" + ], + "unicode": "🧖", + "htmlDec": "🧖", + "htmlHex": "🧖" + }, + { + "emojiChar": "🧖‍♂️", + "emoji": "🧖‍♂️", + "description": "man in steamy room", + "supports_fitzpatrick": true, + "aliases": [ + "man_in_steamy_room", + "man_in_sauna" + ], + "tags": [ + "person_in_steamy_room" + ], + "unicode": "🧖‍♂️", + "htmlDec": "🧖‍♂️", + "htmlHex": "🧖‍♂️" + }, + { + "emojiChar": "🧖‍♀️", + "emoji": "🧖‍♀️", + "description": "woman in steamy room", + "supports_fitzpatrick": true, + "aliases": [ + "woman_in_steamy_room", + "woman_in_sauna" + ], + "tags": [ + "person_in_steamy_room" + ], + "unicode": "🧖‍♀️", + "htmlDec": "🧖‍♀️", + "htmlHex": "🧖‍♀️" + }, + { + "emojiChar": "🧗", + "emoji": "🧗", + "description": "person climbing", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "person_climbing", + "climber", + "rock_climbing" + ], + "tags": [ + "person_climbing" + ], + "unicode": "🧗", + "htmlDec": "🧗", + "htmlHex": "🧗" + }, + { + "emojiChar": "🧗‍♂️", + "emoji": "🧗‍♂️", + "description": "man climbing", + "supports_fitzpatrick": true, + "aliases": [ + "man_climbing", + "man_climber", + "man_rock_climbing" + ], + "tags": [ + "person_climbing" + ], + "unicode": "🧗‍♂️", + "htmlDec": "🧗‍♂️", + "htmlHex": "🧗‍♂️" + }, + { + "emojiChar": "🧗‍♀️", + "emoji": "🧗‍♀️", + "description": "woman climbing", + "supports_fitzpatrick": true, + "aliases": [ + "woman_climbing", + "woman_climber", + "woman_rock_climbing" + ], + "tags": [ + "person_climbing" + ], + "unicode": "🧗‍♀️", + "htmlDec": "🧗‍♀️", + "htmlHex": "🧗‍♀️" + }, + { + "emojiChar": "🧘", + "emoji": "🧘", + "description": "person in lotus position", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "person_in_lotus_position", + "yoga", + "meditation" + ], + "tags": [ + "person_in_lotus_position" + ], + "unicode": "🧘", + "htmlDec": "🧘", + "htmlHex": "🧘" + }, + { + "emojiChar": "🧘‍♂️", + "emoji": "🧘‍♂️", + "description": "man in lotus position", + "supports_fitzpatrick": true, + "aliases": [ + "man_in_lotus_position", + "man_yoga", + "man_meditation" + ], + "tags": [ + "person_in_lotus_position" + ], + "unicode": "🧘‍♂️", + "htmlDec": "🧘‍♂️", + "htmlHex": "🧘‍♂️" + }, + { + "emojiChar": "🧘‍♀️", + "emoji": "🧘‍♀️", + "description": "woman in lotus position", + "supports_fitzpatrick": true, + "aliases": [ + "woman_in_lotus_position", + "woman_yoga", + "woman_meditation" + ], + "tags": [ + "person_in_lotus_position" + ], + "unicode": "🧘‍♀️", + "htmlDec": "🧘‍♀️", + "htmlHex": "🧘‍♀️" + }, + { + "emojiChar": "🦓", + "emoji": "🦓", + "description": "zebra face", + "aliases": [ + "zebra_face", + "zebra" + ], + "tags": [], + "unicode": "🦓", + "htmlDec": "🦓", + "htmlHex": "🦓" + }, + { + "emojiChar": "🦒", + "emoji": "🦒", + "description": "giraffe face", + "aliases": [ + "giraffe_face", + "giraffe" + ], + "tags": [], + "unicode": "🦒", + "htmlDec": "🦒", + "htmlHex": "🦒" + }, + { + "emojiChar": "🦔", + "emoji": "🦔", + "description": "hedgehog", + "aliases": [ + "hedgehog" + ], + "tags": [], + "unicode": "🦔", + "htmlDec": "🦔", + "htmlHex": "🦔" + }, + { + "emojiChar": "🦕", + "emoji": "🦕", + "description": "sauropod", + "aliases": [ + "sauropod", + "brontosaurus", + "diplodocus", + "dinosaur" + ], + "tags": [], + "unicode": "🦕", + "htmlDec": "🦕", + "htmlHex": "🦕" + }, + { + "emojiChar": "🦖", + "emoji": "🦖", + "description": "T-Rex", + "aliases": [ + "trex", + "t_rex", + "tyrannosaurus_rex" + ], + "tags": [], + "unicode": "🦖", + "htmlDec": "🦖", + "htmlHex": "🦖" + }, + { + "emojiChar": "🦗", + "emoji": "🦗", + "description": "cricket", + "aliases": [ + "cricket" + ], + "tags": [], + "unicode": "🦗", + "htmlDec": "🦗", + "htmlHex": "🦗" + }, + { + "emojiChar": "🥥", + "emoji": "🥥", + "description": "coconut", + "aliases": [ + "coconut", + "cocoanut" + ], + "tags": [], + "unicode": "🥥", + "htmlDec": "🥥", + "htmlHex": "🥥" + }, + { + "emojiChar": "🥦", + "emoji": "🥦", + "description": "broccoli", + "aliases": [ + "broccoli" + ], + "tags": [], + "unicode": "🥦", + "htmlDec": "🥦", + "htmlHex": "🥦" + }, + { + "emojiChar": "🥨", + "emoji": "🥨", + "description": "pretzel", + "aliases": [ + "pretzel" + ], + "tags": [], + "unicode": "🥨", + "htmlDec": "🥨", + "htmlHex": "🥨" + }, + { + "emojiChar": "🥩", + "emoji": "🥩", + "description": "cut of meat", + "aliases": [ + "cut_of_meat", + "meat", + "steak" + ], + "tags": [], + "unicode": "🥩", + "htmlDec": "🥩", + "htmlHex": "🥩" + }, + { + "emojiChar": "🥪", + "emoji": "🥪", + "description": "sandwich", + "aliases": [ + "sandwich" + ], + "tags": [], + "unicode": "🥪", + "htmlDec": "🥪", + "htmlHex": "🥪" + }, + { + "emojiChar": "🥣", + "emoji": "🥣", + "description": "bowl with spoon", + "aliases": [ + "bowl_with_spoon", + "cereal_bowl" + ], + "tags": [], + "unicode": "🥣", + "htmlDec": "🥣", + "htmlHex": "🥣" + }, + { + "emojiChar": "🥫", + "emoji": "🥫", + "description": "canned food", + "aliases": [ + "canned_food", + "tin_can", + "can_of_food", + "tinned_food" + ], + "tags": [], + "unicode": "🥫", + "htmlDec": "🥫", + "htmlHex": "🥫" + }, + { + "emojiChar": "🥟", + "emoji": "🥟", + "description": "dumpling", + "aliases": [ + "dumpling", + "jiaozi", + "gyoza", + "pierogi", + "empanada", + "xiaolongbao" + ], + "tags": [], + "unicode": "🥟", + "htmlDec": "🥟", + "htmlHex": "🥟" + }, + { + "emojiChar": "🥠", + "emoji": "🥠", + "description": "fortune cookie", + "aliases": [ + "fortune_cookie" + ], + "tags": [], + "unicode": "🥠", + "htmlDec": "🥠", + "htmlHex": "🥠" + }, + { + "emojiChar": "🥡", + "emoji": "🥡", + "description": "takeout box", + "aliases": [ + "takeout_box", + "chinese_food_box", + "oyster_pail" + ], + "tags": [], + "unicode": "🥡", + "htmlDec": "🥡", + "htmlHex": "🥡" + }, + { + "emojiChar": "🥧", + "emoji": "🥧", + "description": "pie", + "aliases": [ + "pie" + ], + "tags": [], + "unicode": "🥧", + "htmlDec": "🥧", + "htmlHex": "🥧" + }, + { + "emojiChar": "🥤", + "emoji": "🥤", + "description": "cup with straw", + "aliases": [ + "cup_with_straw", + "milkshake", + "smoothie", + "soda_pop", + "soft_drink", + "to_go_cup" + ], + "tags": [], + "unicode": "🥤", + "htmlDec": "🥤", + "htmlHex": "🥤" + }, + { + "emojiChar": "🥢", + "emoji": "🥢", + "description": "chopsticks", + "aliases": [ + "chopsticks" + ], + "tags": [], + "unicode": "🥢", + "htmlDec": "🥢", + "htmlHex": "🥢" + }, + { + "emojiChar": "🛸", + "emoji": "🛸", + "description": "flying saucer", + "aliases": [ + "flying_saucer", + "ufo", + "unidentified_flying_object" + ], + "tags": [], + "unicode": "🛸", + "htmlDec": "🛸", + "htmlHex": "🛸" + }, + { + "emojiChar": "🛷", + "emoji": "🛷", + "description": "sled", + "aliases": [ + "sled" + ], + "tags": [], + "unicode": "🛷", + "htmlDec": "🛷", + "htmlHex": "🛷" + }, + { + "emojiChar": "🥌", + "emoji": "🥌", + "description": "curling stone", + "aliases": [ + "curling_stone" + ], + "tags": [], + "unicode": "🥌", + "htmlDec": "🥌", + "htmlHex": "🥌" + }, + { + "emojiChar": "🧣", + "emoji": "🧣", + "description": "scarf", + "aliases": [ + "scarf" + ], + "tags": [], + "unicode": "🧣", + "htmlDec": "🧣", + "htmlHex": "🧣" + }, + { + "emojiChar": "🧤", + "emoji": "🧤", + "description": "gloves", + "aliases": [ + "gloves" + ], + "tags": [], + "unicode": "🧤", + "htmlDec": "🧤", + "htmlHex": "🧤" + }, + { + "emojiChar": "🧥", + "emoji": "🧥", + "description": "coat", + "aliases": [ + "coat" + ], + "tags": [], + "unicode": "🧥", + "htmlDec": "🧥", + "htmlHex": "🧥" + }, + { + "emojiChar": "🧦", + "emoji": "🧦", + "description": "socks", + "aliases": [ + "socks" + ], + "tags": [], + "unicode": "🧦", + "htmlDec": "🧦", + "htmlHex": "🧦" + }, + { + "emojiChar": "🧢", + "emoji": "🧢", + "description": "billed cap", + "aliases": [ + "billed_cap", + "baseball_cap", + "billed_hat" + ], + "tags": [], + "unicode": "🧢", + "htmlDec": "🧢", + "htmlHex": "🧢" + }, + { + "emojiChar": "🥰", + "emoji": "🥰", + "description": "smiling face with hearts", + "aliases": [ + "smiling_face_with_hearts", + "in_love_face", + "smiling_face_with_smiling_eyes_and_three_hearts" + ], + "tags": [], + "unicode": "🥰", + "htmlDec": "🥰", + "htmlHex": "🥰" + }, + { + "emojiChar": "🥵", + "emoji": "🥵", + "description": "hot face", + "aliases": [ + "hot_face", + "overheated_face" + ], + "tags": [], + "unicode": "🥵", + "htmlDec": "🥵", + "htmlHex": "🥵" + }, + { + "emojiChar": "🥶", + "emoji": "🥶", + "description": "cold face", + "aliases": [ + "cold_face", + "freezing_face" + ], + "tags": [], + "unicode": "🥶", + "htmlDec": "🥶", + "htmlHex": "🥶" + }, + { + "emojiChar": "🥴", + "emoji": "🥴", + "description": "woozy face", + "aliases": [ + "woozy_face", + "drunk_face", + "face_with_uneven_eyes_and_wavy_mouth" + ], + "tags": [], + "unicode": "🥴", + "htmlDec": "🥴", + "htmlHex": "🥴" + }, + { + "emojiChar": "🥳", + "emoji": "🥳", + "description": "partying face", + "aliases": [ + "partying_face", + "party_face", + "face_with_party_horn_and_party_hat" + ], + "tags": [], + "unicode": "🥳", + "htmlDec": "🥳", + "htmlHex": "🥳" + }, + { + "emojiChar": "🥺", + "emoji": "🥺", + "description": "pleading face", + "aliases": [ + "pleading_face", + "face_with_pleading_eyes" + ], + "tags": [], + "unicode": "🥺", + "htmlDec": "🥺", + "htmlHex": "🥺" + }, + { + "emojiChar": "🦵", + "emoji": "🦵", + "description": "leg", + "supports_fitzpatrick": true, + "aliases": [ + "leg" + ], + "tags": [], + "unicode": "🦵", + "htmlDec": "🦵", + "htmlHex": "🦵" + }, + { + "emojiChar": "🦶", + "emoji": "🦶", + "description": "foot", + "supports_fitzpatrick": true, + "aliases": [ + "foot" + ], + "tags": [], + "unicode": "🦶", + "htmlDec": "🦶", + "htmlHex": "🦶" + }, + { + "emojiChar": "🦷", + "emoji": "🦷", + "description": "tooth", + "aliases": [ + "tooth" + ], + "tags": [], + "unicode": "🦷", + "htmlDec": "🦷", + "htmlHex": "🦷" + }, + { + "emojiChar": "🦴", + "emoji": "🦴", + "description": "bone", + "aliases": [ + "bone" + ], + "tags": [], + "unicode": "🦴", + "htmlDec": "🦴", + "htmlHex": "🦴" + }, + { + "emojiChar": "👨‍🦰", + "emoji": "👨‍🦰", + "description": "man: red hair", + "supports_fitzpatrick": true, + "aliases": [ + "man_with_red_hair", + "man_redhead", + "man_ginger" + ], + "tags": [], + "unicode": "👨‍🦰", + "htmlDec": "👨‍🦰", + "htmlHex": "👨‍🦰" + }, + { + "emojiChar": "👩‍🦰", + "emoji": "👩‍🦰", + "description": "woman: red hair", + "supports_fitzpatrick": true, + "aliases": [ + "woman_with_red_hair", + "woman_redhead", + "woman_ginger" + ], + "tags": [], + "unicode": "👩‍🦰", + "htmlDec": "👩‍🦰", + "htmlHex": "👩‍🦰" + }, + { + "emojiChar": "👨‍🦱", + "emoji": "👨‍🦱", + "description": "man: curly hair", + "supports_fitzpatrick": true, + "aliases": [ + "man_with_curly_hair" + ], + "tags": [], + "unicode": "👨‍🦱", + "htmlDec": "👨‍🦱", + "htmlHex": "👨‍🦱" + }, + { + "emojiChar": "👩‍🦱", + "emoji": "👩‍🦱", + "description": "woman: curly hair", + "supports_fitzpatrick": true, + "aliases": [ + "woman_with_curly_hair" + ], + "tags": [], + "unicode": "👩‍🦱", + "htmlDec": "👩‍🦱", + "htmlHex": "👩‍🦱" + }, + { + "emojiChar": "👨‍🦳", + "emoji": "👨‍🦳", + "description": "man: white hair", + "supports_fitzpatrick": true, + "aliases": [ + "man_with_white_hair", + "man_with_gray_hair", + "man_with_grey_hair" + ], + "tags": [], + "unicode": "👨‍🦳", + "htmlDec": "👨‍🦳", + "htmlHex": "👨‍🦳" + }, + { + "emojiChar": "👩‍🦳", + "emoji": "👩‍🦳", + "description": "woman: white hair", + "supports_fitzpatrick": true, + "aliases": [ + "woman_with_white_hair", + "woman_with_gray_hair", + "woman_with_grey_hair" + ], + "tags": [], + "unicode": "👩‍🦳", + "htmlDec": "👩‍🦳", + "htmlHex": "👩‍🦳" + }, + { + "emojiChar": "👨‍🦲", + "emoji": "👨‍🦲", + "description": "man: bald", + "supports_fitzpatrick": true, + "aliases": [ + "man_with_no_hair", + "bald_man" + ], + "tags": [], + "unicode": "👨‍🦲", + "htmlDec": "👨‍🦲", + "htmlHex": "👨‍🦲" + }, + { + "emojiChar": "👩‍🦲", + "emoji": "👩‍🦲", + "description": "woman: bald", + "supports_fitzpatrick": true, + "aliases": [ + "woman_with_no_hair", + "bald_woman" + ], + "tags": [], + "unicode": "👩‍🦲", + "htmlDec": "👩‍🦲", + "htmlHex": "👩‍🦲" + }, + { + "emojiChar": "🦸", + "emoji": "🦸", + "description": "superhero", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "superhero" + ], + "tags": [], + "unicode": "🦸", + "htmlDec": "🦸", + "htmlHex": "🦸" + }, + { + "emojiChar": "🦸‍♂️", + "emoji": "🦸‍♂️", + "description": "man superhero", + "supports_fitzpatrick": true, + "aliases": [ + "man_superhero" + ], + "tags": [], + "unicode": "🦸‍♂️", + "htmlDec": "🦸‍♂️", + "htmlHex": "🦸‍♂️" + }, + { + "emojiChar": "🦸‍♀️", + "emoji": "🦸‍♀️", + "description": "woman superhero", + "supports_fitzpatrick": true, + "aliases": [ + "woman_superhero" + ], + "tags": [], + "unicode": "🦸‍♀️", + "htmlDec": "🦸‍♀️", + "htmlHex": "🦸‍♀️" + }, + { + "emojiChar": "🦹", + "emoji": "🦹", + "description": "supervillain", + "supports_fitzpatrick": true, + "supports_gender": true, + "aliases": [ + "supervillain" + ], + "tags": [], + "unicode": "🦹", + "htmlDec": "🦹", + "htmlHex": "🦹" + }, + { + "emojiChar": "🦹‍♂️", + "emoji": "🦹‍♂️", + "description": "man_supervillain", + "supports_fitzpatrick": true, + "aliases": [ + "man_supervillain" + ], + "tags": [], + "unicode": "🦹‍♂️", + "htmlDec": "🦹‍♂️", + "htmlHex": "🦹‍♂️" + }, + { + "emojiChar": "🦹‍♀️", + "emoji": "🦹‍♀️", + "description": "woman_supervillain", + "supports_fitzpatrick": true, + "aliases": [ + "woman_supervillain" + ], + "tags": [], + "unicode": "🦹‍♀️", + "htmlDec": "🦹‍♀️", + "htmlHex": "🦹‍♀️" + }, + { + "emojiChar": "🦝", + "emoji": "🦝", + "description": "raccoon", + "aliases": [ + "raccoon" + ], + "tags": [], + "unicode": "🦝", + "htmlDec": "🦝", + "htmlHex": "🦝" + }, + { + "emojiChar": "🦙", + "emoji": "🦙", + "description": "llama", + "aliases": [ + "llama", + "alpaca" + ], + "tags": [], + "unicode": "🦙", + "htmlDec": "🦙", + "htmlHex": "🦙" + }, + { + "emojiChar": "🦛", + "emoji": "🦛", + "description": "hippopotamus", + "aliases": [ + "hippo", + "hippopotamus" + ], + "tags": [], + "unicode": "🦛", + "htmlDec": "🦛", + "htmlHex": "🦛" + }, + { + "emojiChar": "🦘", + "emoji": "🦘", + "description": "kangaroo", + "aliases": [ + "roo", + "kangaroo" + ], + "tags": [], + "unicode": "🦘", + "htmlDec": "🦘", + "htmlHex": "🦘" + }, + { + "emojiChar": "🦡", + "emoji": "🦡", + "description": "badger", + "aliases": [ + "badger" + ], + "tags": [], + "unicode": "🦡", + "htmlDec": "🦡", + "htmlHex": "🦡" + }, + { + "emojiChar": "🦢", + "emoji": "🦢", + "description": "swan", + "aliases": [ + "swan" + ], + "tags": [], + "unicode": "🦢", + "htmlDec": "🦢", + "htmlHex": "🦢" + }, + { + "emojiChar": "🦚", + "emoji": "🦚", + "description": "peacock", + "aliases": [ + "peacock" + ], + "tags": [], + "unicode": "🦚", + "htmlDec": "🦚", + "htmlHex": "🦚" + }, + { + "emojiChar": "🦜", + "emoji": "🦜", + "description": "parrot", + "aliases": [ + "parrot" + ], + "tags": [], + "unicode": "🦜", + "htmlDec": "🦜", + "htmlHex": "🦜" + }, + { + "emojiChar": "🦟", + "emoji": "🦟", + "description": "mosquito", + "aliases": [ + "mosquito" + ], + "tags": [], + "unicode": "🦟", + "htmlDec": "🦟", + "htmlHex": "🦟" + }, + { + "emojiChar": "🦠", + "emoji": "🦠", + "description": "microbe", + "aliases": [ + "microbe" + ], + "tags": [], + "unicode": "🦠", + "htmlDec": "🦠", + "htmlHex": "🦠" + }, + { + "emojiChar": "🥭", + "emoji": "🥭", + "description": "mango", + "aliases": [ + "mango" + ], + "tags": [], + "unicode": "🥭", + "htmlDec": "🥭", + "htmlHex": "🥭" + }, + { + "emojiChar": "🥬", + "emoji": "🥬", + "description": "leafy green", + "aliases": [ + "leafy_green", + "bok_choy", + "chinese_cabbage", + "cos_lettuce", + "romaine_lettuce", + "leafy_greens" + ], + "tags": [], + "unicode": "🥬", + "htmlDec": "🥬", + "htmlHex": "🥬" + }, + { + "emojiChar": "🥯", + "emoji": "🥯", + "description": "bagel", + "aliases": [ + "bagel" + ], + "tags": [], + "unicode": "🥯", + "htmlDec": "🥯", + "htmlHex": "🥯" + }, + { + "emojiChar": "🧂", + "emoji": "🧂", + "description": "salt shaker", + "aliases": [ + "salt_shaker", + "salt" + ], + "tags": [], + "unicode": "🧂", + "htmlDec": "🧂", + "htmlHex": "🧂" + }, + { + "emojiChar": "🥮", + "emoji": "🥮", + "description": "moon cake", + "aliases": [ + "moon_cake", + "mooncake" + ], + "tags": [], + "unicode": "🥮", + "htmlDec": "🥮", + "htmlHex": "🥮" + }, + { + "emojiChar": "🦞", + "emoji": "🦞", + "description": "lobster", + "aliases": [ + "lobster" + ], + "tags": [], + "unicode": "🦞", + "htmlDec": "🦞", + "htmlHex": "🦞" + }, + { + "emojiChar": "🧁", + "emoji": "🧁", + "description": "cupcake", + "aliases": [ + "cupcake", + "fairy_cake" + ], + "tags": [], + "unicode": "🧁", + "htmlDec": "🧁", + "htmlHex": "🧁" + }, + { + "emojiChar": "🧭", + "emoji": "🧭", + "description": "compass", + "aliases": [ + "compass" + ], + "tags": [], + "unicode": "🧭", + "htmlDec": "🧭", + "htmlHex": "🧭" + }, + { + "emojiChar": "🧱", + "emoji": "🧱", + "description": "brick", + "aliases": [ + "brick", + "bricks" + ], + "tags": [], + "unicode": "🧱", + "htmlDec": "🧱", + "htmlHex": "🧱" + }, + { + "emojiChar": "🛹", + "emoji": "🛹", + "description": "skateboard", + "aliases": [ + "skateboard" + ], + "tags": [], + "unicode": "🛹", + "htmlDec": "🛹", + "htmlHex": "🛹" + }, + { + "emojiChar": "🧳", + "emoji": "🧳", + "description": "luggage", + "aliases": [ + "lugagge", + "suitcase" + ], + "tags": [], + "unicode": "🧳", + "htmlDec": "🧳", + "htmlHex": "🧳" + }, + { + "emojiChar": "🧨", + "emoji": "🧨", + "description": "firecracker", + "aliases": [ + "firecracker", + "dynamite" + ], + "tags": [], + "unicode": "🧨", + "htmlDec": "🧨", + "htmlHex": "🧨" + }, + { + "emojiChar": "🧧", + "emoji": "🧧", + "description": "red gift envelope", + "aliases": [ + "red_envelope", + "red_gift_envelope", + "ang_pao", + "hongbao", + "lai_see", + "red_packet" + ], + "tags": [], + "unicode": "🧧", + "htmlDec": "🧧", + "htmlHex": "🧧" + }, + { + "emojiChar": "🥎", + "emoji": "🥎", + "description": "softball", + "aliases": [ + "softball" + ], + "tags": [], + "unicode": "🥎", + "htmlDec": "🥎", + "htmlHex": "🥎" + }, + { + "emojiChar": "🥏", + "emoji": "🥏", + "description": "flying disc", + "aliases": [ + "flying_disc" + ], + "tags": [], + "unicode": "🥏", + "htmlDec": "🥏", + "htmlHex": "🥏" + }, + { + "emojiChar": "🥍", + "emoji": "🥍", + "description": "lacrosse stick and ball", + "aliases": [ + "lacrosse", + "lacrosse_stick_and_ball" + ], + "tags": [], + "unicode": "🥍", + "htmlDec": "🥍", + "htmlHex": "🥍" + }, + { + "emojiChar": "🧿", + "emoji": "🧿", + "description": "nazar amulet", + "aliases": [ + "nazar_amulet", + "evil_eye_talisman", + "nazar_boncugu" + ], + "tags": [], + "unicode": "🧿", + "htmlDec": "🧿", + "htmlHex": "🧿" + }, + { + "emojiChar": "🧩", + "emoji": "🧩", + "description": "jigsaw puzzle piece", + "aliases": [ + "jigsaw", + "puzzle_piece", + "jigsaw_puzzle_piece" + ], + "tags": [], + "unicode": "🧩", + "htmlDec": "🧩", + "htmlHex": "🧩" + }, + { + "emojiChar": "🧸", + "emoji": "🧸", + "description": "teddy bear", + "aliases": [ + "teddy_bear" + ], + "tags": [], + "unicode": "🧸", + "htmlDec": "🧸", + "htmlHex": "🧸" + }, + { + "emojiChar": "♟️", + "emoji": "♟️", + "description": "black chess pawn", + "aliases": [ + "black_chess_pawn", + "chess_pawn" + ], + "tags": [], + "unicode": "♟️", + "htmlDec": "♟️", + "htmlHex": "♟️" + }, + { + "emojiChar": "🧵", + "emoji": "🧵", + "description": "spool of thread", + "aliases": [ + "spool_of_thread", + "thread" + ], + "tags": [], + "unicode": "🧵", + "htmlDec": "🧵", + "htmlHex": "🧵" + }, + { + "emojiChar": "🧶", + "emoji": "🧶", + "description": "ball of yarn", + "aliases": [ + "ball_of_yarn", + "yarn" + ], + "tags": [], + "unicode": "🧶", + "htmlDec": "🧶", + "htmlHex": "🧶" + }, + { + "emojiChar": "🥽", + "emoji": "🥽", + "description": "goggles", + "aliases": [ + "goggles" + ], + "tags": [], + "unicode": "🥽", + "htmlDec": "🥽", + "htmlHex": "🥽" + }, + { + "emojiChar": "🥼", + "emoji": "🥼", + "description": "lab coat", + "aliases": [ + "lab_coat" + ], + "tags": [], + "unicode": "🥼", + "htmlDec": "🥼", + "htmlHex": "🥼" + }, + { + "emojiChar": "🥾", + "emoji": "🥾", + "description": "hiking boot", + "aliases": [ + "hiking_boot" + ], + "tags": [], + "unicode": "🥾", + "htmlDec": "🥾", + "htmlHex": "🥾" + }, + { + "emojiChar": "🥿", + "emoji": "🥿", + "description": "flat shoe", + "aliases": [ + "flat_shoe" + ], + "tags": [], + "unicode": "🥿", + "htmlDec": "🥿", + "htmlHex": "🥿" + }, + { + "emojiChar": "🧮", + "emoji": "🧮", + "description": "abacus", + "aliases": [ + "abacus" + ], + "tags": [], + "unicode": "🧮", + "htmlDec": "🧮", + "htmlHex": "🧮" + }, + { + "emojiChar": "🧾", + "emoji": "🧾", + "description": "receipt", + "aliases": [ + "receipt" + ], + "tags": [], + "unicode": "🧾", + "htmlDec": "🧾", + "htmlHex": "🧾" + }, + { + "emojiChar": "🧰", + "emoji": "🧰", + "description": "toolbox", + "aliases": [ + "toolbox" + ], + "tags": [], + "unicode": "🧰", + "htmlDec": "🧰", + "htmlHex": "🧰" + }, + { + "emojiChar": "🧲", + "emoji": "🧲", + "description": "magnet", + "aliases": [ + "magnet" + ], + "tags": [], + "unicode": "🧲", + "htmlDec": "🧲", + "htmlHex": "🧲" + }, + { + "emojiChar": "🧪", + "emoji": "🧪", + "description": "test tube", + "aliases": [ + "test_tube" + ], + "tags": [], + "unicode": "🧪", + "htmlDec": "🧪", + "htmlHex": "🧪" + }, + { + "emojiChar": "🧫", + "emoji": "🧫", + "description": "petri dish", + "aliases": [ + "petri_dish" + ], + "tags": [], + "unicode": "🧫", + "htmlDec": "🧫", + "htmlHex": "🧫" + }, + { + "emojiChar": "🧬", + "emoji": "🧬", + "description": "dna", + "aliases": [ + "dna", + "dna_double_helix" + ], + "tags": [], + "unicode": "🧬", + "htmlDec": "🧬", + "htmlHex": "🧬" + }, + { + "emojiChar": "🧴", + "emoji": "🧴", + "description": "lotion bottle", + "aliases": [ + "lotion_bottle" + ], + "tags": [], + "unicode": "🧴", + "htmlDec": "🧴", + "htmlHex": "🧴" + }, + { + "emojiChar": "🧷", + "emoji": "🧷", + "description": "safety pin", + "aliases": [ + "safety_pin" + ], + "tags": [], + "unicode": "🧷", + "htmlDec": "🧷", + "htmlHex": "🧷" + }, + { + "emojiChar": "🧹", + "emoji": "🧹", + "description": "broom", + "aliases": [ + "broom" + ], + "tags": [], + "unicode": "🧹", + "htmlDec": "🧹", + "htmlHex": "🧹" + }, + { + "emojiChar": "🧺", + "emoji": "🧺", + "description": "basket", + "aliases": [ + "basket" + ], + "tags": [], + "unicode": "🧺", + "htmlDec": "🧺", + "htmlHex": "🧺" + }, + { + "emojiChar": "🧻", + "emoji": "🧻", + "description": "roll of paper", + "aliases": [ + "roll_of_paper", + "toilet_paper" + ], + "tags": [], + "unicode": "🧻", + "htmlDec": "🧻", + "htmlHex": "🧻" + }, + { + "emojiChar": "🧼", + "emoji": "🧼", + "description": "bar of soap", + "aliases": [ + "bar_of_soap", + "soap" + ], + "tags": [], + "unicode": "🧼", + "htmlDec": "🧼", + "htmlHex": "🧼" + }, + { + "emojiChar": "🧽", + "emoji": "🧽", + "description": "sponge", + "aliases": [ + "sponge" + ], + "tags": [], + "unicode": "🧽", + "htmlDec": "🧽", + "htmlHex": "🧽" + }, + { + "emojiChar": "🧯", + "emoji": "🧯", + "description": "fire extinguisher", + "aliases": [ + "fire_extinguisher" + ], + "tags": [], + "unicode": "🧯", + "htmlDec": "🧯", + "htmlHex": "🧯" + }, + { + "emojiChar": "♾️", + "emoji": "♾️", + "description": "infinity", + "aliases": [ + "infinity", + "permanent_paper_sign" + ], + "tags": [], + "unicode": "♾️", + "htmlDec": "♾️", + "htmlHex": "♾️" + }, + { + "emojiChar": "♾🏴‍☠️", + "emoji": "♾🏴‍☠️", + "description": "pirate flag", + "aliases": [ + "pirate_flag", + "jolly_roger" + ], + "tags": [], + "unicode": "♾🏴‍☠️", + "htmlDec": "♾🏴‍☠️", + "htmlHex": "♾🏴‍☠️" + }, + { + "emojiChar": "🇦🇨", + "emoji": "🇦🇨", + "description": "regional indicator symbol letter a + regional indicator symbol letter c", + "aliases": [ + "ac" + ], + "tags": [ + "flag", + "ascension island" + ], + "unicode": "🇦🇨", + "htmlDec": "🇦🇨", + "htmlHex": "🇦🇨" + }, + { + "emojiChar": "🇦🇩", + "emoji": "🇦🇩", + "description": "regional indicator symbol letter a + regional indicator symbol letter d", + "aliases": [ + "ad" + ], + "tags": [ + "flag", + "andorra" + ], + "unicode": "🇦🇩", + "htmlDec": "🇦🇩", + "htmlHex": "🇦🇩" + }, + { + "emojiChar": "🇦🇪", + "emoji": "🇦🇪", + "description": "regional indicator symbol letter a + regional indicator symbol letter e", + "aliases": [ + "ae" + ], + "tags": [ + "flag", + "united arab emirates" + ], + "unicode": "🇦🇪", + "htmlDec": "🇦🇪", + "htmlHex": "🇦🇪" + }, + { + "emojiChar": "🇦🇫", + "emoji": "🇦🇫", + "description": "regional indicator symbol letter a + regional indicator symbol letter f", + "aliases": [ + "af" + ], + "tags": [ + "flag", + "afghanistan" + ], + "unicode": "🇦🇫", + "htmlDec": "🇦🇫", + "htmlHex": "🇦🇫" + }, + { + "emojiChar": "🇦🇬", + "emoji": "🇦🇬", + "description": "regional indicator symbol letter a + regional indicator symbol letter g", + "aliases": [ + "ag" + ], + "tags": [ + "flag", + "antigua and barbuda" + ], + "unicode": "🇦🇬", + "htmlDec": "🇦🇬", + "htmlHex": "🇦🇬" + }, + { + "emojiChar": "🇦🇮", + "emoji": "🇦🇮", + "description": "regional indicator symbol letter a + regional indicator symbol letter i", + "aliases": [ + "ai" + ], + "tags": [ + "flag", + "anguilla" + ], + "unicode": "🇦🇮", + "htmlDec": "🇦🇮", + "htmlHex": "🇦🇮" + }, + { + "emojiChar": "🇦🇱", + "emoji": "🇦🇱", + "description": "regional indicator symbol letter a + regional indicator symbol letter l", + "aliases": [ + "al" + ], + "tags": [ + "flag", + "albania" + ], + "unicode": "🇦🇱", + "htmlDec": "🇦🇱", + "htmlHex": "🇦🇱" + }, + { + "emojiChar": "🇦🇲", + "emoji": "🇦🇲", + "description": "regional indicator symbol letter a + regional indicator symbol letter m", + "aliases": [ + "am" + ], + "tags": [ + "flag", + "armenia" + ], + "unicode": "🇦🇲", + "htmlDec": "🇦🇲", + "htmlHex": "🇦🇲" + }, + { + "emojiChar": "🇦🇴", + "emoji": "🇦🇴", + "description": "regional indicator symbol letter a + regional indicator symbol letter o", + "aliases": [ + "ao" + ], + "tags": [ + "flag", + "angola" + ], + "unicode": "🇦🇴", + "htmlDec": "🇦🇴", + "htmlHex": "🇦🇴" + }, + { + "emojiChar": "🇦🇶", + "emoji": "🇦🇶", + "description": "regional indicator symbol letter a + regional indicator symbol letter q", + "aliases": [ + "aq" + ], + "tags": [ + "flag", + "antarctica" + ], + "unicode": "🇦🇶", + "htmlDec": "🇦🇶", + "htmlHex": "🇦🇶" + }, + { + "emojiChar": "🇦🇷", + "emoji": "🇦🇷", + "description": "regional indicator symbol letter a + regional indicator symbol letter r", + "aliases": [ + "ar" + ], + "tags": [ + "flag", + "argentina" + ], + "unicode": "🇦🇷", + "htmlDec": "🇦🇷", + "htmlHex": "🇦🇷" + }, + { + "emojiChar": "🇦🇸", + "emoji": "🇦🇸", + "description": "regional indicator symbol letter a + regional indicator symbol letter s", + "aliases": [ + "as" + ], + "tags": [ + "flag", + "american samoa" + ], + "unicode": "🇦🇸", + "htmlDec": "🇦🇸", + "htmlHex": "🇦🇸" + }, + { + "emojiChar": "🇦🇹", + "emoji": "🇦🇹", + "description": "regional indicator symbol letter a + regional indicator symbol letter t", + "aliases": [ + "at" + ], + "tags": [ + "flag", + "austria" + ], + "unicode": "🇦🇹", + "htmlDec": "🇦🇹", + "htmlHex": "🇦🇹" + }, + { + "emojiChar": "🇦🇺", + "emoji": "🇦🇺", + "description": "regional indicator symbol letter a + regional indicator symbol letter u", + "aliases": [ + "au" + ], + "tags": [ + "flag", + "australia" + ], + "unicode": "🇦🇺", + "htmlDec": "🇦🇺", + "htmlHex": "🇦🇺" + }, + { + "emojiChar": "🇦🇼", + "emoji": "🇦🇼", + "description": "regional indicator symbol letter a + regional indicator symbol letter w", + "aliases": [ + "aw" + ], + "tags": [ + "flag", + "aruba" + ], + "unicode": "🇦🇼", + "htmlDec": "🇦🇼", + "htmlHex": "🇦🇼" + }, + { + "emojiChar": "🇦🇽", + "emoji": "🇦🇽", + "description": "regional indicator symbol letter a + regional indicator symbol letter x", + "aliases": [ + "ax" + ], + "tags": [ + "flag", + "aland islands" + ], + "unicode": "🇦🇽", + "htmlDec": "🇦🇽", + "htmlHex": "🇦🇽" + }, + { + "emojiChar": "🇦🇿", + "emoji": "🇦🇿", + "description": "regional indicator symbol letter a + regional indicator symbol letter z", + "aliases": [ + "az" + ], + "tags": [ + "flag", + "azerbaijan" + ], + "unicode": "🇦🇿", + "htmlDec": "🇦🇿", + "htmlHex": "🇦🇿" + }, + { + "emojiChar": "🇧🇦", + "emoji": "🇧🇦", + "description": "regional indicator symbol letter b + regional indicator symbol letter a", + "aliases": [ + "ba" + ], + "tags": [ + "flag", + "bosnia and herzegovina" + ], + "unicode": "🇧🇦", + "htmlDec": "🇧🇦", + "htmlHex": "🇧🇦" + }, + { + "emojiChar": "🇧🇧", + "emoji": "🇧🇧", + "description": "regional indicator symbol letter b + regional indicator symbol letter b", + "aliases": [ + "bb" + ], + "tags": [ + "flag", + "barbados" + ], + "unicode": "🇧🇧", + "htmlDec": "🇧🇧", + "htmlHex": "🇧🇧" + }, + { + "emojiChar": "🇧🇩", + "emoji": "🇧🇩", + "description": "regional indicator symbol letter b + regional indicator symbol letter d", + "aliases": [ + "bd" + ], + "tags": [ + "flag", + "bangladesh" + ], + "unicode": "🇧🇩", + "htmlDec": "🇧🇩", + "htmlHex": "🇧🇩" + }, + { + "emojiChar": "🇧🇪", + "emoji": "🇧🇪", + "description": "regional indicator symbol letter b + regional indicator symbol letter e", + "aliases": [ + "be" + ], + "tags": [ + "flag", + "belgium" + ], + "unicode": "🇧🇪", + "htmlDec": "🇧🇪", + "htmlHex": "🇧🇪" + }, + { + "emojiChar": "🇧🇫", + "emoji": "🇧🇫", + "description": "regional indicator symbol letter b + regional indicator symbol letter f", + "aliases": [ + "bf" + ], + "tags": [ + "flag", + "burkina faso" + ], + "unicode": "🇧🇫", + "htmlDec": "🇧🇫", + "htmlHex": "🇧🇫" + }, + { + "emojiChar": "🇧🇬", + "emoji": "🇧🇬", + "description": "regional indicator symbol letter b + regional indicator symbol letter g", + "aliases": [ + "bg" + ], + "tags": [ + "flag", + "bulgaria" + ], + "unicode": "🇧🇬", + "htmlDec": "🇧🇬", + "htmlHex": "🇧🇬" + }, + { + "emojiChar": "🇧🇭", + "emoji": "🇧🇭", + "description": "regional indicator symbol letter b + regional indicator symbol letter h", + "aliases": [ + "bh" + ], + "tags": [ + "flag", + "bahrain" + ], + "unicode": "🇧🇭", + "htmlDec": "🇧🇭", + "htmlHex": "🇧🇭" + }, + { + "emojiChar": "🇧🇮", + "emoji": "🇧🇮", + "description": "regional indicator symbol letter b + regional indicator symbol letter i", + "aliases": [ + "bi" + ], + "tags": [ + "flag", + "burundi" + ], + "unicode": "🇧🇮", + "htmlDec": "🇧🇮", + "htmlHex": "🇧🇮" + }, + { + "emojiChar": "🇧🇯", + "emoji": "🇧🇯", + "description": "regional indicator symbol letter b + regional indicator symbol letter j", + "aliases": [ + "bj" + ], + "tags": [ + "flag", + "benin" + ], + "unicode": "🇧🇯", + "htmlDec": "🇧🇯", + "htmlHex": "🇧🇯" + }, + { + "emojiChar": "🇧🇱", + "emoji": "🇧🇱", + "description": "regional indicator symbol letter b + regional indicator symbol letter l", + "aliases": [ + "bl" + ], + "tags": [ + "flag", + "st. barthelemy" + ], + "unicode": "🇧🇱", + "htmlDec": "🇧🇱", + "htmlHex": "🇧🇱" + }, + { + "emojiChar": "🇧🇲", + "emoji": "🇧🇲", + "description": "regional indicator symbol letter b + regional indicator symbol letter m", + "aliases": [ + "bm" + ], + "tags": [ + "flag", + "bermuda" + ], + "unicode": "🇧🇲", + "htmlDec": "🇧🇲", + "htmlHex": "🇧🇲" + }, + { + "emojiChar": "🇧🇳", + "emoji": "🇧🇳", + "description": "regional indicator symbol letter b + regional indicator symbol letter n", + "aliases": [ + "bn" + ], + "tags": [ + "flag", + "brunei darussalam" + ], + "unicode": "🇧🇳", + "htmlDec": "🇧🇳", + "htmlHex": "🇧🇳" + }, + { + "emojiChar": "🇧🇴", + "emoji": "🇧🇴", + "description": "regional indicator symbol letter b + regional indicator symbol letter o", + "aliases": [ + "bo" + ], + "tags": [ + "flag", + "bolivia" + ], + "unicode": "🇧🇴", + "htmlDec": "🇧🇴", + "htmlHex": "🇧🇴" + }, + { + "emojiChar": "🇧🇶", + "emoji": "🇧🇶", + "description": "regional indicator symbol letter b + regional indicator symbol letter q", + "aliases": [ + "bq" + ], + "tags": [ + "flag", + "caribbean netherlands", + "bonaire" + ], + "unicode": "🇧🇶", + "htmlDec": "🇧🇶", + "htmlHex": "🇧🇶" + }, + { + "emojiChar": "🇧🇷", + "emoji": "🇧🇷", + "description": "regional indicator symbol letter b + regional indicator symbol letter r", + "aliases": [ + "br" + ], + "tags": [ + "flag", + "brazil" + ], + "unicode": "🇧🇷", + "htmlDec": "🇧🇷", + "htmlHex": "🇧🇷" + }, + { + "emojiChar": "🇧🇸", + "emoji": "🇧🇸", + "description": "regional indicator symbol letter b + regional indicator symbol letter s", + "aliases": [ + "bs" + ], + "tags": [ + "flag", + "bahamas" + ], + "unicode": "🇧🇸", + "htmlDec": "🇧🇸", + "htmlHex": "🇧🇸" + }, + { + "emojiChar": "🇧🇹", + "emoji": "🇧🇹", + "description": "regional indicator symbol letter b + regional indicator symbol letter t", + "aliases": [ + "bt" + ], + "tags": [ + "flag", + "bhutan" + ], + "unicode": "🇧🇹", + "htmlDec": "🇧🇹", + "htmlHex": "🇧🇹" + }, + { + "emojiChar": "🇧🇻", + "emoji": "🇧🇻", + "description": "regional indicator symbol letter b + regional indicator symbol letter v", + "aliases": [ + "bv" + ], + "tags": [ + "flag", + "bouvet island" + ], + "unicode": "🇧🇻", + "htmlDec": "🇧🇻", + "htmlHex": "🇧🇻" + }, + { + "emojiChar": "🇧🇼", + "emoji": "🇧🇼", + "description": "regional indicator symbol letter b + regional indicator symbol letter w", + "aliases": [ + "bw" + ], + "tags": [ + "flag", + "botswana" + ], + "unicode": "🇧🇼", + "htmlDec": "🇧🇼", + "htmlHex": "🇧🇼" + }, + { + "emojiChar": "🇧🇾", + "emoji": "🇧🇾", + "description": "regional indicator symbol letter b + regional indicator symbol letter y", + "aliases": [ + "by" + ], + "tags": [ + "flag", + "belarus" + ], + "unicode": "🇧🇾", + "htmlDec": "🇧🇾", + "htmlHex": "🇧🇾" + }, + { + "emojiChar": "🇧🇿", + "emoji": "🇧🇿", + "description": "regional indicator symbol letter b + regional indicator symbol letter z", + "aliases": [ + "bz" + ], + "tags": [ + "flag", + "belize" + ], + "unicode": "🇧🇿", + "htmlDec": "🇧🇿", + "htmlHex": "🇧🇿" + }, + { + "emojiChar": "🇨🇦", + "emoji": "🇨🇦", + "description": "regional indicator symbol letter c + regional indicator symbol letter a", + "aliases": [ + "ca" + ], + "tags": [ + "flag", + "canada" + ], + "unicode": "🇨🇦", + "htmlDec": "🇨🇦", + "htmlHex": "🇨🇦" + }, + { + "emojiChar": "🇨🇨", + "emoji": "🇨🇨", + "description": "regional indicator symbol letter c + regional indicator symbol letter c", + "aliases": [ + "cc" + ], + "tags": [ + "flag", + "cocos (keeling) islands" + ], + "unicode": "🇨🇨", + "htmlDec": "🇨🇨", + "htmlHex": "🇨🇨" + }, + { + "emojiChar": "🇨🇩", + "emoji": "🇨🇩", + "description": "regional indicator symbol letter c + regional indicator symbol letter d", + "aliases": [ + "cd_flag" + ], + "tags": [ + "flag", + "democratic republic of the congo" + ], + "unicode": "🇨🇩", + "htmlDec": "🇨🇩", + "htmlHex": "🇨🇩" + }, + { + "emojiChar": "🇨🇫", + "emoji": "🇨🇫", + "description": "regional indicator symbol letter c + regional indicator symbol letter f", + "aliases": [ + "cf" + ], + "tags": [ + "flag", + "central african republic" + ], + "unicode": "🇨🇫", + "htmlDec": "🇨🇫", + "htmlHex": "🇨🇫" + }, + { + "emojiChar": "🇨🇬", + "emoji": "🇨🇬", + "description": "regional indicator symbol letter c + regional indicator symbol letter g", + "aliases": [ + "cg" + ], + "tags": [ + "flag", + "republic of the congo" + ], + "unicode": "🇨🇬", + "htmlDec": "🇨🇬", + "htmlHex": "🇨🇬" + }, + { + "emojiChar": "🇨🇭", + "emoji": "🇨🇭", + "description": "regional indicator symbol letter c + regional indicator symbol letter h", + "aliases": [ + "ch" + ], + "tags": [ + "flag", + "switzerland" + ], + "unicode": "🇨🇭", + "htmlDec": "🇨🇭", + "htmlHex": "🇨🇭" + }, + { + "emojiChar": "🇨🇮", + "emoji": "🇨🇮", + "description": "regional indicator symbol letter c + regional indicator symbol letter i", + "aliases": [ + "ci" + ], + "tags": [ + "flag", + "ivory coast" + ], + "unicode": "🇨🇮", + "htmlDec": "🇨🇮", + "htmlHex": "🇨🇮" + }, + { + "emojiChar": "🇨🇰", + "emoji": "🇨🇰", + "description": "regional indicator symbol letter c + regional indicator symbol letter k", + "aliases": [ + "ck" + ], + "tags": [ + "flag", + "cook islands" + ], + "unicode": "🇨🇰", + "htmlDec": "🇨🇰", + "htmlHex": "🇨🇰" + }, + { + "emojiChar": "🇨🇱", + "emoji": "🇨🇱", + "description": "regional indicator symbol letter c + regional indicator symbol letter l", + "aliases": [ + "cl_flag" + ], + "tags": [ + "flag", + "chile" + ], + "unicode": "🇨🇱", + "htmlDec": "🇨🇱", + "htmlHex": "🇨🇱" + }, + { + "emojiChar": "🇨🇲", + "emoji": "🇨🇲", + "description": "regional indicator symbol letter c + regional indicator symbol letter m", + "aliases": [ + "cm" + ], + "tags": [ + "flag", + "cameroon" + ], + "unicode": "🇨🇲", + "htmlDec": "🇨🇲", + "htmlHex": "🇨🇲" + }, + { + "emojiChar": "🇨🇳", + "emoji": "🇨🇳", + "description": "regional indicator symbol letter c + regional indicator symbol letter n", + "aliases": [ + "cn" + ], + "tags": [ + "flag", + "china" + ], + "unicode": "🇨🇳", + "htmlDec": "🇨🇳", + "htmlHex": "🇨🇳" + }, + { + "emojiChar": "🇨🇴", + "emoji": "🇨🇴", + "description": "regional indicator symbol letter c + regional indicator symbol letter o", + "aliases": [ + "co" + ], + "tags": [ + "flag", + "colombia" + ], + "unicode": "🇨🇴", + "htmlDec": "🇨🇴", + "htmlHex": "🇨🇴" + }, + { + "emojiChar": "🇨🇵", + "emoji": "🇨🇵", + "description": "regional indicator symbol letter c + regional indicator symbol letter p", + "aliases": [ + "cp" + ], + "tags": [ + "flag", + "clipperton island" + ], + "unicode": "🇨🇵", + "htmlDec": "🇨🇵", + "htmlHex": "🇨🇵" + }, + { + "emojiChar": "🇨🇷", + "emoji": "🇨🇷", + "description": "regional indicator symbol letter c + regional indicator symbol letter r", + "aliases": [ + "cr" + ], + "tags": [ + "flag", + "costa rica" + ], + "unicode": "🇨🇷", + "htmlDec": "🇨🇷", + "htmlHex": "🇨🇷" + }, + { + "emojiChar": "🇨🇺", + "emoji": "🇨🇺", + "description": "regional indicator symbol letter c + regional indicator symbol letter u", + "aliases": [ + "cu" + ], + "tags": [ + "flag", + "cuba" + ], + "unicode": "🇨🇺", + "htmlDec": "🇨🇺", + "htmlHex": "🇨🇺" + }, + { + "emojiChar": "🇨🇻", + "emoji": "🇨🇻", + "description": "regional indicator symbol letter c + regional indicator symbol letter v", + "aliases": [ + "cv" + ], + "tags": [ + "flag", + "cape verde" + ], + "unicode": "🇨🇻", + "htmlDec": "🇨🇻", + "htmlHex": "🇨🇻" + }, + { + "emojiChar": "🇨🇼", + "emoji": "🇨🇼", + "description": "regional indicator symbol letter c + regional indicator symbol letter w", + "aliases": [ + "cw" + ], + "tags": [ + "flag", + "curacao" + ], + "unicode": "🇨🇼", + "htmlDec": "🇨🇼", + "htmlHex": "🇨🇼" + }, + { + "emojiChar": "🇨🇽", + "emoji": "🇨🇽", + "description": "regional indicator symbol letter c + regional indicator symbol letter x", + "aliases": [ + "cx" + ], + "tags": [ + "flag", + "christmas island" + ], + "unicode": "🇨🇽", + "htmlDec": "🇨🇽", + "htmlHex": "🇨🇽" + }, + { + "emojiChar": "🇨🇾", + "emoji": "🇨🇾", + "description": "regional indicator symbol letter c + regional indicator symbol letter y", + "aliases": [ + "cy" + ], + "tags": [ + "flag", + "cyprus" + ], + "unicode": "🇨🇾", + "htmlDec": "🇨🇾", + "htmlHex": "🇨🇾" + }, + { + "emojiChar": "🇨🇿", + "emoji": "🇨🇿", + "description": "regional indicator symbol letter c + regional indicator symbol letter z", + "aliases": [ + "cz" + ], + "tags": [ + "flag", + "czech republic" + ], + "unicode": "🇨🇿", + "htmlDec": "🇨🇿", + "htmlHex": "🇨🇿" + }, + { + "emojiChar": "🇩🇪", + "emoji": "🇩🇪", + "description": "regional indicator symbol letter d + regional indicator symbol letter e", + "aliases": [ + "de" + ], + "tags": [ + "flag", + "germany" + ], + "unicode": "🇩🇪", + "htmlDec": "🇩🇪", + "htmlHex": "🇩🇪" + }, + { + "emojiChar": "🇩🇬", + "emoji": "🇩🇬", + "description": "regional indicator symbol letter d + regional indicator symbol letter g", + "aliases": [ + "dg" + ], + "tags": [ + "flag", + "diego garcia" + ], + "unicode": "🇩🇬", + "htmlDec": "🇩🇬", + "htmlHex": "🇩🇬" + }, + { + "emojiChar": "🇩🇯", + "emoji": "🇩🇯", + "description": "regional indicator symbol letter d + regional indicator symbol letter j", + "aliases": [ + "dj" + ], + "tags": [ + "flag", + "djibouti" + ], + "unicode": "🇩🇯", + "htmlDec": "🇩🇯", + "htmlHex": "🇩🇯" + }, + { + "emojiChar": "🇩🇰", + "emoji": "🇩🇰", + "description": "regional indicator symbol letter d + regional indicator symbol letter k", + "aliases": [ + "dk" + ], + "tags": [ + "flag", + "denmark" + ], + "unicode": "🇩🇰", + "htmlDec": "🇩🇰", + "htmlHex": "🇩🇰" + }, + { + "emojiChar": "🇩🇲", + "emoji": "🇩🇲", + "description": "regional indicator symbol letter d + regional indicator symbol letter m", + "aliases": [ + "dm" + ], + "tags": [ + "flag", + "dominica" + ], + "unicode": "🇩🇲", + "htmlDec": "🇩🇲", + "htmlHex": "🇩🇲" + }, + { + "emojiChar": "🇩🇴", + "emoji": "🇩🇴", + "description": "regional indicator symbol letter d + regional indicator symbol letter o", + "aliases": [ + "do" + ], + "tags": [ + "flag", + "dominican republic" + ], + "unicode": "🇩🇴", + "htmlDec": "🇩🇴", + "htmlHex": "🇩🇴" + }, + { + "emojiChar": "🇩🇿", + "emoji": "🇩🇿", + "description": "regional indicator symbol letter d + regional indicator symbol letter z", + "aliases": [ + "dz" + ], + "tags": [ + "flag", + "algeria" + ], + "unicode": "🇩🇿", + "htmlDec": "🇩🇿", + "htmlHex": "🇩🇿" + }, + { + "emojiChar": "🇪🇦", + "emoji": "🇪🇦", + "description": "regional indicator symbol letter e + regional indicator symbol letter a", + "aliases": [ + "ea" + ], + "tags": [ + "flag", + "ceuta & melilla" + ], + "unicode": "🇪🇦", + "htmlDec": "🇪🇦", + "htmlHex": "🇪🇦" + }, + { + "emojiChar": "🇪🇨", + "emoji": "🇪🇨", + "description": "regional indicator symbol letter e + regional indicator symbol letter c", + "aliases": [ + "ec" + ], + "tags": [ + "flag", + "ecuador" + ], + "unicode": "🇪🇨", + "htmlDec": "🇪🇨", + "htmlHex": "🇪🇨" + }, + { + "emojiChar": "🇪🇪", + "emoji": "🇪🇪", + "description": "regional indicator symbol letter e + regional indicator symbol letter e", + "aliases": [ + "ee" + ], + "tags": [ + "flag", + "estonia" + ], + "unicode": "🇪🇪", + "htmlDec": "🇪🇪", + "htmlHex": "🇪🇪" + }, + { + "emojiChar": "🇪🇬", + "emoji": "🇪🇬", + "description": "regional indicator symbol letter e + regional indicator symbol letter g", + "aliases": [ + "eg" + ], + "tags": [ + "flag", + "egypt" + ], + "unicode": "🇪🇬", + "htmlDec": "🇪🇬", + "htmlHex": "🇪🇬" + }, + { + "emojiChar": "🇪🇭", + "emoji": "🇪🇭", + "description": "regional indicator symbol letter e + regional indicator symbol letter h", + "aliases": [ + "eh" + ], + "tags": [ + "flag", + "western sahara" + ], + "unicode": "🇪🇭", + "htmlDec": "🇪🇭", + "htmlHex": "🇪🇭" + }, + { + "emojiChar": "🇪🇷", + "emoji": "🇪🇷", + "description": "regional indicator symbol letter e + regional indicator symbol letter r", + "aliases": [ + "er" + ], + "tags": [ + "flag", + "eritrea" + ], + "unicode": "🇪🇷", + "htmlDec": "🇪🇷", + "htmlHex": "🇪🇷" + }, + { + "emojiChar": "🇪🇸", + "emoji": "🇪🇸", + "description": "regional indicator symbol letter e + regional indicator symbol letter s", + "aliases": [ + "es" + ], + "tags": [ + "flag", + "spain" + ], + "unicode": "🇪🇸", + "htmlDec": "🇪🇸", + "htmlHex": "🇪🇸" + }, + { + "emojiChar": "🇪🇹", + "emoji": "🇪🇹", + "description": "regional indicator symbol letter e + regional indicator symbol letter t", + "aliases": [ + "et" + ], + "tags": [ + "flag", + "ethiopia" + ], + "unicode": "🇪🇹", + "htmlDec": "🇪🇹", + "htmlHex": "🇪🇹" + }, + { + "emojiChar": "🇪🇺", + "emoji": "🇪🇺", + "description": "regional indicator symbol letter e + regional indicator symbol letter u", + "aliases": [ + "eu" + ], + "tags": [ + "flag", + "european union" + ], + "unicode": "🇪🇺", + "htmlDec": "🇪🇺", + "htmlHex": "🇪🇺" + }, + { + "emojiChar": "🇫🇮", + "emoji": "🇫🇮", + "description": "regional indicator symbol letter f + regional indicator symbol letter i", + "aliases": [ + "fi" + ], + "tags": [ + "flag", + "finland" + ], + "unicode": "🇫🇮", + "htmlDec": "🇫🇮", + "htmlHex": "🇫🇮" + }, + { + "emojiChar": "🇫🇯", + "emoji": "🇫🇯", + "description": "regional indicator symbol letter f + regional indicator symbol letter j", + "aliases": [ + "fj" + ], + "tags": [ + "flag", + "fiji" + ], + "unicode": "🇫🇯", + "htmlDec": "🇫🇯", + "htmlHex": "🇫🇯" + }, + { + "emojiChar": "🇫🇰", + "emoji": "🇫🇰", + "description": "regional indicator symbol letter f + regional indicator symbol letter k", + "aliases": [ + "fk" + ], + "tags": [ + "flag", + "falkland islands" + ], + "unicode": "🇫🇰", + "htmlDec": "🇫🇰", + "htmlHex": "🇫🇰" + }, + { + "emojiChar": "🇫🇲", + "emoji": "🇫🇲", + "description": "regional indicator symbol letter f + regional indicator symbol letter m", + "aliases": [ + "fm" + ], + "tags": [ + "flag", + "micronesia" + ], + "unicode": "🇫🇲", + "htmlDec": "🇫🇲", + "htmlHex": "🇫🇲" + }, + { + "emojiChar": "🇫🇴", + "emoji": "🇫🇴", + "description": "regional indicator symbol letter f + regional indicator symbol letter o", + "aliases": [ + "fo" + ], + "tags": [ + "flag", + "faroe islands" + ], + "unicode": "🇫🇴", + "htmlDec": "🇫🇴", + "htmlHex": "🇫🇴" + }, + { + "emojiChar": "🇫🇷", + "emoji": "🇫🇷", + "description": "regional indicator symbol letter f + regional indicator symbol letter r", + "aliases": [ + "fr" + ], + "tags": [ + "flag", + "france" + ], + "unicode": "🇫🇷", + "htmlDec": "🇫🇷", + "htmlHex": "🇫🇷" + }, + { + "emojiChar": "🇬🇦", + "emoji": "🇬🇦", + "description": "regional indicator symbol letter g + regional indicator symbol letter a", + "aliases": [ + "ga" + ], + "tags": [ + "flag", + "gabon" + ], + "unicode": "🇬🇦", + "htmlDec": "🇬🇦", + "htmlHex": "🇬🇦" + }, + { + "emojiChar": "🇬🇧", + "emoji": "🇬🇧", + "description": "regional indicator symbol letter g + regional indicator symbol letter b", + "aliases": [ + "gb" + ], + "tags": [ + "flag", + "united kingdom" + ], + "unicode": "🇬🇧", + "htmlDec": "🇬🇧", + "htmlHex": "🇬🇧" + }, + { + "emojiChar": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + "emoji": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + "description": "waving black flag + regional indicator symbol letter g + regional indicator symbol letter b + regional indicator symbol letter e + regional indicator symbol letter n + regional indicator symbol letter g + cancel tag", + "aliases": [ + "gbeng" + ], + "tags": [ + "flag", + "england" + ], + "unicode": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + "htmlDec": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + "htmlHex": "🏴󠁧󠁢󠁥󠁮󠁧󠁿" + }, + { + "emojiChar": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", + "emoji": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", + "description": "waving black flag + regional indicator symbol letter g + regional indicator symbol letter b + regional indicator symbol letter s + regional indicator symbol letter c + regional indicator symbol letter t + cancel tag", + "aliases": [ + "gbsct" + ], + "tags": [ + "flag", + "scotland" + ], + "unicode": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", + "htmlDec": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", + "htmlHex": "🏴󠁧󠁢󠁳󠁣󠁴󠁿" + }, + { + "emojiChar": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", + "emoji": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", + "description": "waving black flag + regional indicator symbol letter g + regional indicator symbol letter b + regional indicator symbol letter w + regional indicator symbol letter l + regional indicator symbol letter s + cancel tag", + "aliases": [ + "gbwls" + ], + "tags": [ + "flag", + "wales" + ], + "unicode": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", + "htmlDec": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", + "htmlHex": "🏴󠁧󠁢󠁷󠁬󠁳󠁿" + }, + { + "emojiChar": "🇬🇩", + "emoji": "🇬🇩", + "description": "regional indicator symbol letter g + regional indicator symbol letter d", + "aliases": [ + "gd" + ], + "tags": [ + "flag", + "grenada" + ], + "unicode": "🇬🇩", + "htmlDec": "🇬🇩", + "htmlHex": "🇬🇩" + }, + { + "emojiChar": "🇬🇪", + "emoji": "🇬🇪", + "description": "regional indicator symbol letter g + regional indicator symbol letter e", + "aliases": [ + "ge" + ], + "tags": [ + "flag", + "georgia" + ], + "unicode": "🇬🇪", + "htmlDec": "🇬🇪", + "htmlHex": "🇬🇪" + }, + { + "emojiChar": "🇬🇫", + "emoji": "🇬🇫", + "description": "regional indicator symbol letter g + regional indicator symbol letter f", + "aliases": [ + "gf" + ], + "tags": [ + "flag", + "french guiana" + ], + "unicode": "🇬🇫", + "htmlDec": "🇬🇫", + "htmlHex": "🇬🇫" + }, + { + "emojiChar": "🇬🇬", + "emoji": "🇬🇬", + "description": "regional indicator symbol letter g + regional indicator symbol letter g", + "aliases": [ + "gg" + ], + "tags": [ + "flag", + "guernsey" + ], + "unicode": "🇬🇬", + "htmlDec": "🇬🇬", + "htmlHex": "🇬🇬" + }, + { + "emojiChar": "🇬🇭", + "emoji": "🇬🇭", + "description": "regional indicator symbol letter g + regional indicator symbol letter h", + "aliases": [ + "gh" + ], + "tags": [ + "flag", + "ghana" + ], + "unicode": "🇬🇭", + "htmlDec": "🇬🇭", + "htmlHex": "🇬🇭" + }, + { + "emojiChar": "🇬🇮", + "emoji": "🇬🇮", + "description": "regional indicator symbol letter g + regional indicator symbol letter i", + "aliases": [ + "gi" + ], + "tags": [ + "flag", + "gibraltar" + ], + "unicode": "🇬🇮", + "htmlDec": "🇬🇮", + "htmlHex": "🇬🇮" + }, + { + "emojiChar": "🇬🇱", + "emoji": "🇬🇱", + "description": "regional indicator symbol letter g + regional indicator symbol letter l", + "aliases": [ + "gl" + ], + "tags": [ + "flag", + "greenland" + ], + "unicode": "🇬🇱", + "htmlDec": "🇬🇱", + "htmlHex": "🇬🇱" + }, + { + "emojiChar": "🇬🇲", + "emoji": "🇬🇲", + "description": "regional indicator symbol letter g + regional indicator symbol letter m", + "aliases": [ + "gm" + ], + "tags": [ + "flag", + "gambia" + ], + "unicode": "🇬🇲", + "htmlDec": "🇬🇲", + "htmlHex": "🇬🇲" + }, + { + "emojiChar": "🇬🇳", + "emoji": "🇬🇳", + "description": "regional indicator symbol letter g + regional indicator symbol letter n", + "aliases": [ + "gn" + ], + "tags": [ + "flag", + "guinea" + ], + "unicode": "🇬🇳", + "htmlDec": "🇬🇳", + "htmlHex": "🇬🇳" + }, + { + "emojiChar": "🇬🇵", + "emoji": "🇬🇵", + "description": "regional indicator symbol letter g + regional indicator symbol letter p", + "aliases": [ + "gp" + ], + "tags": [ + "flag", + "guadeloupe" + ], + "unicode": "🇬🇵", + "htmlDec": "🇬🇵", + "htmlHex": "🇬🇵" + }, + { + "emojiChar": "🇬🇶", + "emoji": "🇬🇶", + "description": "regional indicator symbol letter g + regional indicator symbol letter q", + "aliases": [ + "gq" + ], + "tags": [ + "flag", + "equatorial guinea" + ], + "unicode": "🇬🇶", + "htmlDec": "🇬🇶", + "htmlHex": "🇬🇶" + }, + { + "emojiChar": "🇬🇷", + "emoji": "🇬🇷", + "description": "regional indicator symbol letter g + regional indicator symbol letter r", + "aliases": [ + "gr" + ], + "tags": [ + "flag", + "greece" + ], + "unicode": "🇬🇷", + "htmlDec": "🇬🇷", + "htmlHex": "🇬🇷" + }, + { + "emojiChar": "🇬🇸", + "emoji": "🇬🇸", + "description": "regional indicator symbol letter g + regional indicator symbol letter s", + "aliases": [ + "gs" + ], + "tags": [ + "flag", + "south georgia & south sandwich islands" + ], + "unicode": "🇬🇸", + "htmlDec": "🇬🇸", + "htmlHex": "🇬🇸" + }, + { + "emojiChar": "🇬🇹", + "emoji": "🇬🇹", + "description": "regional indicator symbol letter g + regional indicator symbol letter t", + "aliases": [ + "gt" + ], + "tags": [ + "flag", + "guatemala" + ], + "unicode": "🇬🇹", + "htmlDec": "🇬🇹", + "htmlHex": "🇬🇹" + }, + { + "emojiChar": "🇬🇺", + "emoji": "🇬🇺", + "description": "regional indicator symbol letter g + regional indicator symbol letter u", + "aliases": [ + "gu" + ], + "tags": [ + "flag", + "guam" + ], + "unicode": "🇬🇺", + "htmlDec": "🇬🇺", + "htmlHex": "🇬🇺" + }, + { + "emojiChar": "🇬🇼", + "emoji": "🇬🇼", + "description": "regional indicator symbol letter g + regional indicator symbol letter w", + "aliases": [ + "gw" + ], + "tags": [ + "flag", + "guinea-bissau" + ], + "unicode": "🇬🇼", + "htmlDec": "🇬🇼", + "htmlHex": "🇬🇼" + }, + { + "emojiChar": "🇬🇾", + "emoji": "🇬🇾", + "description": "regional indicator symbol letter g + regional indicator symbol letter y", + "aliases": [ + "gy" + ], + "tags": [ + "flag", + "guyana" + ], + "unicode": "🇬🇾", + "htmlDec": "🇬🇾", + "htmlHex": "🇬🇾" + }, + { + "emojiChar": "🇭🇰", + "emoji": "🇭🇰", + "description": "regional indicator symbol letter h + regional indicator symbol letter k", + "aliases": [ + "hk" + ], + "tags": [ + "flag", + "hong kong" + ], + "unicode": "🇭🇰", + "htmlDec": "🇭🇰", + "htmlHex": "🇭🇰" + }, + { + "emojiChar": "🇭🇲", + "emoji": "🇭🇲", + "description": "regional indicator symbol letter h + regional indicator symbol letter m", + "aliases": [ + "hm" + ], + "tags": [ + "flag", + "heard & mcdonald islands" + ], + "unicode": "🇭🇲", + "htmlDec": "🇭🇲", + "htmlHex": "🇭🇲" + }, + { + "emojiChar": "🇭🇳", + "emoji": "🇭🇳", + "description": "regional indicator symbol letter h + regional indicator symbol letter n", + "aliases": [ + "hn" + ], + "tags": [ + "flag", + "honduras" + ], + "unicode": "🇭🇳", + "htmlDec": "🇭🇳", + "htmlHex": "🇭🇳" + }, + { + "emojiChar": "🇭🇷", + "emoji": "🇭🇷", + "description": "regional indicator symbol letter h + regional indicator symbol letter r", + "aliases": [ + "hr" + ], + "tags": [ + "flag", + "croatia" + ], + "unicode": "🇭🇷", + "htmlDec": "🇭🇷", + "htmlHex": "🇭🇷" + }, + { + "emojiChar": "🇭🇹", + "emoji": "🇭🇹", + "description": "regional indicator symbol letter h + regional indicator symbol letter t", + "aliases": [ + "ht" + ], + "tags": [ + "flag", + "haiti" + ], + "unicode": "🇭🇹", + "htmlDec": "🇭🇹", + "htmlHex": "🇭🇹" + }, + { + "emojiChar": "🇭🇺", + "emoji": "🇭🇺", + "description": "regional indicator symbol letter h + regional indicator symbol letter u", + "aliases": [ + "hu" + ], + "tags": [ + "flag", + "hungary" + ], + "unicode": "🇭🇺", + "htmlDec": "🇭🇺", + "htmlHex": "🇭🇺" + }, + { + "emojiChar": "🇮🇨", + "emoji": "🇮🇨", + "description": "regional indicator symbol letter i + regional indicator symbol letter c", + "aliases": [ + "ic" + ], + "tags": [ + "flag", + "canary islands" + ], + "unicode": "🇮🇨", + "htmlDec": "🇮🇨", + "htmlHex": "🇮🇨" + }, + { + "emojiChar": "🇮🇩", + "emoji": "🇮🇩", + "description": "regional indicator symbol letter i + regional indicator symbol letter d", + "aliases": [ + "id_flag" + ], + "tags": [ + "flag", + "indonesia" + ], + "unicode": "🇮🇩", + "htmlDec": "🇮🇩", + "htmlHex": "🇮🇩" + }, + { + "emojiChar": "🇮🇪", + "emoji": "🇮🇪", + "description": "regional indicator symbol letter i + regional indicator symbol letter e", + "aliases": [ + "ie" + ], + "tags": [ + "flag", + "ireland" + ], + "unicode": "🇮🇪", + "htmlDec": "🇮🇪", + "htmlHex": "🇮🇪" + }, + { + "emojiChar": "🇮🇱", + "emoji": "🇮🇱", + "description": "regional indicator symbol letter i + regional indicator symbol letter l", + "aliases": [ + "il" + ], + "tags": [ + "flag", + "israel" + ], + "unicode": "🇮🇱", + "htmlDec": "🇮🇱", + "htmlHex": "🇮🇱" + }, + { + "emojiChar": "🇮🇲", + "emoji": "🇮🇲", + "description": "regional indicator symbol letter i + regional indicator symbol letter m", + "aliases": [ + "im" + ], + "tags": [ + "flag", + "isle of mann" + ], + "unicode": "🇮🇲", + "htmlDec": "🇮🇲", + "htmlHex": "🇮🇲" + }, + { + "emojiChar": "🇮🇳", + "emoji": "🇮🇳", + "description": "regional indicator symbol letter i + regional indicator symbol letter n", + "aliases": [ + "in" + ], + "tags": [ + "flag", + "india" + ], + "unicode": "🇮🇳", + "htmlDec": "🇮🇳", + "htmlHex": "🇮🇳" + }, + { + "emojiChar": "🇮🇴", + "emoji": "🇮🇴", + "description": "regional indicator symbol letter i + regional indicator symbol letter o", + "aliases": [ + "io" + ], + "tags": [ + "flag", + "british indian ocean territory" + ], + "unicode": "🇮🇴", + "htmlDec": "🇮🇴", + "htmlHex": "🇮🇴" + }, + { + "emojiChar": "🇮🇶", + "emoji": "🇮🇶", + "description": "regional indicator symbol letter i + regional indicator symbol letter q", + "aliases": [ + "iq" + ], + "tags": [ + "flag", + "iraq" + ], + "unicode": "🇮🇶", + "htmlDec": "🇮🇶", + "htmlHex": "🇮🇶" + }, + { + "emojiChar": "🇮🇷", + "emoji": "🇮🇷", + "description": "regional indicator symbol letter i + regional indicator symbol letter r", + "aliases": [ + "ir" + ], + "tags": [ + "flag", + "iran" + ], + "unicode": "🇮🇷", + "htmlDec": "🇮🇷", + "htmlHex": "🇮🇷" + }, + { + "emojiChar": "🇮🇸", + "emoji": "🇮🇸", + "description": "regional indicator symbol letter i + regional indicator symbol letter s", + "aliases": [ + "is" + ], + "tags": [ + "flag", + "iceland" + ], + "unicode": "🇮🇸", + "htmlDec": "🇮🇸", + "htmlHex": "🇮🇸" + }, + { + "emojiChar": "🇮🇹", + "emoji": "🇮🇹", + "description": "regional indicator symbol letter i + regional indicator symbol letter t", + "aliases": [ + "it" + ], + "tags": [ + "flag", + "italy" + ], + "unicode": "🇮🇹", + "htmlDec": "🇮🇹", + "htmlHex": "🇮🇹" + }, + { + "emojiChar": "🇯🇪", + "emoji": "🇯🇪", + "description": "regional indicator symbol letter j + regional indicator symbol letter e", + "aliases": [ + "je" + ], + "tags": [ + "flag", + "jersey" + ], + "unicode": "🇯🇪", + "htmlDec": "🇯🇪", + "htmlHex": "🇯🇪" + }, + { + "emojiChar": "🇯🇲", + "emoji": "🇯🇲", + "description": "regional indicator symbol letter j + regional indicator symbol letter m", + "aliases": [ + "jm" + ], + "tags": [ + "flag", + "jamaica" + ], + "unicode": "🇯🇲", + "htmlDec": "🇯🇲", + "htmlHex": "🇯🇲" + }, + { + "emojiChar": "🇯🇴", + "emoji": "🇯🇴", + "description": "regional indicator symbol letter j + regional indicator symbol letter o", + "aliases": [ + "jo" + ], + "tags": [ + "flag", + "jordan" + ], + "unicode": "🇯🇴", + "htmlDec": "🇯🇴", + "htmlHex": "🇯🇴" + }, + { + "emojiChar": "🇯🇵", + "emoji": "🇯🇵", + "description": "regional indicator symbol letter j + regional indicator symbol letter p", + "aliases": [ + "jp" + ], + "tags": [ + "flag", + "japan" + ], + "unicode": "🇯🇵", + "htmlDec": "🇯🇵", + "htmlHex": "🇯🇵" + }, + { + "emojiChar": "🇰🇪", + "emoji": "🇰🇪", + "description": "regional indicator symbol letter k + regional indicator symbol letter e", + "aliases": [ + "ke" + ], + "tags": [ + "flag", + "kenya" + ], + "unicode": "🇰🇪", + "htmlDec": "🇰🇪", + "htmlHex": "🇰🇪" + }, + { + "emojiChar": "🇰🇬", + "emoji": "🇰🇬", + "description": "regional indicator symbol letter k + regional indicator symbol letter g", + "aliases": [ + "kg" + ], + "tags": [ + "flag", + "kyrgyzstan" + ], + "unicode": "🇰🇬", + "htmlDec": "🇰🇬", + "htmlHex": "🇰🇬" + }, + { + "emojiChar": "🇰🇭", + "emoji": "🇰🇭", + "description": "regional indicator symbol letter k + regional indicator symbol letter h", + "aliases": [ + "kh" + ], + "tags": [ + "flag", + "cambodia" + ], + "unicode": "🇰🇭", + "htmlDec": "🇰🇭", + "htmlHex": "🇰🇭" + }, + { + "emojiChar": "🇰🇮", + "emoji": "🇰🇮", + "description": "regional indicator symbol letter k + regional indicator symbol letter i", + "aliases": [ + "ki" + ], + "tags": [ + "flag", + "kiribati" + ], + "unicode": "🇰🇮", + "htmlDec": "🇰🇮", + "htmlHex": "🇰🇮" + }, + { + "emojiChar": "🇰🇲", + "emoji": "🇰🇲", + "description": "regional indicator symbol letter k + regional indicator symbol letter m", + "aliases": [ + "km" + ], + "tags": [ + "flag", + "comoros" + ], + "unicode": "🇰🇲", + "htmlDec": "🇰🇲", + "htmlHex": "🇰🇲" + }, + { + "emojiChar": "🇰🇳", + "emoji": "🇰🇳", + "description": "regional indicator symbol letter k + regional indicator symbol letter n", + "aliases": [ + "kn" + ], + "tags": [ + "flag", + "st. kitts & nevis" + ], + "unicode": "🇰🇳", + "htmlDec": "🇰🇳", + "htmlHex": "🇰🇳" + }, + { + "emojiChar": "🇰🇵", + "emoji": "🇰🇵", + "description": "regional indicator symbol letter k + regional indicator symbol letter p", + "aliases": [ + "kp" + ], + "tags": [ + "flag", + "north korea" + ], + "unicode": "🇰🇵", + "htmlDec": "🇰🇵", + "htmlHex": "🇰🇵" + }, + { + "emojiChar": "🇰🇷", + "emoji": "🇰🇷", + "description": "regional indicator symbol letter k + regional indicator symbol letter r", + "aliases": [ + "kr" + ], + "tags": [ + "flag", + "south korea" + ], + "unicode": "🇰🇷", + "htmlDec": "🇰🇷", + "htmlHex": "🇰🇷" + }, + { + "emojiChar": "🇰🇼", + "emoji": "🇰🇼", + "description": "regional indicator symbol letter k + regional indicator symbol letter w", + "aliases": [ + "kw" + ], + "tags": [ + "flag", + "kuwait" + ], + "unicode": "🇰🇼", + "htmlDec": "🇰🇼", + "htmlHex": "🇰🇼" + }, + { + "emojiChar": "🇰🇾", + "emoji": "🇰🇾", + "description": "regional indicator symbol letter k + regional indicator symbol letter y", + "aliases": [ + "ky" + ], + "tags": [ + "flag", + "cayman islands" + ], + "unicode": "🇰🇾", + "htmlDec": "🇰🇾", + "htmlHex": "🇰🇾" + }, + { + "emojiChar": "🇰🇿", + "emoji": "🇰🇿", + "description": "regional indicator symbol letter k + regional indicator symbol letter z", + "aliases": [ + "kz" + ], + "tags": [ + "flag", + "kazakhstan" + ], + "unicode": "🇰🇿", + "htmlDec": "🇰🇿", + "htmlHex": "🇰🇿" + }, + { + "emojiChar": "🇱🇦", + "emoji": "🇱🇦", + "description": "regional indicator symbol letter l + regional indicator symbol letter a", + "aliases": [ + "la" + ], + "tags": [ + "flag", + "laos" + ], + "unicode": "🇱🇦", + "htmlDec": "🇱🇦", + "htmlHex": "🇱🇦" + }, + { + "emojiChar": "🇱🇧", + "emoji": "🇱🇧", + "description": "regional indicator symbol letter l + regional indicator symbol letter b", + "aliases": [ + "lb" + ], + "tags": [ + "flag", + "lebanon" + ], + "unicode": "🇱🇧", + "htmlDec": "🇱🇧", + "htmlHex": "🇱🇧" + }, + { + "emojiChar": "🇱🇨", + "emoji": "🇱🇨", + "description": "regional indicator symbol letter l + regional indicator symbol letter c", + "aliases": [ + "lc" + ], + "tags": [ + "flag", + "st. lucia" + ], + "unicode": "🇱🇨", + "htmlDec": "🇱🇨", + "htmlHex": "🇱🇨" + }, + { + "emojiChar": "🇱🇮", + "emoji": "🇱🇮", + "description": "regional indicator symbol letter l + regional indicator symbol letter i", + "aliases": [ + "li" + ], + "tags": [ + "flag", + "liechtenstein" + ], + "unicode": "🇱🇮", + "htmlDec": "🇱🇮", + "htmlHex": "🇱🇮" + }, + { + "emojiChar": "🇱🇰", + "emoji": "🇱🇰", + "description": "regional indicator symbol letter l + regional indicator symbol letter k", + "aliases": [ + "lk" + ], + "tags": [ + "flag", + "sri lanka" + ], + "unicode": "🇱🇰", + "htmlDec": "🇱🇰", + "htmlHex": "🇱🇰" + }, + { + "emojiChar": "🇱🇷", + "emoji": "🇱🇷", + "description": "regional indicator symbol letter l + regional indicator symbol letter r", + "aliases": [ + "lr" + ], + "tags": [ + "flag", + "liberia" + ], + "unicode": "🇱🇷", + "htmlDec": "🇱🇷", + "htmlHex": "🇱🇷" + }, + { + "emojiChar": "🇱🇸", + "emoji": "🇱🇸", + "description": "regional indicator symbol letter l + regional indicator symbol letter s", + "aliases": [ + "ls" + ], + "tags": [ + "flag", + "lesotho" + ], + "unicode": "🇱🇸", + "htmlDec": "🇱🇸", + "htmlHex": "🇱🇸" + }, + { + "emojiChar": "🇱🇹", + "emoji": "🇱🇹", + "description": "regional indicator symbol letter l + regional indicator symbol letter t", + "aliases": [ + "lt" + ], + "tags": [ + "flag", + "lithuania" + ], + "unicode": "🇱🇹", + "htmlDec": "🇱🇹", + "htmlHex": "🇱🇹" + }, + { + "emojiChar": "🇱🇺", + "emoji": "🇱🇺", + "description": "regional indicator symbol letter l + regional indicator symbol letter u", + "aliases": [ + "lu" + ], + "tags": [ + "flag", + "luxembourg" + ], + "unicode": "🇱🇺", + "htmlDec": "🇱🇺", + "htmlHex": "🇱🇺" + }, + { + "emojiChar": "🇱🇻", + "emoji": "🇱🇻", + "description": "regional indicator symbol letter l + regional indicator symbol letter v", + "aliases": [ + "lv" + ], + "tags": [ + "flag", + "latvia" + ], + "unicode": "🇱🇻", + "htmlDec": "🇱🇻", + "htmlHex": "🇱🇻" + }, + { + "emojiChar": "🇱🇾", + "emoji": "🇱🇾", + "description": "regional indicator symbol letter l + regional indicator symbol letter y", + "aliases": [ + "ly" + ], + "tags": [ + "flag", + "libya" + ], + "unicode": "🇱🇾", + "htmlDec": "🇱🇾", + "htmlHex": "🇱🇾" + }, + { + "emojiChar": "🇲🇦", + "emoji": "🇲🇦", + "description": "regional indicator symbol letter m + regional indicator symbol letter a", + "aliases": [ + "ma" + ], + "tags": [ + "flag", + "morocco" + ], + "unicode": "🇲🇦", + "htmlDec": "🇲🇦", + "htmlHex": "🇲🇦" + }, + { + "emojiChar": "🇲🇨", + "emoji": "🇲🇨", + "description": "regional indicator symbol letter m + regional indicator symbol letter c", + "aliases": [ + "mc" + ], + "tags": [ + "flag", + "monaco" + ], + "unicode": "🇲🇨", + "htmlDec": "🇲🇨", + "htmlHex": "🇲🇨" + }, + { + "emojiChar": "🇲🇩", + "emoji": "🇲🇩", + "description": "regional indicator symbol letter m + regional indicator symbol letter d", + "aliases": [ + "md" + ], + "tags": [ + "flag", + "moldova" + ], + "unicode": "🇲🇩", + "htmlDec": "🇲🇩", + "htmlHex": "🇲🇩" + }, + { + "emojiChar": "🇲🇪", + "emoji": "🇲🇪", + "description": "regional indicator symbol letter m + regional indicator symbol letter e", + "aliases": [ + "me" + ], + "tags": [ + "flag", + "montenegro" + ], + "unicode": "🇲🇪", + "htmlDec": "🇲🇪", + "htmlHex": "🇲🇪" + }, + { + "emojiChar": "🇲🇫", + "emoji": "🇲🇫", + "description": "regional indicator symbol letter m + regional indicator symbol letter f", + "aliases": [ + "mf" + ], + "tags": [ + "flag", + "st. martin" + ], + "unicode": "🇲🇫", + "htmlDec": "🇲🇫", + "htmlHex": "🇲🇫" + }, + { + "emojiChar": "🇲🇬", + "emoji": "🇲🇬", + "description": "regional indicator symbol letter m + regional indicator symbol letter g", + "aliases": [ + "mg" + ], + "tags": [ + "flag", + "madagascar" + ], + "unicode": "🇲🇬", + "htmlDec": "🇲🇬", + "htmlHex": "🇲🇬" + }, + { + "emojiChar": "🇲🇭", + "emoji": "🇲🇭", + "description": "regional indicator symbol letter m + regional indicator symbol letter h", + "aliases": [ + "mh" + ], + "tags": [ + "flag", + "marshall islands" + ], + "unicode": "🇲🇭", + "htmlDec": "🇲🇭", + "htmlHex": "🇲🇭" + }, + { + "emojiChar": "🇲🇰", + "emoji": "🇲🇰", + "description": "regional indicator symbol letter m + regional indicator symbol letter k", + "aliases": [ + "mk" + ], + "tags": [ + "flag", + "macedonia" + ], + "unicode": "🇲🇰", + "htmlDec": "🇲🇰", + "htmlHex": "🇲🇰" + }, + { + "emojiChar": "🇲🇱", + "emoji": "🇲🇱", + "description": "regional indicator symbol letter m + regional indicator symbol letter l", + "aliases": [ + "ml" + ], + "tags": [ + "flag", + "mali" + ], + "unicode": "🇲🇱", + "htmlDec": "🇲🇱", + "htmlHex": "🇲🇱" + }, + { + "emojiChar": "🇲🇲", + "emoji": "🇲🇲", + "description": "regional indicator symbol letter m + regional indicator symbol letter m", + "aliases": [ + "mm" + ], + "tags": [ + "flag", + "myanmar" + ], + "unicode": "🇲🇲", + "htmlDec": "🇲🇲", + "htmlHex": "🇲🇲" + }, + { + "emojiChar": "🇲🇳", + "emoji": "🇲🇳", + "description": "regional indicator symbol letter m + regional indicator symbol letter n", + "aliases": [ + "mn" + ], + "tags": [ + "flag", + "mongolia" + ], + "unicode": "🇲🇳", + "htmlDec": "🇲🇳", + "htmlHex": "🇲🇳" + }, + { + "emojiChar": "🇲🇴", + "emoji": "🇲🇴", + "description": "regional indicator symbol letter m + regional indicator symbol letter o", + "aliases": [ + "mo" + ], + "tags": [ + "flag", + "macau" + ], + "unicode": "🇲🇴", + "htmlDec": "🇲🇴", + "htmlHex": "🇲🇴" + }, + { + "emojiChar": "🇲🇵", + "emoji": "🇲🇵", + "description": "regional indicator symbol letter m + regional indicator symbol letter p", + "aliases": [ + "mp" + ], + "tags": [ + "flag", + "northern mariana islands" + ], + "unicode": "🇲🇵", + "htmlDec": "🇲🇵", + "htmlHex": "🇲🇵" + }, + { + "emojiChar": "🇲🇶", + "emoji": "🇲🇶", + "description": "regional indicator symbol letter m + regional indicator symbol letter q", + "aliases": [ + "mq" + ], + "tags": [ + "flag", + "martinique" + ], + "unicode": "🇲🇶", + "htmlDec": "🇲🇶", + "htmlHex": "🇲🇶" + }, + { + "emojiChar": "🇲🇷", + "emoji": "🇲🇷", + "description": "regional indicator symbol letter m + regional indicator symbol letter r", + "aliases": [ + "mr" + ], + "tags": [ + "flag", + "mauritania" + ], + "unicode": "🇲🇷", + "htmlDec": "🇲🇷", + "htmlHex": "🇲🇷" + }, + { + "emojiChar": "🇲🇸", + "emoji": "🇲🇸", + "description": "regional indicator symbol letter m + regional indicator symbol letter s", + "aliases": [ + "ms" + ], + "tags": [ + "flag", + "montserrat" + ], + "unicode": "🇲🇸", + "htmlDec": "🇲🇸", + "htmlHex": "🇲🇸" + }, + { + "emojiChar": "🇲🇹", + "emoji": "🇲🇹", + "description": "regional indicator symbol letter m + regional indicator symbol letter t", + "aliases": [ + "mt" + ], + "tags": [ + "flag", + "malta" + ], + "unicode": "🇲🇹", + "htmlDec": "🇲🇹", + "htmlHex": "🇲🇹" + }, + { + "emojiChar": "🇲🇺", + "emoji": "🇲🇺", + "description": "regional indicator symbol letter m + regional indicator symbol letter u", + "aliases": [ + "mu" + ], + "tags": [ + "flag", + "mauritius" + ], + "unicode": "🇲🇺", + "htmlDec": "🇲🇺", + "htmlHex": "🇲🇺" + }, + { + "emojiChar": "🇲🇻", + "emoji": "🇲🇻", + "description": "regional indicator symbol letter m + regional indicator symbol letter v", + "aliases": [ + "mv" + ], + "tags": [ + "flag", + "maldives" + ], + "unicode": "🇲🇻", + "htmlDec": "🇲🇻", + "htmlHex": "🇲🇻" + }, + { + "emojiChar": "🇲🇼", + "emoji": "🇲🇼", + "description": "regional indicator symbol letter m + regional indicator symbol letter w", + "aliases": [ + "mw" + ], + "tags": [ + "flag", + "malawi" + ], + "unicode": "🇲🇼", + "htmlDec": "🇲🇼", + "htmlHex": "🇲🇼" + }, + { + "emojiChar": "🇲🇽", + "emoji": "🇲🇽", + "description": "regional indicator symbol letter m + regional indicator symbol letter x", + "aliases": [ + "mx" + ], + "tags": [ + "flag", + "mexico" + ], + "unicode": "🇲🇽", + "htmlDec": "🇲🇽", + "htmlHex": "🇲🇽" + }, + { + "emojiChar": "🇲🇾", + "emoji": "🇲🇾", + "description": "regional indicator symbol letter m + regional indicator symbol letter y", + "aliases": [ + "my" + ], + "tags": [ + "flag", + "malaysia" + ], + "unicode": "🇲🇾", + "htmlDec": "🇲🇾", + "htmlHex": "🇲🇾" + }, + { + "emojiChar": "🇲🇿", + "emoji": "🇲🇿", + "description": "regional indicator symbol letter m + regional indicator symbol letter z", + "aliases": [ + "mz" + ], + "tags": [ + "flag", + "mozambique" + ], + "unicode": "🇲🇿", + "htmlDec": "🇲🇿", + "htmlHex": "🇲🇿" + }, + { + "emojiChar": "🇳🇦", + "emoji": "🇳🇦", + "description": "regional indicator symbol letter n + regional indicator symbol letter a", + "aliases": [ + "na" + ], + "tags": [ + "flag", + "namibia" + ], + "unicode": "🇳🇦", + "htmlDec": "🇳🇦", + "htmlHex": "🇳🇦" + }, + { + "emojiChar": "🇳🇨", + "emoji": "🇳🇨", + "description": "regional indicator symbol letter n + regional indicator symbol letter c", + "aliases": [ + "nc" + ], + "tags": [ + "flag", + "new caledonia" + ], + "unicode": "🇳🇨", + "htmlDec": "🇳🇨", + "htmlHex": "🇳🇨" + }, + { + "emojiChar": "🇳🇪", + "emoji": "🇳🇪", + "description": "regional indicator symbol letter n + regional indicator symbol letter e", + "aliases": [ + "ne" + ], + "tags": [ + "flag", + "niger" + ], + "unicode": "🇳🇪", + "htmlDec": "🇳🇪", + "htmlHex": "🇳🇪" + }, + { + "emojiChar": "🇳🇫", + "emoji": "🇳🇫", + "description": "regional indicator symbol letter n + regional indicator symbol letter f", + "aliases": [ + "nf" + ], + "tags": [ + "flag", + "norfolk island" + ], + "unicode": "🇳🇫", + "htmlDec": "🇳🇫", + "htmlHex": "🇳🇫" + }, + { + "emojiChar": "🇳🇬", + "emoji": "🇳🇬", + "description": "regional indicator symbol letter n + regional indicator symbol letter g", + "aliases": [ + "ng" + ], + "tags": [ + "flag", + "nigeria" + ], + "unicode": "🇳🇬", + "htmlDec": "🇳🇬", + "htmlHex": "🇳🇬" + }, + { + "emojiChar": "🇳🇮", + "emoji": "🇳🇮", + "description": "regional indicator symbol letter n + regional indicator symbol letter i", + "aliases": [ + "ni" + ], + "tags": [ + "flag", + "nicaragua" + ], + "unicode": "🇳🇮", + "htmlDec": "🇳🇮", + "htmlHex": "🇳🇮" + }, + { + "emojiChar": "🇳🇱", + "emoji": "🇳🇱", + "description": "regional indicator symbol letter n + regional indicator symbol letter l", + "aliases": [ + "nl" + ], + "tags": [ + "flag", + "netherlands" + ], + "unicode": "🇳🇱", + "htmlDec": "🇳🇱", + "htmlHex": "🇳🇱" + }, + { + "emojiChar": "🇳🇴", + "emoji": "🇳🇴", + "description": "regional indicator symbol letter n + regional indicator symbol letter o", + "aliases": [ + "no" + ], + "tags": [ + "flag", + "norway" + ], + "unicode": "🇳🇴", + "htmlDec": "🇳🇴", + "htmlHex": "🇳🇴" + }, + { + "emojiChar": "🇳🇵", + "emoji": "🇳🇵", + "description": "regional indicator symbol letter n + regional indicator symbol letter p", + "aliases": [ + "np" + ], + "tags": [ + "flag", + "nepal" + ], + "unicode": "🇳🇵", + "htmlDec": "🇳🇵", + "htmlHex": "🇳🇵" + }, + { + "emojiChar": "🇳🇷", + "emoji": "🇳🇷", + "description": "regional indicator symbol letter n + regional indicator symbol letter r", + "aliases": [ + "nr" + ], + "tags": [ + "flag", + "nauru" + ], + "unicode": "🇳🇷", + "htmlDec": "🇳🇷", + "htmlHex": "🇳🇷" + }, + { + "emojiChar": "🇳🇺", + "emoji": "🇳🇺", + "description": "regional indicator symbol letter n + regional indicator symbol letter u", + "aliases": [ + "nu" + ], + "tags": [ + "flag", + "niue" + ], + "unicode": "🇳🇺", + "htmlDec": "🇳🇺", + "htmlHex": "🇳🇺" + }, + { + "emojiChar": "🇳🇿", + "emoji": "🇳🇿", + "description": "regional indicator symbol letter n + regional indicator symbol letter z", + "aliases": [ + "nz" + ], + "tags": [ + "flag", + "new zealand" + ], + "unicode": "🇳🇿", + "htmlDec": "🇳🇿", + "htmlHex": "🇳🇿" + }, + { + "emojiChar": "🇴🇲", + "emoji": "🇴🇲", + "description": "regional indicator symbol letter o + regional indicator symbol letter m", + "aliases": [ + "om" + ], + "tags": [ + "flag", + "oman" + ], + "unicode": "🇴🇲", + "htmlDec": "🇴🇲", + "htmlHex": "🇴🇲" + }, + { + "emojiChar": "🇵🇦", + "emoji": "🇵🇦", + "description": "regional indicator symbol letter p + regional indicator symbol letter a", + "aliases": [ + "pa" + ], + "tags": [ + "flag", + "panama" + ], + "unicode": "🇵🇦", + "htmlDec": "🇵🇦", + "htmlHex": "🇵🇦" + }, + { + "emojiChar": "🇵🇪", + "emoji": "🇵🇪", + "description": "regional indicator symbol letter p + regional indicator symbol letter e", + "aliases": [ + "pe" + ], + "tags": [ + "flag", + "peru" + ], + "unicode": "🇵🇪", + "htmlDec": "🇵🇪", + "htmlHex": "🇵🇪" + }, + { + "emojiChar": "🇵🇫", + "emoji": "🇵🇫", + "description": "regional indicator symbol letter p + regional indicator symbol letter f", + "aliases": [ + "pf" + ], + "tags": [ + "flag", + "french polynesia" + ], + "unicode": "🇵🇫", + "htmlDec": "🇵🇫", + "htmlHex": "🇵🇫" + }, + { + "emojiChar": "🇵🇬", + "emoji": "🇵🇬", + "description": "regional indicator symbol letter p + regional indicator symbol letter g", + "aliases": [ + "pg" + ], + "tags": [ + "flag", + "papua new guinea" + ], + "unicode": "🇵🇬", + "htmlDec": "🇵🇬", + "htmlHex": "🇵🇬" + }, + { + "emojiChar": "🇵🇭", + "emoji": "🇵🇭", + "description": "regional indicator symbol letter p + regional indicator symbol letter h", + "aliases": [ + "ph" + ], + "tags": [ + "flag", + "philippines" + ], + "unicode": "🇵🇭", + "htmlDec": "🇵🇭", + "htmlHex": "🇵🇭" + }, + { + "emojiChar": "🇵🇰", + "emoji": "🇵🇰", + "description": "regional indicator symbol letter p + regional indicator symbol letter k", + "aliases": [ + "pk" + ], + "tags": [ + "flag", + "pakistan" + ], + "unicode": "🇵🇰", + "htmlDec": "🇵🇰", + "htmlHex": "🇵🇰" + }, + { + "emojiChar": "🇵🇱", + "emoji": "🇵🇱", + "description": "regional indicator symbol letter p + regional indicator symbol letter l", + "aliases": [ + "pl" + ], + "tags": [ + "flag", + "poland" + ], + "unicode": "🇵🇱", + "htmlDec": "🇵🇱", + "htmlHex": "🇵🇱" + }, + { + "emojiChar": "🇵🇲", + "emoji": "🇵🇲", + "description": "regional indicator symbol letter p + regional indicator symbol letter m", + "aliases": [ + "pm" + ], + "tags": [ + "flag", + "st. pierre & miquelon" + ], + "unicode": "🇵🇲", + "htmlDec": "🇵🇲", + "htmlHex": "🇵🇲" + }, + { + "emojiChar": "🇵🇳", + "emoji": "🇵🇳", + "description": "regional indicator symbol letter p + regional indicator symbol letter n", + "aliases": [ + "pn" + ], + "tags": [ + "flag", + "pitcairn islands" + ], + "unicode": "🇵🇳", + "htmlDec": "🇵🇳", + "htmlHex": "🇵🇳" + }, + { + "emojiChar": "🇵🇷", + "emoji": "🇵🇷", + "description": "regional indicator symbol letter p + regional indicator symbol letter r", + "aliases": [ + "pr" + ], + "tags": [ + "flag", + "puerto rico" + ], + "unicode": "🇵🇷", + "htmlDec": "🇵🇷", + "htmlHex": "🇵🇷" + }, + { + "emojiChar": "🇵🇸", + "emoji": "🇵🇸", + "description": "regional indicator symbol letter p + regional indicator symbol letter s", + "aliases": [ + "ps" + ], + "tags": [ + "flag", + "palestine" + ], + "unicode": "🇵🇸", + "htmlDec": "🇵🇸", + "htmlHex": "🇵🇸" + }, + { + "emojiChar": "🇵🇹", + "emoji": "🇵🇹", + "description": "regional indicator symbol letter p + regional indicator symbol letter t", + "aliases": [ + "pt" + ], + "tags": [ + "flag", + "portugal" + ], + "unicode": "🇵🇹", + "htmlDec": "🇵🇹", + "htmlHex": "🇵🇹" + }, + { + "emojiChar": "🇵🇼", + "emoji": "🇵🇼", + "description": "regional indicator symbol letter p + regional indicator symbol letter w", + "aliases": [ + "pw" + ], + "tags": [ + "flag", + "palau" + ], + "unicode": "🇵🇼", + "htmlDec": "🇵🇼", + "htmlHex": "🇵🇼" + }, + { + "emojiChar": "🇵🇾", + "emoji": "🇵🇾", + "description": "regional indicator symbol letter p + regional indicator symbol letter y", + "aliases": [ + "py" + ], + "tags": [ + "flag", + "paraguay" + ], + "unicode": "🇵🇾", + "htmlDec": "🇵🇾", + "htmlHex": "🇵🇾" + }, + { + "emojiChar": "🇶🇦", + "emoji": "🇶🇦", + "description": "regional indicator symbol letter q + regional indicator symbol letter a", + "aliases": [ + "qa" + ], + "tags": [ + "flag", + "qatar" + ], + "unicode": "🇶🇦", + "htmlDec": "🇶🇦", + "htmlHex": "🇶🇦" + }, + { + "emojiChar": "🏳️‍🌈", + "emoji": "🏳️‍🌈", + "description": "rainbow flag", + "aliases": [ + "rainbow_flag", + "pride_flag" + ], + "tags": [ + "flag" + ], + "unicode": "🏳️‍🌈", + "htmlDec": "🏳️‍🌈", + "htmlHex": "🏳️‍🌈" + }, + { + "emojiChar": "🇷🇪", + "emoji": "🇷🇪", + "description": "regional indicator symbol letter r + regional indicator symbol letter e", + "aliases": [ + "re" + ], + "tags": [ + "flag", + "reunion" + ], + "unicode": "🇷🇪", + "htmlDec": "🇷🇪", + "htmlHex": "🇷🇪" + }, + { + "emojiChar": "🇷🇴", + "emoji": "🇷🇴", + "description": "regional indicator symbol letter r + regional indicator symbol letter o", + "aliases": [ + "ro" + ], + "tags": [ + "flag", + "romania" + ], + "unicode": "🇷🇴", + "htmlDec": "🇷🇴", + "htmlHex": "🇷🇴" + }, + { + "emojiChar": "🇷🇸", + "emoji": "🇷🇸", + "description": "regional indicator symbol letter r + regional indicator symbol letter s", + "aliases": [ + "rs" + ], + "tags": [ + "flag", + "serbia" + ], + "unicode": "🇷🇸", + "htmlDec": "🇷🇸", + "htmlHex": "🇷🇸" + }, + { + "emojiChar": "🇷🇺", + "emoji": "🇷🇺", + "description": "regional indicator symbol letter r + regional indicator symbol letter u", + "aliases": [ + "ru" + ], + "tags": [ + "flag", + "russia" + ], + "unicode": "🇷🇺", + "htmlDec": "🇷🇺", + "htmlHex": "🇷🇺" + }, + { + "emojiChar": "🇷🇼", + "emoji": "🇷🇼", + "description": "regional indicator symbol letter r + regional indicator symbol letter w", + "aliases": [ + "rw" + ], + "tags": [ + "flag", + "rwanda" + ], + "unicode": "🇷🇼", + "htmlDec": "🇷🇼", + "htmlHex": "🇷🇼" + }, + { + "emojiChar": "🇸🇦", + "emoji": "🇸🇦", + "description": "regional indicator symbol letter s + regional indicator symbol letter a", + "aliases": [ + "sa_flag" + ], + "tags": [ + "flag", + "saudi arabia" + ], + "unicode": "🇸🇦", + "htmlDec": "🇸🇦", + "htmlHex": "🇸🇦" + }, + { + "emojiChar": "🇸🇧", + "emoji": "🇸🇧", + "description": "regional indicator symbol letter s + regional indicator symbol letter b", + "aliases": [ + "sb" + ], + "tags": [ + "flag", + "solomon islands" + ], + "unicode": "🇸🇧", + "htmlDec": "🇸🇧", + "htmlHex": "🇸🇧" + }, + { + "emojiChar": "🇸🇨", + "emoji": "🇸🇨", + "description": "regional indicator symbol letter s + regional indicator symbol letter c", + "aliases": [ + "sc" + ], + "tags": [ + "flag", + "seychelles" + ], + "unicode": "🇸🇨", + "htmlDec": "🇸🇨", + "htmlHex": "🇸🇨" + }, + { + "emojiChar": "🇸🇩", + "emoji": "🇸🇩", + "description": "regional indicator symbol letter s + regional indicator symbol letter d", + "aliases": [ + "sd" + ], + "tags": [ + "flag", + "sudan" + ], + "unicode": "🇸🇩", + "htmlDec": "🇸🇩", + "htmlHex": "🇸🇩" + }, + { + "emojiChar": "🇸🇪", + "emoji": "🇸🇪", + "description": "regional indicator symbol letter s + regional indicator symbol letter e", + "aliases": [ + "se" + ], + "tags": [ + "flag", + "sweden" + ], + "unicode": "🇸🇪", + "htmlDec": "🇸🇪", + "htmlHex": "🇸🇪" + }, + { + "emojiChar": "🇸🇬", + "emoji": "🇸🇬", + "description": "regional indicator symbol letter s + regional indicator symbol letter g", + "aliases": [ + "sg" + ], + "tags": [ + "flag", + "singapore" + ], + "unicode": "🇸🇬", + "htmlDec": "🇸🇬", + "htmlHex": "🇸🇬" + }, + { + "emojiChar": "🇸🇭", + "emoji": "🇸🇭", + "description": "regional indicator symbol letter s + regional indicator symbol letter h", + "aliases": [ + "sh" + ], + "tags": [ + "flag", + "st. helena" + ], + "unicode": "🇸🇭", + "htmlDec": "🇸🇭", + "htmlHex": "🇸🇭" + }, + { + "emojiChar": "🇸🇮", + "emoji": "🇸🇮", + "description": "regional indicator symbol letter s + regional indicator symbol letter i", + "aliases": [ + "si" + ], + "tags": [ + "flag", + "slovenia" + ], + "unicode": "🇸🇮", + "htmlDec": "🇸🇮", + "htmlHex": "🇸🇮" + }, + { + "emojiChar": "🇸🇯", + "emoji": "🇸🇯", + "description": "regional indicator symbol letter s + regional indicator symbol letter j", + "aliases": [ + "sj" + ], + "tags": [ + "flag", + "svalbard & jan mayen" + ], + "unicode": "🇸🇯", + "htmlDec": "🇸🇯", + "htmlHex": "🇸🇯" + }, + { + "emojiChar": "🇸🇰", + "emoji": "🇸🇰", + "description": "regional indicator symbol letter s + regional indicator symbol letter k", + "aliases": [ + "sk" + ], + "tags": [ + "flag", + "slovakia" + ], + "unicode": "🇸🇰", + "htmlDec": "🇸🇰", + "htmlHex": "🇸🇰" + }, + { + "emojiChar": "🇸🇱", + "emoji": "🇸🇱", + "description": "regional indicator symbol letter s + regional indicator symbol letter l", + "aliases": [ + "sl" + ], + "tags": [ + "flag", + "sierra leone" + ], + "unicode": "🇸🇱", + "htmlDec": "🇸🇱", + "htmlHex": "🇸🇱" + }, + { + "emojiChar": "🇸🇲", + "emoji": "🇸🇲", + "description": "regional indicator symbol letter s + regional indicator symbol letter m", + "aliases": [ + "sm" + ], + "tags": [ + "flag", + "san marino" + ], + "unicode": "🇸🇲", + "htmlDec": "🇸🇲", + "htmlHex": "🇸🇲" + }, + { + "emojiChar": "🇸🇳", + "emoji": "🇸🇳", + "description": "regional indicator symbol letter s + regional indicator symbol letter n", + "aliases": [ + "sn" + ], + "tags": [ + "flag", + "senegal" + ], + "unicode": "🇸🇳", + "htmlDec": "🇸🇳", + "htmlHex": "🇸🇳" + }, + { + "emojiChar": "🇸🇴", + "emoji": "🇸🇴", + "description": "regional indicator symbol letter s + regional indicator symbol letter o", + "aliases": [ + "so" + ], + "tags": [ + "flag", + "somalia" + ], + "unicode": "🇸🇴", + "htmlDec": "🇸🇴", + "htmlHex": "🇸🇴" + }, + { + "emojiChar": "🇸🇷", + "emoji": "🇸🇷", + "description": "regional indicator symbol letter s + regional indicator symbol letter r", + "aliases": [ + "sr" + ], + "tags": [ + "flag", + "suriname" + ], + "unicode": "🇸🇷", + "htmlDec": "🇸🇷", + "htmlHex": "🇸🇷" + }, + { + "emojiChar": "🇸🇸", + "emoji": "🇸🇸", + "description": "regional indicator symbol letter s + regional indicator symbol letter s", + "aliases": [ + "ss" + ], + "tags": [ + "flag", + "south sudan" + ], + "unicode": "🇸🇸", + "htmlDec": "🇸🇸", + "htmlHex": "🇸🇸" + }, + { + "emojiChar": "🇸🇹", + "emoji": "🇸🇹", + "description": "regional indicator symbol letter s + regional indicator symbol letter t", + "aliases": [ + "st" + ], + "tags": [ + "flag", + "sao tome and principe" + ], + "unicode": "🇸🇹", + "htmlDec": "🇸🇹", + "htmlHex": "🇸🇹" + }, + { + "emojiChar": "🇸🇻", + "emoji": "🇸🇻", + "description": "regional indicator symbol letter s + regional indicator symbol letter v", + "aliases": [ + "sv" + ], + "tags": [ + "flag", + "el salvador" + ], + "unicode": "🇸🇻", + "htmlDec": "🇸🇻", + "htmlHex": "🇸🇻" + }, + { + "emojiChar": "🇸🇽", + "emoji": "🇸🇽", + "description": "regional indicator symbol letter s + regional indicator symbol letter x", + "aliases": [ + "sx" + ], + "tags": [ + "flag", + "sint maarten" + ], + "unicode": "🇸🇽", + "htmlDec": "🇸🇽", + "htmlHex": "🇸🇽" + }, + { + "emojiChar": "🇸🇾", + "emoji": "🇸🇾", + "description": "regional indicator symbol letter s + regional indicator symbol letter y", + "aliases": [ + "sy" + ], + "tags": [ + "flag", + "syria" + ], + "unicode": "🇸🇾", + "htmlDec": "🇸🇾", + "htmlHex": "🇸🇾" + }, + { + "emojiChar": "🇸🇿", + "emoji": "🇸🇿", + "description": "regional indicator symbol letter s + regional indicator symbol letter z", + "aliases": [ + "sz" + ], + "tags": [ + "flag", + "swaziland" + ], + "unicode": "🇸🇿", + "htmlDec": "🇸🇿", + "htmlHex": "🇸🇿" + }, + { + "emojiChar": "🇹🇦", + "emoji": "🇹🇦", + "description": "regional indicator symbol letter t + regional indicator symbol letter a", + "aliases": [ + "ta" + ], + "tags": [ + "flag", + "tristan da cunha" + ], + "unicode": "🇹🇦", + "htmlDec": "🇹🇦", + "htmlHex": "🇹🇦" + }, + { + "emojiChar": "🇹🇨", + "emoji": "🇹🇨", + "description": "regional indicator symbol letter t + regional indicator symbol letter c", + "aliases": [ + "tc" + ], + "tags": [ + "flag", + "turks and caicos islands" + ], + "unicode": "🇹🇨", + "htmlDec": "🇹🇨", + "htmlHex": "🇹🇨" + }, + { + "emojiChar": "🇹🇩", + "emoji": "🇹🇩", + "description": "regional indicator symbol letter t + regional indicator symbol letter d", + "aliases": [ + "td" + ], + "tags": [ + "flag", + "chad" + ], + "unicode": "🇹🇩", + "htmlDec": "🇹🇩", + "htmlHex": "🇹🇩" + }, + { + "emojiChar": "🇹🇫", + "emoji": "🇹🇫", + "description": "regional indicator symbol letter t + regional indicator symbol letter f", + "aliases": [ + "tf" + ], + "tags": [ + "flag", + "french southern territories" + ], + "unicode": "🇹🇫", + "htmlDec": "🇹🇫", + "htmlHex": "🇹🇫" + }, + { + "emojiChar": "🇹🇬", + "emoji": "🇹🇬", + "description": "regional indicator symbol letter t + regional indicator symbol letter g", + "aliases": [ + "tg" + ], + "tags": [ + "flag", + "togo" + ], + "unicode": "🇹🇬", + "htmlDec": "🇹🇬", + "htmlHex": "🇹🇬" + }, + { + "emojiChar": "🇹🇭", + "emoji": "🇹🇭", + "description": "regional indicator symbol letter t + regional indicator symbol letter h", + "aliases": [ + "th" + ], + "tags": [ + "flag", + "thailand" + ], + "unicode": "🇹🇭", + "htmlDec": "🇹🇭", + "htmlHex": "🇹🇭" + }, + { + "emojiChar": "🇹🇯", + "emoji": "🇹🇯", + "description": "regional indicator symbol letter t + regional indicator symbol letter j", + "aliases": [ + "tj" + ], + "tags": [ + "flag", + "tajikistan" + ], + "unicode": "🇹🇯", + "htmlDec": "🇹🇯", + "htmlHex": "🇹🇯" + }, + { + "emojiChar": "🇹🇰", + "emoji": "🇹🇰", + "description": "regional indicator symbol letter t + regional indicator symbol letter k", + "aliases": [ + "tk" + ], + "tags": [ + "flag", + "tokelau" + ], + "unicode": "🇹🇰", + "htmlDec": "🇹🇰", + "htmlHex": "🇹🇰" + }, + { + "emojiChar": "🇹🇱", + "emoji": "🇹🇱", + "description": "regional indicator symbol letter t + regional indicator symbol letter l", + "aliases": [ + "tl" + ], + "tags": [ + "flag", + "east timor" + ], + "unicode": "🇹🇱", + "htmlDec": "🇹🇱", + "htmlHex": "🇹🇱" + }, + { + "emojiChar": "🇹🇲", + "emoji": "🇹🇲", + "description": "regional indicator symbol letter t + regional indicator symbol letter m", + "aliases": [ + "tm_flag" + ], + "tags": [ + "flag", + "turkmenistan" + ], + "unicode": "🇹🇲", + "htmlDec": "🇹🇲", + "htmlHex": "🇹🇲" + }, + { + "emojiChar": "🇹🇳", + "emoji": "🇹🇳", + "description": "regional indicator symbol letter t + regional indicator symbol letter n", + "aliases": [ + "tn" + ], + "tags": [ + "flag", + "tunisia" + ], + "unicode": "🇹🇳", + "htmlDec": "🇹🇳", + "htmlHex": "🇹🇳" + }, + { + "emojiChar": "🇹🇴", + "emoji": "🇹🇴", + "description": "regional indicator symbol letter t + regional indicator symbol letter o", + "aliases": [ + "to" + ], + "tags": [ + "flag", + "tonga" + ], + "unicode": "🇹🇴", + "htmlDec": "🇹🇴", + "htmlHex": "🇹🇴" + }, + { + "emojiChar": "🇹🇷", + "emoji": "🇹🇷", + "description": "regional indicator symbol letter t + regional indicator symbol letter r", + "aliases": [ + "tr" + ], + "tags": [ + "flag", + "turkey" + ], + "unicode": "🇹🇷", + "htmlDec": "🇹🇷", + "htmlHex": "🇹🇷" + }, + { + "emojiChar": "🇹🇹", + "emoji": "🇹🇹", + "description": "regional indicator symbol letter t + regional indicator symbol letter t", + "aliases": [ + "tt" + ], + "tags": [ + "flag", + "trinidad and tobago" + ], + "unicode": "🇹🇹", + "htmlDec": "🇹🇹", + "htmlHex": "🇹🇹" + }, + { + "emojiChar": "🇹🇻", + "emoji": "🇹🇻", + "description": "regional indicator symbol letter t + regional indicator symbol letter v", + "aliases": [ + "tv_flag" + ], + "tags": [ + "flag", + "tuvalu" + ], + "unicode": "🇹🇻", + "htmlDec": "🇹🇻", + "htmlHex": "🇹🇻" + }, + { + "emojiChar": "🇹🇼", + "emoji": "🇹🇼", + "description": "regional indicator symbol letter t + regional indicator symbol letter w", + "aliases": [ + "tw" + ], + "tags": [ + "flag", + "taiwan" + ], + "unicode": "🇹🇼", + "htmlDec": "🇹🇼", + "htmlHex": "🇹🇼" + }, + { + "emojiChar": "🇹🇿", + "emoji": "🇹🇿", + "description": "regional indicator symbol letter t + regional indicator symbol letter z", + "aliases": [ + "tz" + ], + "tags": [ + "flag", + "tanzania" + ], + "unicode": "🇹🇿", + "htmlDec": "🇹🇿", + "htmlHex": "🇹🇿" + }, + { + "emojiChar": "🇺🇦", + "emoji": "🇺🇦", + "description": "regional indicator symbol letter u + regional indicator symbol letter a", + "aliases": [ + "ua" + ], + "tags": [ + "flag", + "ukraine" + ], + "unicode": "🇺🇦", + "htmlDec": "🇺🇦", + "htmlHex": "🇺🇦" + }, + { + "emojiChar": "🇺🇬", + "emoji": "🇺🇬", + "description": "regional indicator symbol letter u + regional indicator symbol letter g", + "aliases": [ + "ug" + ], + "tags": [ + "flag", + "uganda" + ], + "unicode": "🇺🇬", + "htmlDec": "🇺🇬", + "htmlHex": "🇺🇬" + }, + { + "emojiChar": "🇺🇲", + "emoji": "🇺🇲", + "description": "regional indicator symbol letter u + regional indicator symbol letter m", + "aliases": [ + "um" + ], + "tags": [ + "flag", + "u.s. outlying islands" + ], + "unicode": "🇺🇲", + "htmlDec": "🇺🇲", + "htmlHex": "🇺🇲" + }, + { + "emojiChar": "🇺🇳", + "emoji": "🇺🇳", + "description": "regional indicator symbol letter u + regional indicator symbol letter n", + "aliases": [ + "un" + ], + "tags": [ + "flag", + "united nations" + ], + "unicode": "🇺🇳", + "htmlDec": "🇺🇳", + "htmlHex": "🇺🇳" + }, + { + "emojiChar": "🇺🇸", + "emoji": "🇺🇸", + "description": "regional indicator symbol letter u + regional indicator symbol letter s", + "aliases": [ + "us" + ], + "tags": [ + "flag", + "united states of america" + ], + "unicode": "🇺🇸", + "htmlDec": "🇺🇸", + "htmlHex": "🇺🇸" + }, + { + "emojiChar": "🏴󠁵󠁳󠁴󠁸󠁿", + "emoji": "🏴󠁵󠁳󠁴󠁸󠁿", + "description": "waving black flag + regional indicator symbol letter u + regional indicator symbol letter s + regional indicator symbol letter t + regional indicator symbol letter x + cancel tag", + "aliases": [ + "ustx" + ], + "tags": [ + "flag", + "texas" + ], + "unicode": "🏴󠁵󠁳󠁴󠁸󠁿", + "htmlDec": "🏴󠁵󠁳󠁴󠁸󠁿", + "htmlHex": "🏴󠁵󠁳󠁴󠁸󠁿" + }, + { + "emojiChar": "🇺🇾", + "emoji": "🇺🇾", + "description": "regional indicator symbol letter u + regional indicator symbol letter y", + "aliases": [ + "uy" + ], + "tags": [ + "flag", + "uruguay" + ], + "unicode": "🇺🇾", + "htmlDec": "🇺🇾", + "htmlHex": "🇺🇾" + }, + { + "emojiChar": "🇺🇿", + "emoji": "🇺🇿", + "description": "regional indicator symbol letter u + regional indicator symbol letter z", + "aliases": [ + "uz" + ], + "tags": [ + "flag", + "uzbekistan" + ], + "unicode": "🇺🇿", + "htmlDec": "🇺🇿", + "htmlHex": "🇺🇿" + }, + { + "emojiChar": "🇻🇦", + "emoji": "🇻🇦", + "description": "regional indicator symbol letter v + regional indicator symbol letter a", + "aliases": [ + "va" + ], + "tags": [ + "flag", + "vatican city" + ], + "unicode": "🇻🇦", + "htmlDec": "🇻🇦", + "htmlHex": "🇻🇦" + }, + { + "emojiChar": "🇻🇨", + "emoji": "🇻🇨", + "description": "regional indicator symbol letter v + regional indicator symbol letter c", + "aliases": [ + "vc" + ], + "tags": [ + "flag", + "st vincent grenadines" + ], + "unicode": "🇻🇨", + "htmlDec": "🇻🇨", + "htmlHex": "🇻🇨" + }, + { + "emojiChar": "🇻🇪", + "emoji": "🇻🇪", + "description": "regional indicator symbol letter v + regional indicator symbol letter e", + "aliases": [ + "ve" + ], + "tags": [ + "flag", + "venezuela" + ], + "unicode": "🇻🇪", + "htmlDec": "🇻🇪", + "htmlHex": "🇻🇪" + }, + { + "emojiChar": "🇻🇬", + "emoji": "🇻🇬", + "description": "regional indicator symbol letter v + regional indicator symbol letter g", + "aliases": [ + "vg" + ], + "tags": [ + "flag", + "british virgin islands" + ], + "unicode": "🇻🇬", + "htmlDec": "🇻🇬", + "htmlHex": "🇻🇬" + }, + { + "emojiChar": "🇻🇮", + "emoji": "🇻🇮", + "description": "regional indicator symbol letter v + regional indicator symbol letter i", + "aliases": [ + "vi" + ], + "tags": [ + "flag", + "us virgin islands" + ], + "unicode": "🇻🇮", + "htmlDec": "🇻🇮", + "htmlHex": "🇻🇮" + }, + { + "emojiChar": "🇻🇳", + "emoji": "🇻🇳", + "description": "regional indicator symbol letter v + regional indicator symbol letter n", + "aliases": [ + "vn" + ], + "tags": [ + "flag", + "vietnam" + ], + "unicode": "🇻🇳", + "htmlDec": "🇻🇳", + "htmlHex": "🇻🇳" + }, + { + "emojiChar": "🇻🇺", + "emoji": "🇻🇺", + "description": "regional indicator symbol letter v + regional indicator symbol letter u", + "aliases": [ + "vu" + ], + "tags": [ + "flag", + "vanuatu" + ], + "unicode": "🇻🇺", + "htmlDec": "🇻🇺", + "htmlHex": "🇻🇺" + }, + { + "emojiChar": "🇼🇫", + "emoji": "🇼🇫", + "description": "regional indicator symbol letter w + regional indicator symbol letter f", + "aliases": [ + "wf" + ], + "tags": [ + "flag", + "wallis & futuna" + ], + "unicode": "🇼🇫", + "htmlDec": "🇼🇫", + "htmlHex": "🇼🇫" + }, + { + "emojiChar": "🇼🇸", + "emoji": "🇼🇸", + "description": "regional indicator symbol letter w + regional indicator symbol letter s", + "aliases": [ + "ws" + ], + "tags": [ + "flag", + "samoa" + ], + "unicode": "🇼🇸", + "htmlDec": "🇼🇸", + "htmlHex": "🇼🇸" + }, + { + "emojiChar": "🇽🇰", + "emoji": "🇽🇰", + "description": "regional indicator symbol letter x + regional indicator symbol letter k", + "aliases": [ + "xk" + ], + "tags": [ + "flag", + "kosovo" + ], + "unicode": "🇽🇰", + "htmlDec": "🇽🇰", + "htmlHex": "🇽🇰" + }, + { + "emojiChar": "🇾🇪", + "emoji": "🇾🇪", + "description": "regional indicator symbol letter y + regional indicator symbol letter e", + "aliases": [ + "ye" + ], + "tags": [ + "flag", + "yemen" + ], + "unicode": "🇾🇪", + "htmlDec": "🇾🇪", + "htmlHex": "🇾🇪" + }, + { + "emojiChar": "🇾🇹", + "emoji": "🇾🇹", + "description": "regional indicator symbol letter y + regional indicator symbol letter t", + "aliases": [ + "yt" + ], + "tags": [ + "flag", + "mayotte" + ], + "unicode": "🇾🇹", + "htmlDec": "🇾🇹", + "htmlHex": "🇾🇹" + }, + { + "emojiChar": "🇿🇦", + "emoji": "🇿🇦", + "description": "regional indicator symbol letter z + regional indicator symbol letter a", + "aliases": [ + "za" + ], + "tags": [ + "flag", + "south africa" + ], + "unicode": "🇿🇦", + "htmlDec": "🇿🇦", + "htmlHex": "🇿🇦" + }, + { + "emojiChar": "🇿🇲", + "emoji": "🇿🇲", + "description": "regional indicator symbol letter z + regional indicator symbol letter m", + "aliases": [ + "zm" + ], + "tags": [ + "flag", + "zambia" + ], + "unicode": "🇿🇲", + "htmlDec": "🇿🇲", + "htmlHex": "🇿🇲" + }, + { + "emojiChar": "🇿🇼", + "emoji": "🇿🇼", + "description": "regional indicator symbol letter z + regional indicator symbol letter w", + "aliases": [ + "zw" + ], + "tags": [ + "flag", + "zimbabwe" + ], + "unicode": "🇿🇼", + "htmlDec": "🇿🇼", + "htmlHex": "🇿🇼" + } +] \ No newline at end of file diff --git a/emojify/src/main/kotlin/io/wax911/emojify/EmojiManager.kt b/emojify/src/main/kotlin/io/wax911/emojify/EmojiManager.kt index 0afcfb31..74613793 100644 --- a/emojify/src/main/kotlin/io/wax911/emojify/EmojiManager.kt +++ b/emojify/src/main/kotlin/io/wax911/emojify/EmojiManager.kt @@ -19,7 +19,7 @@ package io.wax911.emojify import android.content.Context import android.content.res.AssetManager import androidx.annotation.VisibleForTesting -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.contract.serializer.IEmojiDeserializer import io.wax911.emojify.contract.util.trie.Matches import io.wax911.emojify.manager.IEmojiManager @@ -36,10 +36,10 @@ import java.io.IOException * @author [Vincent DURMONT](vdurmont@gmail.com) */ class EmojiManager internal constructor( - override val emojiList: Collection, + override val emojiList: Collection, ) : IEmojiManager { private val emojiByAlias by lazy { - val aliasMap = HashMap() + val aliasMap = HashMap() emojiList.forEach { emoji -> emoji.aliases?.forEach { alias -> aliasMap[alias] = emoji @@ -49,7 +49,7 @@ class EmojiManager internal constructor( } private val emojiByTag by lazy { - val emojiTagMap = HashMap>() + val emojiTagMap = HashMap>() emojiList.forEach { emoji -> emoji.tags?.forEach { tag -> if (emojiTagMap[tag] == null) { @@ -66,22 +66,22 @@ class EmojiManager internal constructor( } /** - * Returns all the [AbstractEmoji]s for a given tag. + * Returns all the [IEmoji]s for a given tag. * * @param tag the tag * - * @return the associated [AbstractEmoji]s, null if the tag is unknown + * @return the associated [IEmoji]s, null if the tag is unknown */ - override fun getForTag(tag: String?): Collection? = tag?.let { emojiByTag[it] } + override fun getForTag(tag: String?): Collection? = tag?.let { emojiByTag[it] } /** - * Returns the [AbstractEmoji] for a given alias. + * Returns the [IEmoji] for a given alias. * * @param alias the alias * - * @return the associated [AbstractEmoji], null if the alias is unknown + * @return the associated [IEmoji], null if the alias is unknown */ - override fun getForAlias(alias: String?): AbstractEmoji? = alias?.let { emojiByAlias[trimAlias(it)] } + override fun getForAlias(alias: String?): IEmoji? = alias?.let { emojiByAlias[trimAlias(it)] } @VisibleForTesting(otherwise = VisibleForTesting.PRIVATE) fun trimAlias(alias: String): String { @@ -93,13 +93,13 @@ class EmojiManager internal constructor( } /** - * Returns the [AbstractEmoji] for a given unicode. + * Returns the [IEmoji] for a given unicode. * * @param unicode the the unicode * - * @return the associated [AbstractEmoji], null if the unicode is unknown + * @return the associated [IEmoji], null if the unicode is unknown */ - override fun getByUnicode(unicode: String?): AbstractEmoji? = unicode?.let { emojiTrie.getEmoji(it.toCharArray()) } + override fun getByUnicode(unicode: String?): IEmoji? = unicode?.let { emojiTrie.getEmoji(it.toCharArray()) } /** * Tests if a given String is an emoji. @@ -155,7 +155,7 @@ class EmojiManager internal constructor( assetManager: AssetManager, serializer: IEmojiDeserializer, path: String = DEFAULT_EMOJI_PATH, - ): List = + ): List = assetManager.open(path).use { inputStream -> serializer.decodeFromStream(inputStream) } diff --git a/emojify/src/main/kotlin/io/wax911/emojify/manager/IEmojiManager.kt b/emojify/src/main/kotlin/io/wax911/emojify/manager/IEmojiManager.kt index 748dd264..280b4188 100644 --- a/emojify/src/main/kotlin/io/wax911/emojify/manager/IEmojiManager.kt +++ b/emojify/src/main/kotlin/io/wax911/emojify/manager/IEmojiManager.kt @@ -16,7 +16,7 @@ package io.wax911.emojify.manager -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.contract.util.trie.Matches /** @@ -25,34 +25,34 @@ import io.wax911.emojify.contract.util.trie.Matches * @property emojiList collection of emojis */ internal interface IEmojiManager { - val emojiList: Collection + val emojiList: Collection /** - * Returns all the [AbstractEmoji]s for a given tag. + * Returns all the [IEmoji]s for a given tag. * * @param tag the tag * - * @return the associated [AbstractEmoji]s, null if the tag is unknown + * @return the associated [IEmoji]s, null if the tag is unknown */ - fun getForTag(tag: String?): Collection? + fun getForTag(tag: String?): Collection? /** - * Returns the [AbstractEmoji] for a given alias. + * Returns the [IEmoji] for a given alias. * * @param alias the alias * - * @return the associated [AbstractEmoji], null if the alias is unknown + * @return the associated [IEmoji], null if the alias is unknown */ - fun getForAlias(alias: String?): AbstractEmoji? + fun getForAlias(alias: String?): IEmoji? /** - * Returns the [AbstractEmoji] for a given unicode. + * Returns the [IEmoji] for a given unicode. * * @param unicode the the unicode * - * @return the associated [AbstractEmoji], null if the unicode is unknown + * @return the associated [IEmoji], null if the unicode is unknown */ - fun getByUnicode(unicode: String?): AbstractEmoji? + fun getByUnicode(unicode: String?): IEmoji? /** * Tests if a given String is an emoji. diff --git a/emojify/src/main/kotlin/io/wax911/emojify/parser/EmojiParser.kt b/emojify/src/main/kotlin/io/wax911/emojify/parser/EmojiParser.kt index a680ce71..a73e7fd1 100644 --- a/emojify/src/main/kotlin/io/wax911/emojify/parser/EmojiParser.kt +++ b/emojify/src/main/kotlin/io/wax911/emojify/parser/EmojiParser.kt @@ -17,7 +17,7 @@ package io.wax911.emojify.parser import io.wax911.emojify.EmojiManager -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.parser.action.FitzpatrickAction import io.wax911.emojify.parser.candidate.AliasCandidate import io.wax911.emojify.parser.candidate.UnicodeCandidate @@ -184,7 +184,7 @@ internal fun EmojiManager.htmlEncodedEmojiAt( ): AliasCandidate? { if (input.length < start + 4 || input[start] != '&' || input[start + 1] != '#') return null - var longestEmoji: AbstractEmoji? = null + var longestEmoji: IEmoji? = null var longestCodePointEnd = -1 val chars = CharArray(emojiTrie.maxDepth) var charsIndex = 0 @@ -345,7 +345,7 @@ fun EmojiManager.removeAllEmojis(str: String): String { */ fun EmojiManager.removeEmojis( str: String, - emojisToRemove: Collection, + emojisToRemove: Collection, ): String { val emojiTransformer = object : EmojiTransformer { @@ -371,7 +371,7 @@ fun EmojiManager.removeEmojis( */ fun EmojiManager.removeAllEmojisExcept( str: String, - emojisToKeep: Collection, + emojisToKeep: Collection, ): String { val emojiTransformer = object : EmojiTransformer { diff --git a/emojify/src/main/kotlin/io/wax911/emojify/parser/candidate/AliasCandidate.kt b/emojify/src/main/kotlin/io/wax911/emojify/parser/candidate/AliasCandidate.kt index df5d49d0..69a24fd4 100644 --- a/emojify/src/main/kotlin/io/wax911/emojify/parser/candidate/AliasCandidate.kt +++ b/emojify/src/main/kotlin/io/wax911/emojify/parser/candidate/AliasCandidate.kt @@ -16,11 +16,11 @@ package io.wax911.emojify.parser.candidate -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.util.Fitzpatrick internal class AliasCandidate internal constructor( - val emoji: AbstractEmoji, + val emoji: IEmoji, val fitzpatrick: Fitzpatrick?, val startIndex: Int, val endIndex: Int, diff --git a/emojify/src/main/kotlin/io/wax911/emojify/parser/candidate/UnicodeCandidate.kt b/emojify/src/main/kotlin/io/wax911/emojify/parser/candidate/UnicodeCandidate.kt index f6efb6e2..0d03b560 100644 --- a/emojify/src/main/kotlin/io/wax911/emojify/parser/candidate/UnicodeCandidate.kt +++ b/emojify/src/main/kotlin/io/wax911/emojify/parser/candidate/UnicodeCandidate.kt @@ -16,7 +16,7 @@ package io.wax911.emojify.parser.candidate -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.util.Fitzpatrick import java.util.Locale @@ -28,7 +28,7 @@ import java.util.Locale * @param emojiStartIndex */ class UnicodeCandidate internal constructor( - val emoji: AbstractEmoji?, + val emoji: IEmoji?, fitzpatrick: String?, val emojiStartIndex: Int, ) { diff --git a/emojify/src/main/kotlin/io/wax911/emojify/util/AbstractEmojiExtension.kt b/emojify/src/main/kotlin/io/wax911/emojify/util/AbstractEmojiExtension.kt index e37c5828..3d43d193 100644 --- a/emojify/src/main/kotlin/io/wax911/emojify/util/AbstractEmojiExtension.kt +++ b/emojify/src/main/kotlin/io/wax911/emojify/util/AbstractEmojiExtension.kt @@ -16,13 +16,13 @@ package io.wax911.emojify.util -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji /** * Returns the unicode representation of the emoji associated with the * provided Fitzpatrick modifier. * - * If the modifier is null, then the result is similar to [AbstractEmoji.unicode] + * If the modifier is null, then the result is similar to [IEmoji.unicode] * * @param fitzpatrick the fitzpatrick modifier or null * @@ -31,7 +31,7 @@ import io.wax911.emojify.contract.model.AbstractEmoji * @throws UnsupportedOperationException if the emoji doesn't support the Fitzpatrick modifiers */ @Throws(UnsupportedOperationException::class) -fun AbstractEmoji.getUnicode(fitzpatrick: Fitzpatrick?): String { +fun IEmoji.getUnicode(fitzpatrick: Fitzpatrick?): String { if (!supportsFitzpatrick) { throw UnsupportedOperationException( """ diff --git a/emojify/src/main/kotlin/io/wax911/emojify/util/EmojiTrie.kt b/emojify/src/main/kotlin/io/wax911/emojify/util/EmojiTrie.kt index 7e07c7c5..9100163f 100644 --- a/emojify/src/main/kotlin/io/wax911/emojify/util/EmojiTrie.kt +++ b/emojify/src/main/kotlin/io/wax911/emojify/util/EmojiTrie.kt @@ -16,11 +16,11 @@ package io.wax911.emojify.util -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.contract.util.trie.Matches import io.wax911.emojify.util.trie.Node -class EmojiTrie(emojis: Collection) { +class EmojiTrie(emojis: Collection) { private val root = Node() var maxDepth = 0 @@ -98,7 +98,7 @@ class EmojiTrie(emojis: Collection) { unicode: CharArray, start: Int = 0, end: Int = unicode.size, - ): AbstractEmoji? { + ): IEmoji? { if (start < 0 || start > end || end > unicode.size) { throw ArrayIndexOutOfBoundsException( "start " + start + ", end " + end + ", length " + unicode.size, diff --git a/emojify/src/main/kotlin/io/wax911/emojify/util/trie/Node.kt b/emojify/src/main/kotlin/io/wax911/emojify/util/trie/Node.kt index 6b32171d..fed235b1 100644 --- a/emojify/src/main/kotlin/io/wax911/emojify/util/trie/Node.kt +++ b/emojify/src/main/kotlin/io/wax911/emojify/util/trie/Node.kt @@ -16,7 +16,7 @@ package io.wax911.emojify.util.trie -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji /** * Node representation of an emoji tree @@ -26,7 +26,7 @@ import io.wax911.emojify.contract.model.AbstractEmoji class Node { private val children = HashMap() - internal var emoji: AbstractEmoji? = null + internal var emoji: IEmoji? = null internal val isEndOfEmoji: Boolean get() = emoji != null diff --git a/emojify/src/test/kotlin/io/wax911/emojify/EmojiManagerTest.kt b/emojify/src/test/kotlin/io/wax911/emojify/EmojiManagerTest.kt index 4df7fc75..80a17fef 100644 --- a/emojify/src/test/kotlin/io/wax911/emojify/EmojiManagerTest.kt +++ b/emojify/src/test/kotlin/io/wax911/emojify/EmojiManagerTest.kt @@ -16,7 +16,7 @@ package io.wax911.emojify -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.core.EmojiLoader import org.junit.Assert.assertEquals import org.junit.Assert.assertFalse @@ -245,9 +245,9 @@ class EmojiManagerTest : EmojiLoader() { companion object { - fun Iterable.containsAliases(vararg aliases: String) = + fun Iterable.containsAliases(vararg aliases: String) = aliases.any { alias -> - mapNotNull(AbstractEmoji::aliases) + mapNotNull(IEmoji::aliases) .toHashSet() .any { it.contains(alias) diff --git a/emojify/src/test/kotlin/io/wax911/emojify/EmojiParseTest.kt b/emojify/src/test/kotlin/io/wax911/emojify/EmojiParseTest.kt index 9cccfc9f..e35e2ea6 100644 --- a/emojify/src/test/kotlin/io/wax911/emojify/EmojiParseTest.kt +++ b/emojify/src/test/kotlin/io/wax911/emojify/EmojiParseTest.kt @@ -16,7 +16,7 @@ package io.wax911.emojify -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.core.EmojiLoader import io.wax911.emojify.parser.action.FitzpatrickAction import io.wax911.emojify.parser.aliasCandidateAt @@ -454,7 +454,7 @@ class EmojiParseTest : EmojiLoader() { // GIVEN val input = "An\uD83D\uDE03 awesome\uD83D\uDE04 string" + "\uD83D\uDC4D\uD83C\uDFFF with\uD83D\uDCAA\uD83C\uDFFD a few emojis!" - val emojis: MutableList = ArrayList() + val emojis: MutableList = ArrayList() emojis.add(emojiManager.getForAlias("smile")!!) emojis.add(emojiManager.getForAlias("+1")!!) @@ -472,7 +472,7 @@ class EmojiParseTest : EmojiLoader() { // GIVEN val input = "An\uD83D\uDE03 awesome\uD83D\uDE04 string" + "\uD83D\uDC4D\uD83C\uDFFF with\uD83D\uDCAA\uD83C\uDFFD a few emojis!" - val emojis: MutableList = ArrayList() + val emojis: MutableList = ArrayList() emojis.add(emojiManager.getForAlias("smile")!!) emojis.add(emojiManager.getForAlias("+1")!!) diff --git a/emojify/src/test/resources/io/wax911/emojify/core/emoji.json b/emojify/src/test/resources/io/wax911/emojify/core/emoji.json deleted file mode 100644 index f17abedc..00000000 --- a/emojify/src/test/resources/io/wax911/emojify/core/emoji.json +++ /dev/null @@ -1,16806 +0,0 @@ -[ - { - "emojiChar": "😄", - "emoji": "\uD83D\uDE04", - "description": "smiling face with open mouth and smiling eyes", - "aliases": [ - "smile" - ], - "tags": [ - "happy", - "joy", - "pleased" - ] - }, - { - "emojiChar": "😃", - "emoji": "\uD83D\uDE03", - "description": "smiling face with open mouth", - "aliases": [ - "smiley" - ], - "tags": [ - "happy", - "joy", - "haha" - ] - }, - { - "emojiChar": "😀", - "emoji": "\uD83D\uDE00", - "description": "grinning face", - "aliases": [ - "grinning" - ], - "tags": [ - "smile", - "happy" - ] - }, - { - "emojiChar": "😊", - "emoji": "\uD83D\uDE0A", - "description": "smiling face with smiling eyes", - "aliases": [ - "blush" - ], - "tags": [ - "proud" - ] - }, - { - "emojiChar": "☺", - "emoji": "\u263A", - "description": "white smiling face", - "aliases": [ - "relaxed" - ], - "tags": [ - "blush", - "pleased" - ] - }, - { - "emojiChar": "😉", - "emoji": "\uD83D\uDE09", - "description": "winking face", - "aliases": [ - "wink" - ], - "tags": [ - "flirt" - ] - }, - { - "emojiChar": "😍", - "emoji": "\uD83D\uDE0D", - "description": "smiling face with heart-shaped eyes", - "aliases": [ - "heart_eyes" - ], - "tags": [ - "love", - "crush" - ] - }, - { - "emojiChar": "😘", - "emoji": "\uD83D\uDE18", - "description": "face throwing a kiss", - "aliases": [ - "kissing_heart" - ], - "tags": [ - "flirt" - ] - }, - { - "emojiChar": "😚", - "emoji": "\uD83D\uDE1A", - "description": "kissing face with closed eyes", - "aliases": [ - "kissing_closed_eyes" - ], - "tags": [] - }, - { - "emojiChar": "😗", - "emoji": "\uD83D\uDE17", - "description": "kissing face", - "aliases": [ - "kissing" - ], - "tags": [] - }, - { - "emojiChar": "😙", - "emoji": "\uD83D\uDE19", - "description": "kissing face with smiling eyes", - "aliases": [ - "kissing_smiling_eyes" - ], - "tags": [] - }, - { - "emojiChar": "😜", - "emoji": "\uD83D\uDE1C", - "description": "face with stuck-out tongue and winking eye", - "aliases": [ - "stuck_out_tongue_winking_eye" - ], - "tags": [ - "prank", - "silly" - ] - }, - { - "emojiChar": "😝", - "emoji": "\uD83D\uDE1D", - "description": "face with stuck-out tongue and tightly-closed eyes", - "aliases": [ - "stuck_out_tongue_closed_eyes" - ], - "tags": [ - "prank" - ] - }, - { - "emojiChar": "😛", - "emoji": "\uD83D\uDE1B", - "description": "face with stuck-out tongue", - "aliases": [ - "stuck_out_tongue" - ], - "tags": [] - }, - { - "emojiChar": "😳", - "emoji": "\uD83D\uDE33", - "description": "flushed face", - "aliases": [ - "flushed" - ], - "tags": [] - }, - { - "emojiChar": "😁", - "emoji": "\uD83D\uDE01", - "description": "grinning face with smiling eyes", - "aliases": [ - "grin" - ], - "tags": [] - }, - { - "emojiChar": "😔", - "emoji": "\uD83D\uDE14", - "description": "pensive face", - "aliases": [ - "pensive" - ], - "tags": [] - }, - { - "emojiChar": "😌", - "emoji": "\uD83D\uDE0C", - "description": "relieved face", - "aliases": [ - "relieved" - ], - "tags": [ - "whew" - ] - }, - { - "emojiChar": "😒", - "emoji": "\uD83D\uDE12", - "description": "unamused face", - "aliases": [ - "unamused" - ], - "tags": [ - "meh" - ] - }, - { - "emojiChar": "😞", - "emoji": "\uD83D\uDE1E", - "description": "disappointed face", - "aliases": [ - "disappointed" - ], - "tags": [ - "sad" - ] - }, - { - "emojiChar": "😣", - "emoji": "\uD83D\uDE23", - "description": "persevering face", - "aliases": [ - "persevere" - ], - "tags": [ - "struggling" - ] - }, - { - "emojiChar": "😢", - "emoji": "\uD83D\uDE22", - "description": "crying face", - "aliases": [ - "cry" - ], - "tags": [ - "sad", - "tear" - ] - }, - { - "emojiChar": "😂", - "emoji": "\uD83D\uDE02", - "description": "face with tears of joy", - "aliases": [ - "joy" - ], - "tags": [ - "tears" - ] - }, - { - "emojiChar": "😭", - "emoji": "\uD83D\uDE2D", - "description": "loudly crying face", - "aliases": [ - "sob" - ], - "tags": [ - "sad", - "cry", - "bawling" - ] - }, - { - "emojiChar": "😪", - "emoji": "\uD83D\uDE2A", - "description": "sleepy face", - "aliases": [ - "sleepy" - ], - "tags": [ - "tired" - ] - }, - { - "emojiChar": "😥", - "emoji": "\uD83D\uDE25", - "description": "disappointed but relieved face", - "aliases": [ - "disappointed_relieved" - ], - "tags": [ - "phew", - "sweat", - "nervous" - ] - }, - { - "emojiChar": "😰", - "emoji": "\uD83D\uDE30", - "description": "face with open mouth and cold sweat", - "aliases": [ - "cold_sweat" - ], - "tags": [ - "nervous" - ] - }, - { - "emojiChar": "😅", - "emoji": "\uD83D\uDE05", - "description": "smiling face with open mouth and cold sweat", - "aliases": [ - "sweat_smile" - ], - "tags": [ - "hot" - ] - }, - { - "emojiChar": "😓", - "emoji": "\uD83D\uDE13", - "description": "face with cold sweat", - "aliases": [ - "sweat" - ], - "tags": [] - }, - { - "emojiChar": "😩", - "emoji": "\uD83D\uDE29", - "description": "weary face", - "aliases": [ - "weary" - ], - "tags": [ - "tired" - ] - }, - { - "emojiChar": "😫", - "emoji": "\uD83D\uDE2B", - "description": "tired face", - "aliases": [ - "tired_face" - ], - "tags": [ - "upset", - "whine" - ] - }, - { - "emojiChar": "😨", - "emoji": "\uD83D\uDE28", - "description": "fearful face", - "aliases": [ - "fearful" - ], - "tags": [ - "scared", - "shocked", - "oops" - ] - }, - { - "emojiChar": "😱", - "emoji": "\uD83D\uDE31", - "description": "face screaming in fear", - "aliases": [ - "scream" - ], - "tags": [ - "horror", - "shocked" - ] - }, - { - "emojiChar": "😠", - "emoji": "\uD83D\uDE20", - "description": "angry face", - "aliases": [ - "angry" - ], - "tags": [ - "mad", - "annoyed" - ] - }, - { - "emojiChar": "😡", - "emoji": "\uD83D\uDE21", - "description": "pouting face", - "aliases": [ - "rage" - ], - "tags": [ - "angry" - ] - }, - { - "emojiChar": "😤", - "emoji": "\uD83D\uDE24", - "description": "face with look of triumph", - "aliases": [ - "triumph" - ], - "tags": [ - "smug" - ] - }, - { - "emojiChar": "😖", - "emoji": "\uD83D\uDE16", - "description": "confounded face", - "aliases": [ - "confounded" - ], - "tags": [] - }, - { - "emojiChar": "😆", - "emoji": "\uD83D\uDE06", - "description": "smiling face with open mouth and tightly-closed eyes", - "aliases": [ - "laughing", - "satisfied" - ], - "tags": [ - "happy", - "haha" - ] - }, - { - "emojiChar": "😋", - "emoji": "\uD83D\uDE0B", - "description": "face savouring delicious food", - "aliases": [ - "yum" - ], - "tags": [ - "tongue", - "lick" - ] - }, - { - "emojiChar": "😷", - "emoji": "\uD83D\uDE37", - "description": "face with medical mask", - "aliases": [ - "mask" - ], - "tags": [ - "sick", - "ill" - ] - }, - { - "emojiChar": "😎", - "emoji": "\uD83D\uDE0E", - "description": "smiling face with sunglasses", - "aliases": [ - "sunglasses" - ], - "tags": [ - "cool" - ] - }, - { - "emojiChar": "😴", - "emoji": "\uD83D\uDE34", - "description": "sleeping face", - "aliases": [ - "sleeping" - ], - "tags": [ - "zzz" - ] - }, - { - "emojiChar": "😵", - "emoji": "\uD83D\uDE35", - "description": "dizzy face", - "aliases": [ - "dizzy_face" - ], - "tags": [] - }, - { - "emojiChar": "😲", - "emoji": "\uD83D\uDE32", - "description": "astonished face", - "aliases": [ - "astonished" - ], - "tags": [ - "amazed", - "gasp" - ] - }, - { - "emojiChar": "😟", - "emoji": "\uD83D\uDE1F", - "description": "worried face", - "aliases": [ - "worried" - ], - "tags": [ - "nervous" - ] - }, - { - "emojiChar": "😦", - "emoji": "\uD83D\uDE26", - "description": "frowning face with open mouth", - "aliases": [ - "frowning" - ], - "tags": [] - }, - { - "emojiChar": "😧", - "emoji": "\uD83D\uDE27", - "description": "anguished face", - "aliases": [ - "anguished" - ], - "tags": [ - "stunned" - ] - }, - { - "emojiChar": "😈", - "emoji": "\uD83D\uDE08", - "description": "smiling face with horns", - "aliases": [ - "smiling_imp" - ], - "tags": [ - "devil", - "evil", - "horns" - ] - }, - { - "emojiChar": "👿", - "emoji": "\uD83D\uDC7F", - "description": "imp", - "aliases": [ - "imp" - ], - "tags": [ - "angry", - "devil", - "evil", - "horns" - ] - }, - { - "emojiChar": "😮", - "emoji": "\uD83D\uDE2E", - "description": "face with open mouth", - "aliases": [ - "open_mouth" - ], - "tags": [ - "surprise", - "impressed", - "wow" - ] - }, - { - "emojiChar": "😬", - "emoji": "\uD83D\uDE2C", - "description": "grimacing face", - "aliases": [ - "grimacing" - ], - "tags": [] - }, - { - "emojiChar": "😐", - "emoji": "\uD83D\uDE10", - "description": "neutral face", - "aliases": [ - "neutral_face" - ], - "tags": [ - "meh" - ] - }, - { - "emojiChar": "😕", - "emoji": "\uD83D\uDE15", - "description": "confused face", - "aliases": [ - "confused" - ], - "tags": [] - }, - { - "emojiChar": "😯", - "emoji": "\uD83D\uDE2F", - "description": "hushed face", - "aliases": [ - "hushed" - ], - "tags": [ - "silence", - "speechless" - ] - }, - { - "emojiChar": "😶", - "emoji": "\uD83D\uDE36", - "description": "face without mouth", - "aliases": [ - "no_mouth" - ], - "tags": [ - "mute", - "silence" - ] - }, - { - "emojiChar": "😇", - "emoji": "\uD83D\uDE07", - "description": "smiling face with halo", - "aliases": [ - "innocent" - ], - "tags": [ - "angel" - ] - }, - { - "emojiChar": "😏", - "emoji": "\uD83D\uDE0F", - "description": "smirking face", - "aliases": [ - "smirk" - ], - "tags": [ - "smug" - ] - }, - { - "emojiChar": "😑", - "emoji": "\uD83D\uDE11", - "description": "expressionless face", - "aliases": [ - "expressionless" - ], - "tags": [] - }, - { - "emojiChar": "👲", - "emoji": "\uD83D\uDC72", - "description": "man with gua pi mao", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_gua_pi_mao" - ], - "tags": [] - }, - { - "emojiChar": "👳", - "emoji": "\uD83D\uDC73", - "description": "man with turban", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_turban" - ], - "tags": [] - }, - { - "emojiChar": "👮", - "emoji": "\uD83D\uDC6E", - "description": "police officer", - "supports_fitzpatrick": true, - "aliases": [ - "cop" - ], - "tags": [ - "police", - "law" - ] - }, - { - "emojiChar": "👷", - "emoji": "\uD83D\uDC77", - "description": "construction worker", - "supports_fitzpatrick": true, - "aliases": [ - "construction_worker" - ], - "tags": [ - "helmet" - ] - }, - { - "emojiChar": "💂", - "emoji": "\uD83D\uDC82", - "description": "guardsman", - "supports_fitzpatrick": true, - "aliases": [ - "guardsman" - ], - "tags": [] - }, - { - "emojiChar": "👶", - "emoji": "\uD83D\uDC76", - "description": "baby", - "supports_fitzpatrick": true, - "aliases": [ - "baby" - ], - "tags": [ - "child", - "newborn" - ] - }, - { - "emojiChar": "👦", - "emoji": "\uD83D\uDC66", - "description": "boy", - "supports_fitzpatrick": true, - "aliases": [ - "boy" - ], - "tags": [ - "child" - ] - }, - { - "emojiChar": "👧", - "emoji": "\uD83D\uDC67", - "description": "girl", - "supports_fitzpatrick": true, - "aliases": [ - "girl" - ], - "tags": [ - "child" - ] - }, - { - "emojiChar": "👨", - "emoji": "\uD83D\uDC68", - "description": "man", - "supports_fitzpatrick": true, - "aliases": [ - "man" - ], - "tags": [ - "mustache", - "father", - "dad" - ] - }, - { - "emojiChar": "👩", - "emoji": "\uD83D\uDC69", - "description": "woman", - "supports_fitzpatrick": true, - "aliases": [ - "woman" - ], - "tags": [ - "girls" - ] - }, - { - "emojiChar": "👴", - "emoji": "\uD83D\uDC74", - "description": "older man", - "supports_fitzpatrick": true, - "aliases": [ - "older_man" - ], - "tags": [] - }, - { - "emojiChar": "👵", - "emoji": "\uD83D\uDC75", - "description": "older woman", - "supports_fitzpatrick": true, - "aliases": [ - "older_woman" - ], - "tags": [] - }, - { - "emojiChar": "👱", - "emoji": "\uD83D\uDC71", - "description": "person with blond hair", - "supports_fitzpatrick": true, - "aliases": [ - "person_with_blond_hair" - ], - "tags": [ - "boy" - ] - }, - { - "emojiChar": "👼", - "emoji": "\uD83D\uDC7C", - "description": "baby angel", - "supports_fitzpatrick": true, - "aliases": [ - "angel" - ], - "tags": [] - }, - { - "emojiChar": "👸", - "emoji": "\uD83D\uDC78", - "description": "princess", - "supports_fitzpatrick": true, - "aliases": [ - "princess" - ], - "tags": [ - "blonde", - "crown", - "royal" - ] - }, - { - "emojiChar": "😺", - "emoji": "\uD83D\uDE3A", - "description": "smiling cat face with open mouth", - "aliases": [ - "smiley_cat" - ], - "tags": [] - }, - { - "emojiChar": "😸", - "emoji": "\uD83D\uDE38", - "description": "grinning cat face with smiling eyes", - "aliases": [ - "smile_cat" - ], - "tags": [] - }, - { - "emojiChar": "😻", - "emoji": "\uD83D\uDE3B", - "description": "smiling cat face with heart-shaped eyes", - "aliases": [ - "heart_eyes_cat" - ], - "tags": [] - }, - { - "emojiChar": "😽", - "emoji": "\uD83D\uDE3D", - "description": "kissing cat face with closed eyes", - "aliases": [ - "kissing_cat" - ], - "tags": [] - }, - { - "emojiChar": "😼", - "emoji": "\uD83D\uDE3C", - "description": "cat face with wry smile", - "aliases": [ - "smirk_cat" - ], - "tags": [] - }, - { - "emojiChar": "🙀", - "emoji": "\uD83D\uDE40", - "description": "weary cat face", - "aliases": [ - "scream_cat" - ], - "tags": [ - "horror" - ] - }, - { - "emojiChar": "😿", - "emoji": "\uD83D\uDE3F", - "description": "crying cat face", - "aliases": [ - "crying_cat_face" - ], - "tags": [ - "sad", - "tear" - ] - }, - { - "emojiChar": "😹", - "emoji": "\uD83D\uDE39", - "description": "cat face with tears of joy", - "aliases": [ - "joy_cat" - ], - "tags": [] - }, - { - "emojiChar": "😾", - "emoji": "\uD83D\uDE3E", - "description": "pouting cat face", - "aliases": [ - "pouting_cat" - ], - "tags": [] - }, - { - "emojiChar": "👹", - "emoji": "\uD83D\uDC79", - "description": "japanese ogre", - "aliases": [ - "japanese_ogre" - ], - "tags": [ - "monster" - ] - }, - { - "emojiChar": "👺", - "emoji": "\uD83D\uDC7A", - "description": "japanese goblin", - "aliases": [ - "japanese_goblin" - ], - "tags": [] - }, - { - "emojiChar": "🙈", - "emoji": "\uD83D\uDE48", - "description": "see-no-evil monkey", - "aliases": [ - "see_no_evil" - ], - "tags": [ - "monkey", - "blind", - "ignore" - ] - }, - { - "emojiChar": "🙉", - "emoji": "\uD83D\uDE49", - "description": "hear-no-evil monkey", - "aliases": [ - "hear_no_evil" - ], - "tags": [ - "monkey", - "deaf" - ] - }, - { - "emojiChar": "🙊", - "emoji": "\uD83D\uDE4A", - "description": "speak-no-evil monkey", - "aliases": [ - "speak_no_evil" - ], - "tags": [ - "monkey", - "mute", - "hush" - ] - }, - { - "emojiChar": "💀", - "emoji": "\uD83D\uDC80", - "description": "skull", - "aliases": [ - "skull" - ], - "tags": [ - "dead", - "danger", - "poison" - ] - }, - { - "emojiChar": "👽", - "emoji": "\uD83D\uDC7D", - "description": "extraterrestrial alien", - "aliases": [ - "alien" - ], - "tags": [ - "ufo" - ] - }, - { - "emojiChar": "💩", - "emoji": "\uD83D\uDCA9", - "description": "pile of poo", - "aliases": [ - "hankey", - "poop", - "shit" - ], - "tags": [ - "crap" - ] - }, - { - "emojiChar": "🔥", - "emoji": "\uD83D\uDD25", - "description": "fire", - "aliases": [ - "fire" - ], - "tags": [ - "burn" - ] - }, - { - "emojiChar": "✨", - "emoji": "\u2728", - "description": "sparkles", - "aliases": [ - "sparkles" - ], - "tags": [ - "shiny" - ] - }, - { - "emojiChar": "🌟", - "emoji": "\uD83C\uDF1F", - "description": "glowing star", - "aliases": [ - "star2" - ], - "tags": [] - }, - { - "emojiChar": "💫", - "emoji": "\uD83D\uDCAB", - "description": "dizzy symbol", - "aliases": [ - "dizzy" - ], - "tags": [ - "star" - ] - }, - { - "emojiChar": "💥", - "emoji": "\uD83D\uDCA5", - "description": "collision symbol", - "aliases": [ - "boom", - "collision" - ], - "tags": [ - "explode" - ] - }, - { - "emojiChar": "💢", - "emoji": "\uD83D\uDCA2", - "description": "anger symbol", - "aliases": [ - "anger" - ], - "tags": [ - "angry" - ] - }, - { - "emojiChar": "💦", - "emoji": "\uD83D\uDCA6", - "description": "splashing sweat symbol", - "aliases": [ - "sweat_drops" - ], - "tags": [ - "water", - "workout" - ] - }, - { - "emojiChar": "💧", - "emoji": "\uD83D\uDCA7", - "description": "droplet", - "aliases": [ - "droplet" - ], - "tags": [ - "water" - ] - }, - { - "emojiChar": "💤", - "emoji": "\uD83D\uDCA4", - "description": "sleeping symbol", - "aliases": [ - "zzz" - ], - "tags": [ - "sleeping" - ] - }, - { - "emojiChar": "💨", - "emoji": "\uD83D\uDCA8", - "description": "dash symbol", - "aliases": [ - "dash" - ], - "tags": [ - "wind", - "blow", - "fast" - ] - }, - { - "emojiChar": "👂", - "emoji": "\uD83D\uDC42", - "description": "ear", - "supports_fitzpatrick": true, - "aliases": [ - "ear" - ], - "tags": [ - "hear", - "sound", - "listen" - ] - }, - { - "emojiChar": "👀", - "emoji": "\uD83D\uDC40", - "description": "eyes", - "aliases": [ - "eyes" - ], - "tags": [ - "look", - "see", - "watch" - ] - }, - { - "emojiChar": "👃", - "emoji": "\uD83D\uDC43", - "description": "nose", - "supports_fitzpatrick": true, - "aliases": [ - "nose" - ], - "tags": [ - "smell" - ] - }, - { - "emojiChar": "👅", - "emoji": "\uD83D\uDC45", - "description": "tongue", - "aliases": [ - "tongue" - ], - "tags": [ - "taste" - ] - }, - { - "emojiChar": "👄", - "emoji": "\uD83D\uDC44", - "description": "mouth", - "aliases": [ - "lips" - ], - "tags": [ - "kiss" - ] - }, - { - "emojiChar": "👍", - "emoji": "\uD83D\uDC4D", - "description": "thumbs up sign", - "supports_fitzpatrick": true, - "aliases": [ - "+1", - "like", - "thumbsup" - ], - "tags": [ - "approve", - "ok" - ] - }, - { - "emojiChar": "👎", - "emoji": "\uD83D\uDC4E", - "description": "thumbs down sign", - "supports_fitzpatrick": true, - "aliases": [ - "-1", - "thumbsdown" - ], - "tags": [ - "disapprove", - "bury" - ] - }, - { - "emojiChar": "👌", - "emoji": "\uD83D\uDC4C", - "description": "ok hand sign", - "supports_fitzpatrick": true, - "aliases": [ - "ok_hand" - ], - "tags": [] - }, - { - "emojiChar": "👊", - "emoji": "\uD83D\uDC4A", - "description": "fisted hand sign", - "supports_fitzpatrick": true, - "aliases": [ - "facepunch", - "punch" - ], - "tags": [ - "attack" - ] - }, - { - "emojiChar": "✊", - "emoji": "\u270A", - "description": "raised fist", - "supports_fitzpatrick": true, - "aliases": [ - "fist" - ], - "tags": [ - "power" - ] - }, - { - "emojiChar": "✌", - "emoji": "\u270C", - "description": "victory hand", - "supports_fitzpatrick": true, - "aliases": [ - "v" - ], - "tags": [ - "victory", - "peace" - ] - }, - { - "emojiChar": "👋", - "emoji": "\uD83D\uDC4B", - "description": "waving hand sign", - "supports_fitzpatrick": true, - "aliases": [ - "wave" - ], - "tags": [ - "goodbye" - ] - }, - { - "emojiChar": "✋", - "emoji": "\u270B", - "description": "raised hand", - "supports_fitzpatrick": true, - "aliases": [ - "hand", - "raised_hand" - ], - "tags": [ - "highfive", - "stop" - ] - }, - { - "emojiChar": "👐", - "emoji": "\uD83D\uDC50", - "description": "open hands sign", - "supports_fitzpatrick": true, - "aliases": [ - "open_hands" - ], - "tags": [] - }, - { - "emojiChar": "👆", - "emoji": "\uD83D\uDC46", - "description": "white up pointing backhand index", - "supports_fitzpatrick": true, - "aliases": [ - "point_up_2" - ], - "tags": [] - }, - { - "emojiChar": "👇", - "emoji": "\uD83D\uDC47", - "description": "white down pointing backhand index", - "supports_fitzpatrick": true, - "aliases": [ - "point_down" - ], - "tags": [] - }, - { - "emojiChar": "👉", - "emoji": "\uD83D\uDC49", - "description": "white right pointing backhand index", - "supports_fitzpatrick": true, - "aliases": [ - "point_right" - ], - "tags": [] - }, - { - "emojiChar": "👈", - "emoji": "\uD83D\uDC48", - "description": "white left pointing backhand index", - "supports_fitzpatrick": true, - "aliases": [ - "point_left" - ], - "tags": [] - }, - { - "emojiChar": "🙌", - "emoji": "\uD83D\uDE4C", - "description": "person raising both hands in celebration", - "supports_fitzpatrick": true, - "aliases": [ - "raised_hands" - ], - "tags": [ - "hooray" - ] - }, - { - "emojiChar": "🙏", - "emoji": "\uD83D\uDE4F", - "description": "person with folded hands", - "supports_fitzpatrick": true, - "aliases": [ - "pray" - ], - "tags": [ - "please", - "hope", - "wish" - ] - }, - { - "emojiChar": "☝", - "emoji": "\u261D", - "description": "white up pointing index", - "supports_fitzpatrick": true, - "aliases": [ - "point_up" - ], - "tags": [] - }, - { - "emojiChar": "👏", - "emoji": "\uD83D\uDC4F", - "description": "clapping hands sign", - "supports_fitzpatrick": true, - "aliases": [ - "clap" - ], - "tags": [ - "praise", - "applause" - ] - }, - { - "emojiChar": "💪", - "emoji": "\uD83D\uDCAA", - "description": "flexed biceps", - "supports_fitzpatrick": true, - "aliases": [ - "muscle" - ], - "tags": [ - "flex", - "bicep", - "strong", - "workout" - ] - }, - { - "emojiChar": "🚶", - "emoji": "\uD83D\uDEB6", - "description": "pedestrian", - "supports_fitzpatrick": true, - "aliases": [ - "walking" - ], - "tags": [] - }, - { - "emojiChar": "🏃", - "emoji": "\uD83C\uDFC3", - "description": "runner", - "supports_fitzpatrick": true, - "aliases": [ - "runner", - "running" - ], - "tags": [ - "exercise", - "workout", - "marathon" - ] - }, - { - "emojiChar": "💃", - "emoji": "\uD83D\uDC83", - "description": "dancer", - "supports_fitzpatrick": true, - "aliases": [ - "dancer" - ], - "tags": [ - "dress" - ] - }, - { - "emojiChar": "👫", - "emoji": "\uD83D\uDC6B", - "description": "man and woman holding hands", - "aliases": [ - "couple" - ], - "tags": [ - "date" - ] - }, - { - "emojiChar": "👪", - "emoji": "\uD83D\uDC6A", - "description": "family", - "aliases": [ - "family" - ], - "tags": [ - "home", - "parents", - "child" - ] - }, - { - "emojiChar": "👬", - "emoji": "\uD83D\uDC6C", - "description": "two men holding hands", - "aliases": [ - "two_men_holding_hands" - ], - "tags": [ - "couple", - "date" - ] - }, - { - "emojiChar": "👭", - "emoji": "\uD83D\uDC6D", - "description": "two women holding hands", - "aliases": [ - "two_women_holding_hands" - ], - "tags": [ - "couple", - "date" - ] - }, - { - "emojiChar": "💏", - "emoji": "\uD83D\uDC8F", - "description": "kiss", - "aliases": [ - "couplekiss" - ], - "tags": [] - }, - { - "emojiChar": "💑", - "emoji": "\uD83D\uDC91", - "description": "couple with heart", - "aliases": [ - "couple_with_heart" - ], - "tags": [] - }, - { - "emojiChar": "👯", - "emoji": "\uD83D\uDC6F", - "description": "woman with bunny ears", - "supports_fitzpatrick": true, - "aliases": [ - "dancers" - ], - "tags": [ - "bunny" - ] - }, - { - "emojiChar": "🙆", - "emoji": "\uD83D\uDE46", - "description": "face with ok gesture", - "supports_fitzpatrick": true, - "aliases": [ - "ok_woman" - ], - "tags": [] - }, - { - "emojiChar": "🙅", - "emoji": "\uD83D\uDE45", - "description": "face with no good gesture", - "supports_fitzpatrick": true, - "aliases": [ - "no_good" - ], - "tags": [ - "stop", - "halt" - ] - }, - { - "emojiChar": "💁", - "emoji": "\uD83D\uDC81", - "description": "information desk person", - "supports_fitzpatrick": true, - "aliases": [ - "information_desk_person" - ], - "tags": [] - }, - { - "emojiChar": "🙋", - "emoji": "\uD83D\uDE4B", - "description": "happy person raising one hand", - "supports_fitzpatrick": true, - "aliases": [ - "raising_hand" - ], - "tags": [] - }, - { - "emojiChar": "💆", - "emoji": "\uD83D\uDC86", - "description": "face massage", - "supports_fitzpatrick": true, - "aliases": [ - "massage" - ], - "tags": [ - "spa" - ] - }, - { - "emojiChar": "💇", - "emoji": "\uD83D\uDC87", - "description": "haircut", - "supports_fitzpatrick": true, - "aliases": [ - "haircut" - ], - "tags": [ - "beauty" - ] - }, - { - "emojiChar": "💅", - "emoji": "\uD83D\uDC85", - "description": "nail polish", - "supports_fitzpatrick": true, - "aliases": [ - "nail_care" - ], - "tags": [ - "beauty", - "manicure" - ] - }, - { - "emojiChar": "👰", - "emoji": "\uD83D\uDC70", - "description": "bride with veil", - "supports_fitzpatrick": true, - "aliases": [ - "bride_with_veil" - ], - "tags": [ - "marriage", - "wedding" - ] - }, - { - "emojiChar": "🙎", - "emoji": "\uD83D\uDE4E", - "description": "person with pouting face", - "supports_fitzpatrick": true, - "aliases": [ - "person_with_pouting_face" - ], - "tags": [] - }, - { - "emojiChar": "🙍", - "emoji": "\uD83D\uDE4D", - "description": "person frowning", - "supports_fitzpatrick": true, - "aliases": [ - "person_frowning" - ], - "tags": [ - "sad" - ] - }, - { - "emojiChar": "🙇", - "emoji": "\uD83D\uDE47", - "description": "person bowing deeply", - "supports_fitzpatrick": true, - "aliases": [ - "bow" - ], - "tags": [ - "respect", - "thanks" - ] - }, - { - "emojiChar": "🙇‍♀️", - "emoji": "\uD83D\uDE47\u200D\u2640\uFE0F", - "description": "woman bowing deeply", - "supports_fitzpatrick": true, - "aliases": [ - "woman_bow", - "female_bow" - ], - "tags": [ - "respect", - "thanks" - ] - }, - { - "emojiChar": "🙇‍♂️", - "emoji": "\uD83D\uDE47\u200D\u2642\uFE0F", - "description": "man bowing deeply", - "supports_fitzpatrick": true, - "aliases": [ - "man_bow", - "male_bow" - ], - "tags": [ - "respect", - "thanks" - ] - }, - { - "emojiChar": "🎩", - "emoji": "\uD83C\uDFA9", - "description": "top hat", - "aliases": [ - "tophat" - ], - "tags": [ - "hat", - "classy" - ] - }, - { - "emojiChar": "👑", - "emoji": "\uD83D\uDC51", - "description": "crown", - "aliases": [ - "crown" - ], - "tags": [ - "king", - "queen", - "royal" - ] - }, - { - "emojiChar": "👒", - "emoji": "\uD83D\uDC52", - "description": "womans hat", - "aliases": [ - "womans_hat" - ], - "tags": [] - }, - { - "emojiChar": "👟", - "emoji": "\uD83D\uDC5F", - "description": "athletic shoe", - "aliases": [ - "athletic_shoe" - ], - "tags": [ - "sneaker", - "sport", - "running" - ] - }, - { - "emojiChar": "👞", - "emoji": "\uD83D\uDC5E", - "description": "mans shoe", - "aliases": [ - "mans_shoe", - "shoe" - ], - "tags": [] - }, - { - "emojiChar": "👡", - "emoji": "\uD83D\uDC61", - "description": "womans sandal", - "aliases": [ - "sandal" - ], - "tags": [ - "shoe" - ] - }, - { - "emojiChar": "👠", - "emoji": "\uD83D\uDC60", - "description": "high-heeled shoe", - "aliases": [ - "high_heel" - ], - "tags": [ - "shoe" - ] - }, - { - "emojiChar": "👢", - "emoji": "\uD83D\uDC62", - "description": "womans boots", - "aliases": [ - "boot" - ], - "tags": [] - }, - { - "emojiChar": "👕", - "emoji": "\uD83D\uDC55", - "description": "t-shirt", - "aliases": [ - "shirt", - "tshirt" - ], - "tags": [] - }, - { - "emojiChar": "👔", - "emoji": "\uD83D\uDC54", - "description": "necktie", - "aliases": [ - "necktie" - ], - "tags": [ - "shirt", - "formal" - ] - }, - { - "emojiChar": "👚", - "emoji": "\uD83D\uDC5A", - "description": "womans clothes", - "aliases": [ - "womans_clothes" - ], - "tags": [] - }, - { - "emojiChar": "👗", - "emoji": "\uD83D\uDC57", - "description": "dress", - "aliases": [ - "dress" - ], - "tags": [] - }, - { - "emojiChar": "🎽", - "emoji": "\uD83C\uDFBD", - "description": "running shirt with sash", - "aliases": [ - "running_shirt_with_sash" - ], - "tags": [ - "marathon" - ] - }, - { - "emojiChar": "👖", - "emoji": "\uD83D\uDC56", - "description": "jeans", - "aliases": [ - "jeans" - ], - "tags": [ - "pants" - ] - }, - { - "emojiChar": "👘", - "emoji": "\uD83D\uDC58", - "description": "kimono", - "aliases": [ - "kimono" - ], - "tags": [] - }, - { - "emojiChar": "👙", - "emoji": "\uD83D\uDC59", - "description": "bikini", - "aliases": [ - "bikini" - ], - "tags": [ - "beach" - ] - }, - { - "emojiChar": "💼", - "emoji": "\uD83D\uDCBC", - "description": "briefcase", - "aliases": [ - "briefcase" - ], - "tags": [ - "business" - ] - }, - { - "emojiChar": "👜", - "emoji": "\uD83D\uDC5C", - "description": "handbag", - "aliases": [ - "handbag" - ], - "tags": [ - "bag" - ] - }, - { - "emojiChar": "👝", - "emoji": "\uD83D\uDC5D", - "description": "pouch", - "aliases": [ - "pouch" - ], - "tags": [ - "bag" - ] - }, - { - "emojiChar": "👛", - "emoji": "\uD83D\uDC5B", - "description": "purse", - "aliases": [ - "purse" - ], - "tags": [] - }, - { - "emojiChar": "👓", - "emoji": "\uD83D\uDC53", - "description": "eyeglasses", - "aliases": [ - "eyeglasses" - ], - "tags": [ - "glasses" - ] - }, - { - "emojiChar": "🎀", - "emoji": "\uD83C\uDF80", - "description": "ribbon", - "aliases": [ - "ribbon" - ], - "tags": [] - }, - { - "emojiChar": "🌂", - "emoji": "\uD83C\uDF02", - "description": "closed umbrella", - "aliases": [ - "closed_umbrella" - ], - "tags": [ - "weather", - "rain" - ] - }, - { - "emojiChar": "💄", - "emoji": "\uD83D\uDC84", - "description": "lipstick", - "aliases": [ - "lipstick" - ], - "tags": [ - "makeup" - ] - }, - { - "emojiChar": "💛", - "emoji": "\uD83D\uDC9B", - "description": "yellow heart", - "aliases": [ - "yellow_heart" - ], - "tags": [] - }, - { - "emojiChar": "💙", - "emoji": "\uD83D\uDC99", - "description": "blue heart", - "aliases": [ - "blue_heart" - ], - "tags": [] - }, - { - "emojiChar": "💜", - "emoji": "\uD83D\uDC9C", - "description": "purple heart", - "aliases": [ - "purple_heart" - ], - "tags": [] - }, - { - "emojiChar": "💚", - "emoji": "\uD83D\uDC9A", - "description": "green heart", - "aliases": [ - "green_heart" - ], - "tags": [] - }, - { - "emojiChar": "❤", - "emoji": "\u2764", - "description": "heavy black heart", - "aliases": [ - "heart" - ], - "tags": [ - "love" - ] - }, - { - "emojiChar": "💔", - "emoji": "\uD83D\uDC94", - "description": "broken heart", - "aliases": [ - "broken_heart" - ], - "tags": [] - }, - { - "emojiChar": "💗", - "emoji": "\uD83D\uDC97", - "description": "growing heart", - "aliases": [ - "heartpulse" - ], - "tags": [] - }, - { - "emojiChar": "💓", - "emoji": "\uD83D\uDC93", - "description": "beating heart", - "aliases": [ - "heartbeat" - ], - "tags": [] - }, - { - "emojiChar": "💕", - "emoji": "\uD83D\uDC95", - "description": "two hearts", - "aliases": [ - "two_hearts" - ], - "tags": [] - }, - { - "emojiChar": "💖", - "emoji": "\uD83D\uDC96", - "description": "sparkling heart", - "aliases": [ - "sparkling_heart" - ], - "tags": [] - }, - { - "emojiChar": "💞", - "emoji": "\uD83D\uDC9E", - "description": "revolving hearts", - "aliases": [ - "revolving_hearts" - ], - "tags": [] - }, - { - "emojiChar": "💘", - "emoji": "\uD83D\uDC98", - "description": "heart with arrow", - "aliases": [ - "cupid" - ], - "tags": [ - "love", - "heart" - ] - }, - { - "emojiChar": "💌", - "emoji": "\uD83D\uDC8C", - "description": "love letter", - "aliases": [ - "love_letter" - ], - "tags": [ - "email", - "envelope" - ] - }, - { - "emojiChar": "💋", - "emoji": "\uD83D\uDC8B", - "description": "kiss mark", - "aliases": [ - "kiss" - ], - "tags": [ - "lipstick" - ] - }, - { - "emojiChar": "💍", - "emoji": "\uD83D\uDC8D", - "description": "ring", - "aliases": [ - "ring" - ], - "tags": [ - "wedding", - "marriage", - "engaged" - ] - }, - { - "emojiChar": "💎", - "emoji": "\uD83D\uDC8E", - "description": "gem stone", - "aliases": [ - "gem" - ], - "tags": [ - "diamond" - ] - }, - { - "emojiChar": "👤", - "emoji": "\uD83D\uDC64", - "description": "bust in silhouette", - "aliases": [ - "bust_in_silhouette" - ], - "tags": [ - "user" - ] - }, - { - "emojiChar": "👥", - "emoji": "\uD83D\uDC65", - "description": "busts in silhouette", - "aliases": [ - "busts_in_silhouette" - ], - "tags": [ - "users", - "group", - "team" - ] - }, - { - "emojiChar": "💬", - "emoji": "\uD83D\uDCAC", - "description": "speech balloon", - "aliases": [ - "speech_balloon" - ], - "tags": [ - "comment" - ] - }, - { - "emojiChar": "👣", - "emoji": "\uD83D\uDC63", - "description": "footprints", - "aliases": [ - "footprints" - ], - "tags": [ - "feet", - "tracks" - ] - }, - { - "emojiChar": "💭", - "emoji": "\uD83D\uDCAD", - "description": "thought balloon", - "aliases": [ - "thought_balloon" - ], - "tags": [ - "thinking" - ] - }, - { - "emojiChar": "🐶", - "emoji": "\uD83D\uDC36", - "description": "dog face", - "aliases": [ - "dog" - ], - "tags": [ - "pet" - ] - }, - { - "emojiChar": "🐺", - "emoji": "\uD83D\uDC3A", - "description": "wolf face", - "aliases": [ - "wolf" - ], - "tags": [] - }, - { - "emojiChar": "🐱", - "emoji": "\uD83D\uDC31", - "description": "cat face", - "aliases": [ - "cat" - ], - "tags": [ - "pet" - ] - }, - { - "emojiChar": "🐭", - "emoji": "\uD83D\uDC2D", - "description": "mouse face", - "aliases": [ - "mouse" - ], - "tags": [] - }, - { - "emojiChar": "🐹", - "emoji": "\uD83D\uDC39", - "description": "hamster face", - "aliases": [ - "hamster" - ], - "tags": [ - "pet" - ] - }, - { - "emojiChar": "🐰", - "emoji": "\uD83D\uDC30", - "description": "rabbit face", - "aliases": [ - "rabbit" - ], - "tags": [ - "bunny" - ] - }, - { - "emojiChar": "🐸", - "emoji": "\uD83D\uDC38", - "description": "frog face", - "aliases": [ - "frog" - ], - "tags": [] - }, - { - "emojiChar": "🐯", - "emoji": "\uD83D\uDC2F", - "description": "tiger face", - "aliases": [ - "tiger" - ], - "tags": [] - }, - { - "emojiChar": "🐨", - "emoji": "\uD83D\uDC28", - "description": "koala", - "aliases": [ - "koala" - ], - "tags": [] - }, - { - "emojiChar": "🐻", - "emoji": "\uD83D\uDC3B", - "description": "bear face", - "aliases": [ - "bear" - ], - "tags": [] - }, - { - "emojiChar": "🐷", - "emoji": "\uD83D\uDC37", - "description": "pig face", - "aliases": [ - "pig" - ], - "tags": [] - }, - { - "emojiChar": "🐽", - "emoji": "\uD83D\uDC3D", - "description": "pig nose", - "aliases": [ - "pig_nose" - ], - "tags": [] - }, - { - "emojiChar": "🐮", - "emoji": "\uD83D\uDC2E", - "description": "cow face", - "aliases": [ - "cow" - ], - "tags": [] - }, - { - "emojiChar": "🐗", - "emoji": "\uD83D\uDC17", - "description": "boar", - "aliases": [ - "boar" - ], - "tags": [] - }, - { - "emojiChar": "🐵", - "emoji": "\uD83D\uDC35", - "description": "monkey face", - "aliases": [ - "monkey_face" - ], - "tags": [] - }, - { - "emojiChar": "🐒", - "emoji": "\uD83D\uDC12", - "description": "monkey", - "aliases": [ - "monkey" - ], - "tags": [] - }, - { - "emojiChar": "🐴", - "emoji": "\uD83D\uDC34", - "description": "horse face", - "aliases": [ - "horse" - ], - "tags": [] - }, - { - "emojiChar": "🐑", - "emoji": "\uD83D\uDC11", - "description": "sheep", - "aliases": [ - "sheep" - ], - "tags": [] - }, - { - "emojiChar": "🐘", - "emoji": "\uD83D\uDC18", - "description": "elephant", - "aliases": [ - "elephant" - ], - "tags": [] - }, - { - "emojiChar": "🐼", - "emoji": "\uD83D\uDC3C", - "description": "panda face", - "aliases": [ - "panda_face" - ], - "tags": [] - }, - { - "emojiChar": "🐧", - "emoji": "\uD83D\uDC27", - "description": "penguin", - "aliases": [ - "penguin" - ], - "tags": [] - }, - { - "emojiChar": "🐦", - "emoji": "\uD83D\uDC26", - "description": "bird", - "aliases": [ - "bird" - ], - "tags": [] - }, - { - "emojiChar": "🐤", - "emoji": "\uD83D\uDC24", - "description": "baby chick", - "aliases": [ - "baby_chick" - ], - "tags": [] - }, - { - "emojiChar": "🐥", - "emoji": "\uD83D\uDC25", - "description": "front-facing baby chick", - "aliases": [ - "hatched_chick" - ], - "tags": [] - }, - { - "emojiChar": "🐣", - "emoji": "\uD83D\uDC23", - "description": "hatching chick", - "aliases": [ - "hatching_chick" - ], - "tags": [] - }, - { - "emojiChar": "🐔", - "emoji": "\uD83D\uDC14", - "description": "chicken", - "aliases": [ - "chicken" - ], - "tags": [] - }, - { - "emojiChar": "🐍", - "emoji": "\uD83D\uDC0D", - "description": "snake", - "aliases": [ - "snake" - ], - "tags": [] - }, - { - "emojiChar": "🐢", - "emoji": "\uD83D\uDC22", - "description": "turtle", - "aliases": [ - "turtle" - ], - "tags": [ - "slow" - ] - }, - { - "emojiChar": "🐛", - "emoji": "\uD83D\uDC1B", - "description": "bug", - "aliases": [ - "bug" - ], - "tags": [] - }, - { - "emojiChar": "🐝", - "emoji": "\uD83D\uDC1D", - "description": "honeybee", - "aliases": [ - "bee", - "honeybee" - ], - "tags": [] - }, - { - "emojiChar": "🐜", - "emoji": "\uD83D\uDC1C", - "description": "ant", - "aliases": [ - "ant" - ], - "tags": [] - }, - { - "emojiChar": "🐞", - "emoji": "\uD83D\uDC1E", - "description": "lady beetle", - "aliases": [ - "beetle" - ], - "tags": [ - "bug" - ] - }, - { - "emojiChar": "🐌", - "emoji": "\uD83D\uDC0C", - "description": "snail", - "aliases": [ - "snail" - ], - "tags": [ - "slow" - ] - }, - { - "emojiChar": "🐙", - "emoji": "\uD83D\uDC19", - "description": "octopus", - "aliases": [ - "octopus" - ], - "tags": [] - }, - { - "emojiChar": "🐚", - "emoji": "\uD83D\uDC1A", - "description": "spiral shell", - "aliases": [ - "shell" - ], - "tags": [ - "sea", - "beach" - ] - }, - { - "emojiChar": "🐠", - "emoji": "\uD83D\uDC20", - "description": "tropical fish", - "aliases": [ - "tropical_fish" - ], - "tags": [] - }, - { - "emojiChar": "🐟", - "emoji": "\uD83D\uDC1F", - "description": "fish", - "aliases": [ - "fish" - ], - "tags": [] - }, - { - "emojiChar": "🐬", - "emoji": "\uD83D\uDC2C", - "description": "dolphin", - "aliases": [ - "dolphin", - "flipper" - ], - "tags": [] - }, - { - "emojiChar": "🐳", - "emoji": "\uD83D\uDC33", - "description": "spouting whale", - "aliases": [ - "whale" - ], - "tags": [ - "sea" - ] - }, - { - "emojiChar": "🐋", - "emoji": "\uD83D\uDC0B", - "description": "whale", - "aliases": [ - "whale2" - ], - "tags": [] - }, - { - "emojiChar": "🐄", - "emoji": "\uD83D\uDC04", - "description": "cow", - "aliases": [ - "cow2" - ], - "tags": [] - }, - { - "emojiChar": "🐏", - "emoji": "\uD83D\uDC0F", - "description": "ram", - "aliases": [ - "ram" - ], - "tags": [] - }, - { - "emojiChar": "🐀", - "emoji": "\uD83D\uDC00", - "description": "rat", - "aliases": [ - "rat" - ], - "tags": [] - }, - { - "emojiChar": "🐃", - "emoji": "\uD83D\uDC03", - "description": "water buffalo", - "aliases": [ - "water_buffalo" - ], - "tags": [] - }, - { - "emojiChar": "🐅", - "emoji": "\uD83D\uDC05", - "description": "tiger", - "aliases": [ - "tiger2" - ], - "tags": [] - }, - { - "emojiChar": "🐇", - "emoji": "\uD83D\uDC07", - "description": "rabbit", - "aliases": [ - "rabbit2" - ], - "tags": [] - }, - { - "emojiChar": "🐉", - "emoji": "\uD83D\uDC09", - "description": "dragon", - "aliases": [ - "dragon" - ], - "tags": [] - }, - { - "emojiChar": "🐎", - "emoji": "\uD83D\uDC0E", - "description": "horse", - "aliases": [ - "racehorse" - ], - "tags": [ - "speed" - ] - }, - { - "emojiChar": "🐐", - "emoji": "\uD83D\uDC10", - "description": "goat", - "aliases": [ - "goat" - ], - "tags": [] - }, - { - "emojiChar": "🐓", - "emoji": "\uD83D\uDC13", - "description": "rooster", - "aliases": [ - "rooster" - ], - "tags": [] - }, - { - "emojiChar": "🐕", - "emoji": "\uD83D\uDC15", - "description": "dog", - "aliases": [ - "dog2" - ], - "tags": [] - }, - { - "emojiChar": "🐖", - "emoji": "\uD83D\uDC16", - "description": "pig", - "aliases": [ - "pig2" - ], - "tags": [] - }, - { - "emojiChar": "🐁", - "emoji": "\uD83D\uDC01", - "description": "mouse", - "aliases": [ - "mouse2" - ], - "tags": [] - }, - { - "emojiChar": "🐂", - "emoji": "\uD83D\uDC02", - "description": "ox", - "aliases": [ - "ox" - ], - "tags": [] - }, - { - "emojiChar": "🐲", - "emoji": "\uD83D\uDC32", - "description": "dragon face", - "aliases": [ - "dragon_face" - ], - "tags": [] - }, - { - "emojiChar": "🐡", - "emoji": "\uD83D\uDC21", - "description": "blowfish", - "aliases": [ - "blowfish" - ], - "tags": [] - }, - { - "emojiChar": "🐊", - "emoji": "\uD83D\uDC0A", - "description": "crocodile", - "aliases": [ - "crocodile" - ], - "tags": [] - }, - { - "emojiChar": "🐫", - "emoji": "\uD83D\uDC2B", - "description": "bactrian camel", - "aliases": [ - "camel" - ], - "tags": [] - }, - { - "emojiChar": "🐪", - "emoji": "\uD83D\uDC2A", - "description": "dromedary camel", - "aliases": [ - "dromedary_camel" - ], - "tags": [ - "desert" - ] - }, - { - "emojiChar": "🐆", - "emoji": "\uD83D\uDC06", - "description": "leopard", - "aliases": [ - "leopard" - ], - "tags": [] - }, - { - "emojiChar": "🐈", - "emoji": "\uD83D\uDC08", - "description": "cat", - "aliases": [ - "cat2" - ], - "tags": [] - }, - { - "emojiChar": "🐩", - "emoji": "\uD83D\uDC29", - "description": "poodle", - "aliases": [ - "poodle" - ], - "tags": [ - "dog" - ] - }, - { - "emojiChar": "🐾", - "emoji": "\uD83D\uDC3E", - "description": "paw prints", - "aliases": [ - "feet", - "paw_prints" - ], - "tags": [] - }, - { - "emojiChar": "💐", - "emoji": "\uD83D\uDC90", - "description": "bouquet", - "aliases": [ - "bouquet" - ], - "tags": [ - "flowers" - ] - }, - { - "emojiChar": "🌸", - "emoji": "\uD83C\uDF38", - "description": "cherry blossom", - "aliases": [ - "cherry_blossom" - ], - "tags": [ - "flower", - "spring" - ] - }, - { - "emojiChar": "🌷", - "emoji": "\uD83C\uDF37", - "description": "tulip", - "aliases": [ - "tulip" - ], - "tags": [ - "flower" - ] - }, - { - "emojiChar": "🍀", - "emoji": "\uD83C\uDF40", - "description": "four leaf clover", - "aliases": [ - "four_leaf_clover" - ], - "tags": [ - "luck" - ] - }, - { - "emojiChar": "🌹", - "emoji": "\uD83C\uDF39", - "description": "rose", - "aliases": [ - "rose" - ], - "tags": [ - "flower" - ] - }, - { - "emojiChar": "🌻", - "emoji": "\uD83C\uDF3B", - "description": "sunflower", - "aliases": [ - "sunflower" - ], - "tags": [] - }, - { - "emojiChar": "🌺", - "emoji": "\uD83C\uDF3A", - "description": "hibiscus", - "aliases": [ - "hibiscus" - ], - "tags": [] - }, - { - "emojiChar": "🍁", - "emoji": "\uD83C\uDF41", - "description": "maple leaf", - "aliases": [ - "maple_leaf" - ], - "tags": [ - "canada" - ] - }, - { - "emojiChar": "🍃", - "emoji": "\uD83C\uDF43", - "description": "leaf fluttering in wind", - "aliases": [ - "leaves" - ], - "tags": [ - "leaf" - ] - }, - { - "emojiChar": "🍂", - "emoji": "\uD83C\uDF42", - "description": "fallen leaf", - "aliases": [ - "fallen_leaf" - ], - "tags": [ - "autumn" - ] - }, - { - "emojiChar": "🌿", - "emoji": "\uD83C\uDF3F", - "description": "herb", - "aliases": [ - "herb" - ], - "tags": [] - }, - { - "emojiChar": "🌾", - "emoji": "\uD83C\uDF3E", - "description": "ear of rice", - "aliases": [ - "ear_of_rice" - ], - "tags": [] - }, - { - "emojiChar": "🍄", - "emoji": "\uD83C\uDF44", - "description": "mushroom", - "aliases": [ - "mushroom" - ], - "tags": [] - }, - { - "emojiChar": "🌵", - "emoji": "\uD83C\uDF35", - "description": "cactus", - "aliases": [ - "cactus" - ], - "tags": [] - }, - { - "emojiChar": "🌴", - "emoji": "\uD83C\uDF34", - "description": "palm tree", - "aliases": [ - "palm_tree" - ], - "tags": [] - }, - { - "emojiChar": "🌲", - "emoji": "\uD83C\uDF32", - "description": "evergreen tree", - "aliases": [ - "evergreen_tree" - ], - "tags": [ - "wood" - ] - }, - { - "emojiChar": "🌳", - "emoji": "\uD83C\uDF33", - "description": "deciduous tree", - "aliases": [ - "deciduous_tree" - ], - "tags": [ - "wood" - ] - }, - { - "emojiChar": "🌰", - "emoji": "\uD83C\uDF30", - "description": "chestnut", - "aliases": [ - "chestnut" - ], - "tags": [] - }, - { - "emojiChar": "🌱", - "emoji": "\uD83C\uDF31", - "description": "seedling", - "aliases": [ - "seedling" - ], - "tags": [ - "plant" - ] - }, - { - "emojiChar": "🌼", - "emoji": "\uD83C\uDF3C", - "description": "blossom", - "aliases": [ - "blossom" - ], - "tags": [] - }, - { - "emojiChar": "🌐", - "emoji": "\uD83C\uDF10", - "description": "globe with meridians", - "aliases": [ - "globe_with_meridians" - ], - "tags": [ - "world", - "global", - "international" - ] - }, - { - "emojiChar": "🌞", - "emoji": "\uD83C\uDF1E", - "description": "sun with face", - "aliases": [ - "sun_with_face" - ], - "tags": [ - "summer" - ] - }, - { - "emojiChar": "🌝", - "emoji": "\uD83C\uDF1D", - "description": "full moon with face", - "aliases": [ - "full_moon_with_face" - ], - "tags": [] - }, - { - "emojiChar": "🌚", - "emoji": "\uD83C\uDF1A", - "description": "new moon with face", - "aliases": [ - "new_moon_with_face" - ], - "tags": [] - }, - { - "emojiChar": "🌑", - "emoji": "\uD83C\uDF11", - "description": "new moon symbol", - "aliases": [ - "new_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌒", - "emoji": "\uD83C\uDF12", - "description": "waxing crescent moon symbol", - "aliases": [ - "waxing_crescent_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌓", - "emoji": "\uD83C\uDF13", - "description": "first quarter moon symbol", - "aliases": [ - "first_quarter_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌔", - "emoji": "\uD83C\uDF14", - "description": "waxing gibbous moon symbol", - "aliases": [ - "moon", - "waxing_gibbous_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌕", - "emoji": "\uD83C\uDF15", - "description": "full moon symbol", - "aliases": [ - "full_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌖", - "emoji": "\uD83C\uDF16", - "description": "waning gibbous moon symbol", - "aliases": [ - "waning_gibbous_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌗", - "emoji": "\uD83C\uDF17", - "description": "last quarter moon symbol", - "aliases": [ - "last_quarter_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌘", - "emoji": "\uD83C\uDF18", - "description": "waning crescent moon symbol", - "aliases": [ - "waning_crescent_moon" - ], - "tags": [] - }, - { - "emojiChar": "🌜", - "emoji": "\uD83C\uDF1C", - "description": "last quarter moon with face", - "aliases": [ - "last_quarter_moon_with_face" - ], - "tags": [] - }, - { - "emojiChar": "🌛", - "emoji": "\uD83C\uDF1B", - "description": "first quarter moon with face", - "aliases": [ - "first_quarter_moon_with_face" - ], - "tags": [] - }, - { - "emojiChar": "🌙", - "emoji": "\uD83C\uDF19", - "description": "crescent moon", - "aliases": [ - "crescent_moon" - ], - "tags": [ - "night" - ] - }, - { - "emojiChar": "🌍", - "emoji": "\uD83C\uDF0D", - "description": "earth globe europe-africa", - "aliases": [ - "earth_africa" - ], - "tags": [ - "globe", - "world", - "international" - ] - }, - { - "emojiChar": "🌎", - "emoji": "\uD83C\uDF0E", - "description": "earth globe americas", - "aliases": [ - "earth_americas" - ], - "tags": [ - "globe", - "world", - "international" - ] - }, - { - "emojiChar": "🌏", - "emoji": "\uD83C\uDF0F", - "description": "earth globe asia-australia", - "aliases": [ - "earth_asia" - ], - "tags": [ - "globe", - "world", - "international" - ] - }, - { - "emojiChar": "🌋", - "emoji": "\uD83C\uDF0B", - "description": "volcano", - "aliases": [ - "volcano" - ], - "tags": [] - }, - { - "emojiChar": "🌌", - "emoji": "\uD83C\uDF0C", - "description": "milky way", - "aliases": [ - "milky_way" - ], - "tags": [] - }, - { - "emojiChar": "🌠", - "emoji": "\uD83C\uDF20", - "description": "shooting star", - "aliases": [ - "stars" - ], - "tags": [] - }, - { - "emojiChar": "⭐", - "emoji": "\u2B50", - "description": "white medium star", - "aliases": [ - "star" - ], - "tags": [] - }, - { - "emojiChar": "☀", - "emoji": "\u2600", - "description": "black sun with rays", - "aliases": [ - "sunny" - ], - "tags": [ - "weather" - ] - }, - { - "emojiChar": "⛅", - "emoji": "\u26C5", - "description": "sun behind cloud", - "aliases": [ - "partly_sunny" - ], - "tags": [ - "weather", - "cloud" - ] - }, - { - "emojiChar": "☁", - "emoji": "\u2601", - "description": "cloud", - "aliases": [ - "cloud" - ], - "tags": [] - }, - { - "emojiChar": "⚡", - "emoji": "\u26A1", - "description": "high voltage sign", - "aliases": [ - "zap" - ], - "tags": [ - "lightning", - "thunder" - ] - }, - { - "emojiChar": "☔", - "emoji": "\u2614", - "description": "umbrella with rain drops", - "aliases": [ - "umbrella" - ], - "tags": [ - "rain", - "weather" - ] - }, - { - "emojiChar": "❄", - "emoji": "\u2744", - "description": "snowflake", - "aliases": [ - "snowflake" - ], - "tags": [ - "winter", - "cold", - "weather" - ] - }, - { - "emojiChar": "⛄", - "emoji": "\u26C4", - "description": "snowman without snow", - "aliases": [ - "snowman" - ], - "tags": [ - "winter", - "christmas" - ] - }, - { - "emojiChar": "🌀", - "emoji": "\uD83C\uDF00", - "description": "cyclone", - "aliases": [ - "cyclone" - ], - "tags": [ - "swirl" - ] - }, - { - "emojiChar": "🌁", - "emoji": "\uD83C\uDF01", - "description": "foggy", - "aliases": [ - "foggy" - ], - "tags": [ - "karl" - ] - }, - { - "emojiChar": "🌈", - "emoji": "\uD83C\uDF08", - "description": "rainbow", - "aliases": [ - "rainbow" - ], - "tags": [ - "pride" - ] - }, - { - "emojiChar": "🌊", - "emoji": "\uD83C\uDF0A", - "description": "water wave", - "aliases": [ - "ocean" - ], - "tags": [ - "sea" - ] - }, - { - "emojiChar": "🎍", - "emoji": "\uD83C\uDF8D", - "description": "pine decoration", - "aliases": [ - "bamboo" - ], - "tags": [] - }, - { - "emojiChar": "💝", - "emoji": "\uD83D\uDC9D", - "description": "heart with ribbon", - "aliases": [ - "gift_heart" - ], - "tags": [ - "chocolates" - ] - }, - { - "emojiChar": "🎎", - "emoji": "\uD83C\uDF8E", - "description": "japanese dolls", - "aliases": [ - "dolls" - ], - "tags": [] - }, - { - "emojiChar": "🎒", - "emoji": "\uD83C\uDF92", - "description": "school satchel", - "aliases": [ - "school_satchel" - ], - "tags": [] - }, - { - "emojiChar": "🎓", - "emoji": "\uD83C\uDF93", - "description": "graduation cap", - "aliases": [ - "mortar_board" - ], - "tags": [ - "education", - "college", - "university", - "graduation" - ] - }, - { - "emojiChar": "🎏", - "emoji": "\uD83C\uDF8F", - "description": "carp streamer", - "aliases": [ - "flags" - ], - "tags": [] - }, - { - "emojiChar": "🎆", - "emoji": "\uD83C\uDF86", - "description": "fireworks", - "aliases": [ - "fireworks" - ], - "tags": [ - "festival", - "celebration" - ] - }, - { - "emojiChar": "🎇", - "emoji": "\uD83C\uDF87", - "description": "firework sparkler", - "aliases": [ - "sparkler" - ], - "tags": [] - }, - { - "emojiChar": "🎐", - "emoji": "\uD83C\uDF90", - "description": "wind chime", - "aliases": [ - "wind_chime" - ], - "tags": [] - }, - { - "emojiChar": "🎑", - "emoji": "\uD83C\uDF91", - "description": "moon viewing ceremony", - "aliases": [ - "rice_scene" - ], - "tags": [] - }, - { - "emojiChar": "🎃", - "emoji": "\uD83C\uDF83", - "description": "jack-o-lantern", - "aliases": [ - "jack_o_lantern", - "pumpkin" - ], - "tags": [ - "halloween" - ] - }, - { - "emojiChar": "👻", - "emoji": "\uD83D\uDC7B", - "description": "ghost", - "aliases": [ - "ghost" - ], - "tags": [ - "halloween" - ] - }, - { - "emojiChar": "🎅", - "emoji": "\uD83C\uDF85", - "description": "father christmas", - "supports_fitzpatrick": true, - "aliases": [ - "santa" - ], - "tags": [ - "christmas" - ] - }, - { - "emojiChar": "🎄", - "emoji": "\uD83C\uDF84", - "description": "christmas tree", - "aliases": [ - "christmas_tree" - ], - "tags": [] - }, - { - "emojiChar": "🎁", - "emoji": "\uD83C\uDF81", - "description": "wrapped present", - "aliases": [ - "gift" - ], - "tags": [ - "present", - "birthday", - "christmas" - ] - }, - { - "emojiChar": "🎋", - "emoji": "\uD83C\uDF8B", - "description": "tanabata tree", - "aliases": [ - "tanabata_tree" - ], - "tags": [] - }, - { - "emojiChar": "🎉", - "emoji": "\uD83C\uDF89", - "description": "party popper", - "aliases": [ - "tada" - ], - "tags": [ - "party" - ] - }, - { - "emojiChar": "🎊", - "emoji": "\uD83C\uDF8A", - "description": "confetti ball", - "aliases": [ - "confetti_ball" - ], - "tags": [] - }, - { - "emojiChar": "🎈", - "emoji": "\uD83C\uDF88", - "description": "balloon", - "aliases": [ - "balloon" - ], - "tags": [ - "party", - "birthday" - ] - }, - { - "emojiChar": "🎌", - "emoji": "\uD83C\uDF8C", - "description": "crossed flags", - "aliases": [ - "crossed_flags" - ], - "tags": [] - }, - { - "emojiChar": "🔮", - "emoji": "\uD83D\uDD2E", - "description": "crystal ball", - "aliases": [ - "crystal_ball" - ], - "tags": [ - "fortune" - ] - }, - { - "emojiChar": "🎥", - "emoji": "\uD83C\uDFA5", - "description": "movie camera", - "aliases": [ - "movie_camera" - ], - "tags": [ - "film", - "video" - ] - }, - { - "emojiChar": "📷", - "emoji": "\uD83D\uDCF7", - "description": "camera", - "aliases": [ - "camera" - ], - "tags": [ - "photo" - ] - }, - { - "emojiChar": "📹", - "emoji": "\uD83D\uDCF9", - "description": "video camera", - "aliases": [ - "video_camera" - ], - "tags": [] - }, - { - "emojiChar": "📼", - "emoji": "\uD83D\uDCFC", - "description": "videocassette", - "aliases": [ - "vhs" - ], - "tags": [] - }, - { - "emojiChar": "💿", - "emoji": "\uD83D\uDCBF", - "description": "optical disc", - "aliases": [ - "cd" - ], - "tags": [] - }, - { - "emojiChar": "📀", - "emoji": "\uD83D\uDCC0", - "description": "dvd", - "aliases": [ - "dvd" - ], - "tags": [] - }, - { - "emojiChar": "💽", - "emoji": "\uD83D\uDCBD", - "description": "minidisc", - "aliases": [ - "minidisc" - ], - "tags": [] - }, - { - "emojiChar": "💾", - "emoji": "\uD83D\uDCBE", - "description": "floppy disk", - "aliases": [ - "floppy_disk" - ], - "tags": [ - "save" - ] - }, - { - "emojiChar": "💻", - "emoji": "\uD83D\uDCBB", - "description": "personal computer", - "aliases": [ - "computer" - ], - "tags": [ - "desktop", - "screen" - ] - }, - { - "emojiChar": "📱", - "emoji": "\uD83D\uDCF1", - "description": "mobile phone", - "aliases": [ - "iphone" - ], - "tags": [ - "smartphone", - "mobile" - ] - }, - { - "emojiChar": "☎", - "emoji": "\u260E", - "description": "black telephone", - "aliases": [ - "phone", - "telephone" - ], - "tags": [] - }, - { - "emojiChar": "📞", - "emoji": "\uD83D\uDCDE", - "description": "telephone receiver", - "aliases": [ - "telephone_receiver" - ], - "tags": [ - "phone", - "call" - ] - }, - { - "emojiChar": "📟", - "emoji": "\uD83D\uDCDF", - "description": "pager", - "aliases": [ - "pager" - ], - "tags": [] - }, - { - "emojiChar": "📠", - "emoji": "\uD83D\uDCE0", - "description": "fax machine", - "aliases": [ - "fax" - ], - "tags": [] - }, - { - "emojiChar": "📡", - "emoji": "\uD83D\uDCE1", - "description": "satellite antenna", - "aliases": [ - "satellite_antenna" - ], - "tags": [ - "signal" - ] - }, - { - "emojiChar": "📺", - "emoji": "\uD83D\uDCFA", - "description": "television", - "aliases": [ - "tv" - ], - "tags": [] - }, - { - "emojiChar": "📻", - "emoji": "\uD83D\uDCFB", - "description": "radio", - "aliases": [ - "radio" - ], - "tags": [ - "podcast" - ] - }, - { - "emojiChar": "🔊", - "emoji": "\uD83D\uDD0A", - "description": "speaker with three sound waves", - "aliases": [ - "loud_sound" - ], - "tags": [ - "volume" - ] - }, - { - "emojiChar": "🔉", - "emoji": "\uD83D\uDD09", - "description": "speaker with one sound wave", - "aliases": [ - "sound" - ], - "tags": [ - "volume" - ] - }, - { - "emojiChar": "🔈", - "emoji": "\uD83D\uDD08", - "description": "speaker", - "aliases": [ - "speaker" - ], - "tags": [] - }, - { - "emojiChar": "🔇", - "emoji": "\uD83D\uDD07", - "description": "speaker with cancellation stroke", - "aliases": [ - "mute" - ], - "tags": [ - "sound", - "volume" - ] - }, - { - "emojiChar": "🔔", - "emoji": "\uD83D\uDD14", - "description": "bell", - "aliases": [ - "bell" - ], - "tags": [ - "sound", - "notification" - ] - }, - { - "emojiChar": "🔕", - "emoji": "\uD83D\uDD15", - "description": "bell with cancellation stroke", - "aliases": [ - "no_bell" - ], - "tags": [ - "volume", - "off" - ] - }, - { - "emojiChar": "📢", - "emoji": "\uD83D\uDCE2", - "description": "public address loudspeaker", - "aliases": [ - "loudspeaker" - ], - "tags": [ - "announcement" - ] - }, - { - "emojiChar": "📣", - "emoji": "\uD83D\uDCE3", - "description": "cheering megaphone", - "aliases": [ - "mega" - ], - "tags": [] - }, - { - "emojiChar": "⏳", - "emoji": "\u23F3", - "description": "hourglass with flowing sand", - "aliases": [ - "hourglass_flowing_sand" - ], - "tags": [ - "time" - ] - }, - { - "emojiChar": "⌛", - "emoji": "\u231B", - "description": "hourglass", - "aliases": [ - "hourglass" - ], - "tags": [ - "time" - ] - }, - { - "emojiChar": "⏰", - "emoji": "\u23F0", - "description": "alarm clock", - "aliases": [ - "alarm_clock" - ], - "tags": [ - "morning" - ] - }, - { - "emojiChar": "⌚", - "emoji": "\u231A", - "description": "watch", - "aliases": [ - "watch" - ], - "tags": [ - "time" - ] - }, - { - "emojiChar": "🔓", - "emoji": "\uD83D\uDD13", - "description": "open lock", - "aliases": [ - "unlock" - ], - "tags": [ - "security" - ] - }, - { - "emojiChar": "🔒", - "emoji": "\uD83D\uDD12", - "description": "lock", - "aliases": [ - "lock" - ], - "tags": [ - "security", - "private" - ] - }, - { - "emojiChar": "🔏", - "emoji": "\uD83D\uDD0F", - "description": "lock with ink pen", - "aliases": [ - "lock_with_ink_pen" - ], - "tags": [] - }, - { - "emojiChar": "🔐", - "emoji": "\uD83D\uDD10", - "description": "closed lock with key", - "aliases": [ - "closed_lock_with_key" - ], - "tags": [ - "security" - ] - }, - { - "emojiChar": "🔑", - "emoji": "\uD83D\uDD11", - "description": "key", - "aliases": [ - "key" - ], - "tags": [ - "lock", - "password" - ] - }, - { - "emojiChar": "🔎", - "emoji": "\uD83D\uDD0E", - "description": "right-pointing magnifying glass", - "aliases": [ - "mag_right" - ], - "tags": [] - }, - { - "emojiChar": "💡", - "emoji": "\uD83D\uDCA1", - "description": "electric light bulb", - "aliases": [ - "bulb" - ], - "tags": [ - "idea", - "light" - ] - }, - { - "emojiChar": "🔦", - "emoji": "\uD83D\uDD26", - "description": "electric torch", - "aliases": [ - "flashlight" - ], - "tags": [] - }, - { - "emojiChar": "🔆", - "emoji": "\uD83D\uDD06", - "description": "high brightness symbol", - "aliases": [ - "high_brightness" - ], - "tags": [] - }, - { - "emojiChar": "🔅", - "emoji": "\uD83D\uDD05", - "description": "low brightness symbol", - "aliases": [ - "low_brightness" - ], - "tags": [] - }, - { - "emojiChar": "🔌", - "emoji": "\uD83D\uDD0C", - "description": "electric plug", - "aliases": [ - "electric_plug" - ], - "tags": [] - }, - { - "emojiChar": "🔋", - "emoji": "\uD83D\uDD0B", - "description": "battery", - "aliases": [ - "battery" - ], - "tags": [ - "power" - ] - }, - { - "emojiChar": "🔍", - "emoji": "\uD83D\uDD0D", - "description": "left-pointing magnifying glass", - "aliases": [ - "mag" - ], - "tags": [ - "search", - "zoom" - ] - }, - { - "emojiChar": "🛁", - "emoji": "\uD83D\uDEC1", - "description": "bathtub", - "aliases": [ - "bathtub" - ], - "tags": [] - }, - { - "emojiChar": "🛀", - "emoji": "\uD83D\uDEC0", - "description": "bath", - "supports_fitzpatrick": true, - "aliases": [ - "bath" - ], - "tags": [ - "shower" - ] - }, - { - "emojiChar": "🚿", - "emoji": "\uD83D\uDEBF", - "description": "shower", - "aliases": [ - "shower" - ], - "tags": [ - "bath" - ] - }, - { - "emojiChar": "🚽", - "emoji": "\uD83D\uDEBD", - "description": "toilet", - "aliases": [ - "toilet" - ], - "tags": [ - "wc" - ] - }, - { - "emojiChar": "🔧", - "emoji": "\uD83D\uDD27", - "description": "wrench", - "aliases": [ - "wrench" - ], - "tags": [ - "tool" - ] - }, - { - "emojiChar": "🔩", - "emoji": "\uD83D\uDD29", - "description": "nut and bolt", - "aliases": [ - "nut_and_bolt" - ], - "tags": [] - }, - { - "emojiChar": "🔨", - "emoji": "\uD83D\uDD28", - "description": "hammer", - "aliases": [ - "hammer" - ], - "tags": [ - "tool" - ] - }, - { - "emojiChar": "🚪", - "emoji": "\uD83D\uDEAA", - "description": "door", - "aliases": [ - "door" - ], - "tags": [] - }, - { - "emojiChar": "🚬", - "emoji": "\uD83D\uDEAC", - "description": "smoking symbol", - "aliases": [ - "smoking" - ], - "tags": [ - "cigarette" - ] - }, - { - "emojiChar": "💣", - "emoji": "\uD83D\uDCA3", - "description": "bomb", - "aliases": [ - "bomb" - ], - "tags": [ - "boom" - ] - }, - { - "emojiChar": "🔫", - "emoji": "\uD83D\uDD2B", - "description": "pistol", - "aliases": [ - "gun" - ], - "tags": [ - "shoot", - "weapon" - ] - }, - { - "emojiChar": "🔪", - "emoji": "\uD83D\uDD2A", - "description": "hocho", - "aliases": [ - "hocho", - "knife" - ], - "tags": [ - "cut", - "chop" - ] - }, - { - "emojiChar": "💊", - "emoji": "\uD83D\uDC8A", - "description": "pill", - "aliases": [ - "pill" - ], - "tags": [ - "health", - "medicine" - ] - }, - { - "emojiChar": "💉", - "emoji": "\uD83D\uDC89", - "description": "syringe", - "aliases": [ - "syringe" - ], - "tags": [ - "health", - "hospital", - "needle" - ] - }, - { - "emojiChar": "💰", - "emoji": "\uD83D\uDCB0", - "description": "money bag", - "aliases": [ - "moneybag" - ], - "tags": [ - "dollar", - "cream" - ] - }, - { - "emojiChar": "💴", - "emoji": "\uD83D\uDCB4", - "description": "banknote with yen sign", - "aliases": [ - "yen" - ], - "tags": [] - }, - { - "emojiChar": "💵", - "emoji": "\uD83D\uDCB5", - "description": "banknote with dollar sign", - "aliases": [ - "dollar" - ], - "tags": [ - "money" - ] - }, - { - "emojiChar": "💷", - "emoji": "\uD83D\uDCB7", - "description": "banknote with pound sign", - "aliases": [ - "pound" - ], - "tags": [] - }, - { - "emojiChar": "💶", - "emoji": "\uD83D\uDCB6", - "description": "banknote with euro sign", - "aliases": [ - "euro" - ], - "tags": [] - }, - { - "emojiChar": "💳", - "emoji": "\uD83D\uDCB3", - "description": "credit card", - "aliases": [ - "credit_card" - ], - "tags": [ - "subscription" - ] - }, - { - "emojiChar": "💸", - "emoji": "\uD83D\uDCB8", - "description": "money with wings", - "aliases": [ - "money_with_wings" - ], - "tags": [ - "dollar" - ] - }, - { - "emojiChar": "📲", - "emoji": "\uD83D\uDCF2", - "description": "mobile phone with rightwards arrow at left", - "aliases": [ - "calling" - ], - "tags": [ - "call", - "incoming" - ] - }, - { - "emojiChar": "📧", - "emoji": "\uD83D\uDCE7", - "description": "e-mail symbol", - "aliases": [ - "e-mail" - ], - "tags": [] - }, - { - "emojiChar": "📥", - "emoji": "\uD83D\uDCE5", - "description": "inbox tray", - "aliases": [ - "inbox_tray" - ], - "tags": [] - }, - { - "emojiChar": "📤", - "emoji": "\uD83D\uDCE4", - "description": "outbox tray", - "aliases": [ - "outbox_tray" - ], - "tags": [] - }, - { - "emojiChar": "✉", - "emoji": "\u2709", - "description": "envelope", - "aliases": [ - "email", - "envelope" - ], - "tags": [ - "letter" - ] - }, - { - "emojiChar": "📩", - "emoji": "\uD83D\uDCE9", - "description": "envelope with downwards arrow above", - "aliases": [ - "envelope_with_arrow" - ], - "tags": [] - }, - { - "emojiChar": "📨", - "emoji": "\uD83D\uDCE8", - "description": "incoming envelope", - "aliases": [ - "incoming_envelope" - ], - "tags": [] - }, - { - "emojiChar": "📯", - "emoji": "\uD83D\uDCEF", - "description": "postal horn", - "aliases": [ - "postal_horn" - ], - "tags": [] - }, - { - "emojiChar": "📫", - "emoji": "\uD83D\uDCEB", - "description": "closed mailbox with raised flag", - "aliases": [ - "mailbox" - ], - "tags": [] - }, - { - "emojiChar": "📪", - "emoji": "\uD83D\uDCEA", - "description": "closed mailbox with lowered flag", - "aliases": [ - "mailbox_closed" - ], - "tags": [] - }, - { - "emojiChar": "📬", - "emoji": "\uD83D\uDCEC", - "description": "open mailbox with raised flag", - "aliases": [ - "mailbox_with_mail" - ], - "tags": [] - }, - { - "emojiChar": "📭", - "emoji": "\uD83D\uDCED", - "description": "open mailbox with lowered flag", - "aliases": [ - "mailbox_with_no_mail" - ], - "tags": [] - }, - { - "emojiChar": "📮", - "emoji": "\uD83D\uDCEE", - "description": "postbox", - "aliases": [ - "postbox" - ], - "tags": [] - }, - { - "emojiChar": "📦", - "emoji": "\uD83D\uDCE6", - "description": "package", - "aliases": [ - "package" - ], - "tags": [ - "shipping" - ] - }, - { - "emojiChar": "📝", - "emoji": "\uD83D\uDCDD", - "description": "memo", - "aliases": [ - "memo", - "pencil" - ], - "tags": [ - "document", - "note" - ] - }, - { - "emojiChar": "📄", - "emoji": "\uD83D\uDCC4", - "description": "page facing up", - "aliases": [ - "page_facing_up" - ], - "tags": [ - "document" - ] - }, - { - "emojiChar": "📃", - "emoji": "\uD83D\uDCC3", - "description": "page with curl", - "aliases": [ - "page_with_curl" - ], - "tags": [] - }, - { - "emojiChar": "📑", - "emoji": "\uD83D\uDCD1", - "description": "bookmark tabs", - "aliases": [ - "bookmark_tabs" - ], - "tags": [] - }, - { - "emojiChar": "📊", - "emoji": "\uD83D\uDCCA", - "description": "bar chart", - "aliases": [ - "bar_chart" - ], - "tags": [ - "stats", - "metrics" - ] - }, - { - "emojiChar": "📈", - "emoji": "\uD83D\uDCC8", - "description": "chart with upwards trend", - "aliases": [ - "chart_with_upwards_trend" - ], - "tags": [ - "graph", - "metrics" - ] - }, - { - "emojiChar": "📉", - "emoji": "\uD83D\uDCC9", - "description": "chart with downwards trend", - "aliases": [ - "chart_with_downwards_trend" - ], - "tags": [ - "graph", - "metrics" - ] - }, - { - "emojiChar": "📜", - "emoji": "\uD83D\uDCDC", - "description": "scroll", - "aliases": [ - "scroll" - ], - "tags": [ - "document" - ] - }, - { - "emojiChar": "📋", - "emoji": "\uD83D\uDCCB", - "description": "clipboard", - "aliases": [ - "clipboard" - ], - "tags": [] - }, - { - "emojiChar": "📅", - "emoji": "\uD83D\uDCC5", - "description": "calendar", - "aliases": [ - "date" - ], - "tags": [ - "calendar", - "schedule" - ] - }, - { - "emojiChar": "📆", - "emoji": "\uD83D\uDCC6", - "description": "tear-off calendar", - "aliases": [ - "calendar" - ], - "tags": [ - "schedule" - ] - }, - { - "emojiChar": "📇", - "emoji": "\uD83D\uDCC7", - "description": "card index", - "aliases": [ - "card_index" - ], - "tags": [] - }, - { - "emojiChar": "📁", - "emoji": "\uD83D\uDCC1", - "description": "file folder", - "aliases": [ - "file_folder" - ], - "tags": [ - "directory" - ] - }, - { - "emojiChar": "📂", - "emoji": "\uD83D\uDCC2", - "description": "open file folder", - "aliases": [ - "open_file_folder" - ], - "tags": [] - }, - { - "emojiChar": "✂", - "emoji": "\u2702", - "description": "black scissors", - "aliases": [ - "scissors" - ], - "tags": [ - "cut" - ] - }, - { - "emojiChar": "📌", - "emoji": "\uD83D\uDCCC", - "description": "pushpin", - "aliases": [ - "pushpin" - ], - "tags": [ - "location" - ] - }, - { - "emojiChar": "📎", - "emoji": "\uD83D\uDCCE", - "description": "paperclip", - "aliases": [ - "paperclip" - ], - "tags": [] - }, - { - "emojiChar": "✒", - "emoji": "\u2712", - "description": "black nib", - "aliases": [ - "black_nib" - ], - "tags": [] - }, - { - "emojiChar": "✏", - "emoji": "\u270F", - "description": "pencil", - "aliases": [ - "pencil2" - ], - "tags": [] - }, - { - "emojiChar": "📏", - "emoji": "\uD83D\uDCCF", - "description": "straight ruler", - "aliases": [ - "straight_ruler" - ], - "tags": [] - }, - { - "emojiChar": "📐", - "emoji": "\uD83D\uDCD0", - "description": "triangular ruler", - "aliases": [ - "triangular_ruler" - ], - "tags": [] - }, - { - "emojiChar": "📕", - "emoji": "\uD83D\uDCD5", - "description": "closed book", - "aliases": [ - "closed_book" - ], - "tags": [] - }, - { - "emojiChar": "📗", - "emoji": "\uD83D\uDCD7", - "description": "green book", - "aliases": [ - "green_book" - ], - "tags": [] - }, - { - "emojiChar": "📘", - "emoji": "\uD83D\uDCD8", - "description": "blue book", - "aliases": [ - "blue_book" - ], - "tags": [] - }, - { - "emojiChar": "📙", - "emoji": "\uD83D\uDCD9", - "description": "orange book", - "aliases": [ - "orange_book" - ], - "tags": [] - }, - { - "emojiChar": "📓", - "emoji": "\uD83D\uDCD3", - "description": "notebook", - "aliases": [ - "notebook" - ], - "tags": [] - }, - { - "emojiChar": "📔", - "emoji": "\uD83D\uDCD4", - "description": "notebook with decorative cover", - "aliases": [ - "notebook_with_decorative_cover" - ], - "tags": [] - }, - { - "emojiChar": "📒", - "emoji": "\uD83D\uDCD2", - "description": "ledger", - "aliases": [ - "ledger" - ], - "tags": [] - }, - { - "emojiChar": "📚", - "emoji": "\uD83D\uDCDA", - "description": "books", - "aliases": [ - "books" - ], - "tags": [ - "library" - ] - }, - { - "emojiChar": "📖", - "emoji": "\uD83D\uDCD6", - "description": "open book", - "aliases": [ - "book", - "open_book" - ], - "tags": [] - }, - { - "emojiChar": "🔖", - "emoji": "\uD83D\uDD16", - "description": "bookmark", - "aliases": [ - "bookmark" - ], - "tags": [] - }, - { - "emojiChar": "📛", - "emoji": "\uD83D\uDCDB", - "description": "name badge", - "aliases": [ - "name_badge" - ], - "tags": [] - }, - { - "emojiChar": "🔬", - "emoji": "\uD83D\uDD2C", - "description": "microscope", - "aliases": [ - "microscope" - ], - "tags": [ - "science", - "laboratory", - "investigate" - ] - }, - { - "emojiChar": "🔭", - "emoji": "\uD83D\uDD2D", - "description": "telescope", - "aliases": [ - "telescope" - ], - "tags": [] - }, - { - "emojiChar": "📰", - "emoji": "\uD83D\uDCF0", - "description": "newspaper", - "aliases": [ - "newspaper" - ], - "tags": [ - "press" - ] - }, - { - "emojiChar": "🎨", - "emoji": "\uD83C\uDFA8", - "description": "artist palette", - "aliases": [ - "art" - ], - "tags": [ - "design", - "paint" - ] - }, - { - "emojiChar": "🎬", - "emoji": "\uD83C\uDFAC", - "description": "clapper board", - "aliases": [ - "clapper" - ], - "tags": [ - "film" - ] - }, - { - "emojiChar": "🎤", - "emoji": "\uD83C\uDFA4", - "description": "microphone", - "aliases": [ - "microphone" - ], - "tags": [ - "sing" - ] - }, - { - "emojiChar": "🎧", - "emoji": "\uD83C\uDFA7", - "description": "headphone", - "aliases": [ - "headphones" - ], - "tags": [ - "music", - "earphones" - ] - }, - { - "emojiChar": "🎼", - "emoji": "\uD83C\uDFBC", - "description": "musical score", - "aliases": [ - "musical_score" - ], - "tags": [] - }, - { - "emojiChar": "🎵", - "emoji": "\uD83C\uDFB5", - "description": "musical note", - "aliases": [ - "musical_note" - ], - "tags": [] - }, - { - "emojiChar": "🎶", - "emoji": "\uD83C\uDFB6", - "description": "multiple musical notes", - "aliases": [ - "notes" - ], - "tags": [ - "music" - ] - }, - { - "emojiChar": "🎹", - "emoji": "\uD83C\uDFB9", - "description": "musical keyboard", - "aliases": [ - "musical_keyboard" - ], - "tags": [ - "piano" - ] - }, - { - "emojiChar": "🎻", - "emoji": "\uD83C\uDFBB", - "description": "violin", - "aliases": [ - "violin" - ], - "tags": [] - }, - { - "emojiChar": "🎺", - "emoji": "\uD83C\uDFBA", - "description": "trumpet", - "aliases": [ - "trumpet" - ], - "tags": [] - }, - { - "emojiChar": "🎷", - "emoji": "\uD83C\uDFB7", - "description": "saxophone", - "aliases": [ - "saxophone" - ], - "tags": [] - }, - { - "emojiChar": "🎸", - "emoji": "\uD83C\uDFB8", - "description": "guitar", - "aliases": [ - "guitar" - ], - "tags": [ - "rock" - ] - }, - { - "emojiChar": "👾", - "emoji": "\uD83D\uDC7E", - "description": "alien monster", - "aliases": [ - "space_invader" - ], - "tags": [ - "game", - "retro" - ] - }, - { - "emojiChar": "🎮", - "emoji": "\uD83C\uDFAE", - "description": "video game", - "aliases": [ - "video_game" - ], - "tags": [ - "play", - "controller", - "console" - ] - }, - { - "emojiChar": "🃏", - "emoji": "\uD83C\uDCCF", - "description": "playing card black joker", - "aliases": [ - "black_joker" - ], - "tags": [] - }, - { - "emojiChar": "🎴", - "emoji": "\uD83C\uDFB4", - "description": "flower playing cards", - "aliases": [ - "flower_playing_cards" - ], - "tags": [] - }, - { - "emojiChar": "🀄", - "emoji": "\uD83C\uDC04", - "description": "mahjong tile red dragon", - "aliases": [ - "mahjong" - ], - "tags": [] - }, - { - "emojiChar": "🎲", - "emoji": "\uD83C\uDFB2", - "description": "game die", - "aliases": [ - "game_die" - ], - "tags": [ - "dice", - "gambling" - ] - }, - { - "emojiChar": "🎯", - "emoji": "\uD83C\uDFAF", - "description": "direct hit", - "aliases": [ - "dart" - ], - "tags": [ - "target" - ] - }, - { - "emojiChar": "🏈", - "emoji": "\uD83C\uDFC8", - "description": "american football", - "aliases": [ - "football" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "🏀", - "emoji": "\uD83C\uDFC0", - "description": "basketball and hoop", - "aliases": [ - "basketball" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "⚽", - "emoji": "\u26BD", - "description": "soccer ball", - "aliases": [ - "soccer" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "⚾", - "emoji": "\u26BE", - "description": "baseball", - "aliases": [ - "baseball" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "🎾", - "emoji": "\uD83C\uDFBE", - "description": "tennis racquet and ball", - "aliases": [ - "tennis" - ], - "tags": [ - "sports" - ] - }, - { - "emojiChar": "🎱", - "emoji": "\uD83C\uDFB1", - "description": "billiards", - "aliases": [ - "8ball" - ], - "tags": [ - "pool", - "billiards" - ] - }, - { - "emojiChar": "🏉", - "emoji": "\uD83C\uDFC9", - "description": "rugby football", - "aliases": [ - "rugby_football" - ], - "tags": [] - }, - { - "emojiChar": "🎳", - "emoji": "\uD83C\uDFB3", - "description": "bowling", - "aliases": [ - "bowling" - ], - "tags": [] - }, - { - "emojiChar": "⛳", - "emoji": "\u26F3", - "description": "flag in hole", - "aliases": [ - "golf" - ], - "tags": [] - }, - { - "emojiChar": "🚵", - "emoji": "\uD83D\uDEB5", - "description": "mountain bicyclist", - "supports_fitzpatrick": true, - "aliases": [ - "mountain_bicyclist" - ], - "tags": [] - }, - { - "emojiChar": "🚴", - "emoji": "\uD83D\uDEB4", - "description": "bicyclist", - "supports_fitzpatrick": true, - "aliases": [ - "bicyclist" - ], - "tags": [] - }, - { - "emojiChar": "🏁", - "emoji": "\uD83C\uDFC1", - "description": "chequered flag", - "aliases": [ - "checkered_flag" - ], - "tags": [ - "milestone", - "finish" - ] - }, - { - "emojiChar": "🏇", - "emoji": "\uD83C\uDFC7", - "description": "horse racing", - "supports_fitzpatrick": true, - "aliases": [ - "horse_racing" - ], - "tags": [] - }, - { - "emojiChar": "🏆", - "emoji": "\uD83C\uDFC6", - "description": "trophy", - "aliases": [ - "trophy" - ], - "tags": [ - "award", - "contest", - "winner" - ] - }, - { - "emojiChar": "🎿", - "emoji": "\uD83C\uDFBF", - "description": "ski and ski boot", - "aliases": [ - "ski" - ], - "tags": [] - }, - { - "emojiChar": "🏂", - "emoji": "\uD83C\uDFC2", - "description": "snowboarder", - "supports_fitzpatrick": true, - "aliases": [ - "snowboarder" - ], - "tags": [] - }, - { - "emojiChar": "🏊", - "emoji": "\uD83C\uDFCA", - "description": "swimmer", - "supports_fitzpatrick": true, - "aliases": [ - "swimmer" - ], - "tags": [] - }, - { - "emojiChar": "🏄", - "emoji": "\uD83C\uDFC4", - "description": "surfer", - "supports_fitzpatrick": true, - "aliases": [ - "surfer" - ], - "tags": [] - }, - { - "emojiChar": "🎣", - "emoji": "\uD83C\uDFA3", - "description": "fishing pole and fish", - "aliases": [ - "fishing_pole_and_fish" - ], - "tags": [] - }, - { - "emojiChar": "☕", - "emoji": "\u2615", - "description": "hot beverage", - "aliases": [ - "coffee" - ], - "tags": [ - "cafe", - "espresso" - ] - }, - { - "emojiChar": "🍵", - "emoji": "\uD83C\uDF75", - "description": "teacup without handle", - "aliases": [ - "tea" - ], - "tags": [ - "green", - "breakfast" - ] - }, - { - "emojiChar": "🍶", - "emoji": "\uD83C\uDF76", - "description": "sake bottle and cup", - "aliases": [ - "sake" - ], - "tags": [] - }, - { - "emojiChar": "🍼", - "emoji": "\uD83C\uDF7C", - "description": "baby bottle", - "aliases": [ - "baby_bottle" - ], - "tags": [ - "milk" - ] - }, - { - "emojiChar": "🍺", - "emoji": "\uD83C\uDF7A", - "description": "beer mug", - "aliases": [ - "beer" - ], - "tags": [ - "drink" - ] - }, - { - "emojiChar": "🍻", - "emoji": "\uD83C\uDF7B", - "description": "clinking beer mugs", - "aliases": [ - "beers" - ], - "tags": [ - "drinks" - ] - }, - { - "emojiChar": "🍸", - "emoji": "\uD83C\uDF78", - "description": "cocktail glass", - "aliases": [ - "cocktail" - ], - "tags": [ - "drink" - ] - }, - { - "emojiChar": "🍹", - "emoji": "\uD83C\uDF79", - "description": "tropical drink", - "aliases": [ - "tropical_drink" - ], - "tags": [ - "summer", - "vacation" - ] - }, - { - "emojiChar": "🍷", - "emoji": "\uD83C\uDF77", - "description": "wine glass", - "aliases": [ - "wine_glass" - ], - "tags": [] - }, - { - "emojiChar": "🍴", - "emoji": "\uD83C\uDF74", - "description": "fork and knife", - "aliases": [ - "fork_and_knife" - ], - "tags": [ - "cutlery" - ] - }, - { - "emojiChar": "🍕", - "emoji": "\uD83C\uDF55", - "description": "slice of pizza", - "aliases": [ - "pizza" - ], - "tags": [] - }, - { - "emojiChar": "🍔", - "emoji": "\uD83C\uDF54", - "description": "hamburger", - "aliases": [ - "hamburger" - ], - "tags": [ - "burger" - ] - }, - { - "emojiChar": "🍟", - "emoji": "\uD83C\uDF5F", - "description": "french fries", - "aliases": [ - "fries" - ], - "tags": [] - }, - { - "emojiChar": "🍗", - "emoji": "\uD83C\uDF57", - "description": "poultry leg", - "aliases": [ - "poultry_leg" - ], - "tags": [ - "meat", - "chicken" - ] - }, - { - "emojiChar": "🍖", - "emoji": "\uD83C\uDF56", - "description": "meat on bone", - "aliases": [ - "meat_on_bone" - ], - "tags": [] - }, - { - "emojiChar": "🍝", - "emoji": "\uD83C\uDF5D", - "description": "spaghetti", - "aliases": [ - "spaghetti" - ], - "tags": [ - "pasta" - ] - }, - { - "emojiChar": "🍛", - "emoji": "\uD83C\uDF5B", - "description": "curry and rice", - "aliases": [ - "curry" - ], - "tags": [] - }, - { - "emojiChar": "🍤", - "emoji": "\uD83C\uDF64", - "description": "fried shrimp", - "aliases": [ - "fried_shrimp" - ], - "tags": [ - "tempura" - ] - }, - { - "emojiChar": "🍱", - "emoji": "\uD83C\uDF71", - "description": "bento box", - "aliases": [ - "bento" - ], - "tags": [] - }, - { - "emojiChar": "🍣", - "emoji": "\uD83C\uDF63", - "description": "sushi", - "aliases": [ - "sushi" - ], - "tags": [] - }, - { - "emojiChar": "🍥", - "emoji": "\uD83C\uDF65", - "description": "fish cake with swirl design", - "aliases": [ - "fish_cake" - ], - "tags": [] - }, - { - "emojiChar": "🍙", - "emoji": "\uD83C\uDF59", - "description": "rice ball", - "aliases": [ - "rice_ball" - ], - "tags": [] - }, - { - "emojiChar": "🍘", - "emoji": "\uD83C\uDF58", - "description": "rice cracker", - "aliases": [ - "rice_cracker" - ], - "tags": [] - }, - { - "emojiChar": "🍚", - "emoji": "\uD83C\uDF5A", - "description": "cooked rice", - "aliases": [ - "rice" - ], - "tags": [] - }, - { - "emojiChar": "🍜", - "emoji": "\uD83C\uDF5C", - "description": "steaming bowl", - "aliases": [ - "ramen" - ], - "tags": [ - "noodle" - ] - }, - { - "emojiChar": "🍲", - "emoji": "\uD83C\uDF72", - "description": "pot of food", - "aliases": [ - "stew" - ], - "tags": [] - }, - { - "emojiChar": "🍢", - "emoji": "\uD83C\uDF62", - "description": "oden", - "aliases": [ - "oden" - ], - "tags": [] - }, - { - "emojiChar": "🍡", - "emoji": "\uD83C\uDF61", - "description": "dango", - "aliases": [ - "dango" - ], - "tags": [] - }, - { - "emojiChar": "🍳", - "emoji": "\uD83C\uDF73", - "description": "cooking", - "aliases": [ - "cooking" - ], - "tags": [ - "breakfast" - ] - }, - { - "emojiChar": "🍞", - "emoji": "\uD83C\uDF5E", - "description": "bread", - "aliases": [ - "bread" - ], - "tags": [ - "toast" - ] - }, - { - "emojiChar": "🍩", - "emoji": "\uD83C\uDF69", - "description": "doughnut", - "aliases": [ - "doughnut" - ], - "tags": [] - }, - { - "emojiChar": "🍮", - "emoji": "\uD83C\uDF6E", - "description": "custard", - "aliases": [ - "custard" - ], - "tags": [] - }, - { - "emojiChar": "🍦", - "emoji": "\uD83C\uDF66", - "description": "soft ice cream", - "aliases": [ - "icecream" - ], - "tags": [] - }, - { - "emojiChar": "🍨", - "emoji": "\uD83C\uDF68", - "description": "ice cream", - "aliases": [ - "ice_cream" - ], - "tags": [] - }, - { - "emojiChar": "🍧", - "emoji": "\uD83C\uDF67", - "description": "shaved ice", - "aliases": [ - "shaved_ice" - ], - "tags": [] - }, - { - "emojiChar": "🎂", - "emoji": "\uD83C\uDF82", - "description": "birthday cake", - "aliases": [ - "birthday" - ], - "tags": [ - "party" - ] - }, - { - "emojiChar": "🍰", - "emoji": "\uD83C\uDF70", - "description": "shortcake", - "aliases": [ - "cake" - ], - "tags": [ - "dessert" - ] - }, - { - "emojiChar": "🍪", - "emoji": "\uD83C\uDF6A", - "description": "cookie", - "aliases": [ - "cookie" - ], - "tags": [] - }, - { - "emojiChar": "🍫", - "emoji": "\uD83C\uDF6B", - "description": "chocolate bar", - "aliases": [ - "chocolate_bar" - ], - "tags": [] - }, - { - "emojiChar": "🍬", - "emoji": "\uD83C\uDF6C", - "description": "candy", - "aliases": [ - "candy" - ], - "tags": [ - "sweet" - ] - }, - { - "emojiChar": "🍭", - "emoji": "\uD83C\uDF6D", - "description": "lollipop", - "aliases": [ - "lollipop" - ], - "tags": [] - }, - { - "emojiChar": "🍯", - "emoji": "\uD83C\uDF6F", - "description": "honey pot", - "aliases": [ - "honey_pot" - ], - "tags": [] - }, - { - "emojiChar": "🍎", - "emoji": "\uD83C\uDF4E", - "description": "red apple", - "aliases": [ - "apple" - ], - "tags": [] - }, - { - "emojiChar": "🍏", - "emoji": "\uD83C\uDF4F", - "description": "green apple", - "aliases": [ - "green_apple" - ], - "tags": [ - "fruit" - ] - }, - { - "emojiChar": "🍊", - "emoji": "\uD83C\uDF4A", - "description": "tangerine", - "aliases": [ - "tangerine" - ], - "tags": [] - }, - { - "emojiChar": "🍋", - "emoji": "\uD83C\uDF4B", - "description": "lemon", - "aliases": [ - "lemon" - ], - "tags": [] - }, - { - "emojiChar": "🍒", - "emoji": "\uD83C\uDF52", - "description": "cherries", - "aliases": [ - "cherries" - ], - "tags": [ - "fruit" - ] - }, - { - "emojiChar": "🍇", - "emoji": "\uD83C\uDF47", - "description": "grapes", - "aliases": [ - "grapes" - ], - "tags": [] - }, - { - "emojiChar": "🍉", - "emoji": "\uD83C\uDF49", - "description": "watermelon", - "aliases": [ - "watermelon" - ], - "tags": [] - }, - { - "emojiChar": "🍓", - "emoji": "\uD83C\uDF53", - "description": "strawberry", - "aliases": [ - "strawberry" - ], - "tags": [ - "fruit" - ] - }, - { - "emojiChar": "🍑", - "emoji": "\uD83C\uDF51", - "description": "peach", - "aliases": [ - "peach" - ], - "tags": [] - }, - { - "emojiChar": "🍈", - "emoji": "\uD83C\uDF48", - "description": "melon", - "aliases": [ - "melon" - ], - "tags": [] - }, - { - "emojiChar": "🍌", - "emoji": "\uD83C\uDF4C", - "description": "banana", - "aliases": [ - "banana" - ], - "tags": [ - "fruit" - ] - }, - { - "emojiChar": "🍐", - "emoji": "\uD83C\uDF50", - "description": "pear", - "aliases": [ - "pear" - ], - "tags": [] - }, - { - "emojiChar": "🍍", - "emoji": "\uD83C\uDF4D", - "description": "pineapple", - "aliases": [ - "pineapple" - ], - "tags": [] - }, - { - "emojiChar": "🍠", - "emoji": "\uD83C\uDF60", - "description": "roasted sweet potato", - "aliases": [ - "sweet_potato" - ], - "tags": [] - }, - { - "emojiChar": "🍆", - "emoji": "\uD83C\uDF46", - "description": "aubergine", - "aliases": [ - "eggplant" - ], - "tags": [ - "aubergine" - ] - }, - { - "emojiChar": "🍅", - "emoji": "\uD83C\uDF45", - "description": "tomato", - "aliases": [ - "tomato" - ], - "tags": [] - }, - { - "emojiChar": "🌽", - "emoji": "\uD83C\uDF3D", - "description": "ear of maize", - "aliases": [ - "corn" - ], - "tags": [] - }, - { - "emojiChar": "🏠", - "emoji": "\uD83C\uDFE0", - "description": "house building", - "aliases": [ - "house" - ], - "tags": [] - }, - { - "emojiChar": "🏡", - "emoji": "\uD83C\uDFE1", - "description": "house with garden", - "aliases": [ - "house_with_garden" - ], - "tags": [] - }, - { - "emojiChar": "🏫", - "emoji": "\uD83C\uDFEB", - "description": "school", - "aliases": [ - "school" - ], - "tags": [] - }, - { - "emojiChar": "🏢", - "emoji": "\uD83C\uDFE2", - "description": "office building", - "aliases": [ - "office" - ], - "tags": [] - }, - { - "emojiChar": "🏣", - "emoji": "\uD83C\uDFE3", - "description": "japanese post office", - "aliases": [ - "post_office" - ], - "tags": [] - }, - { - "emojiChar": "🏥", - "emoji": "\uD83C\uDFE5", - "description": "hospital", - "aliases": [ - "hospital" - ], - "tags": [] - }, - { - "emojiChar": "🏦", - "emoji": "\uD83C\uDFE6", - "description": "bank", - "aliases": [ - "bank" - ], - "tags": [] - }, - { - "emojiChar": "🏪", - "emoji": "\uD83C\uDFEA", - "description": "convenience store", - "aliases": [ - "convenience_store" - ], - "tags": [] - }, - { - "emojiChar": "🏩", - "emoji": "\uD83C\uDFE9", - "description": "love hotel", - "aliases": [ - "love_hotel" - ], - "tags": [] - }, - { - "emojiChar": "🏨", - "emoji": "\uD83C\uDFE8", - "description": "hotel", - "aliases": [ - "hotel" - ], - "tags": [] - }, - { - "emojiChar": "💒", - "emoji": "\uD83D\uDC92", - "description": "wedding", - "aliases": [ - "wedding" - ], - "tags": [ - "marriage" - ] - }, - { - "emojiChar": "⛪", - "emoji": "\u26EA", - "description": "church", - "aliases": [ - "church" - ], - "tags": [] - }, - { - "emojiChar": "🏬", - "emoji": "\uD83C\uDFEC", - "description": "department store", - "aliases": [ - "department_store" - ], - "tags": [] - }, - { - "emojiChar": "🏤", - "emoji": "\uD83C\uDFE4", - "description": "european post office", - "aliases": [ - "european_post_office" - ], - "tags": [] - }, - { - "emojiChar": "🌇", - "emoji": "\uD83C\uDF07", - "description": "sunset over buildings", - "aliases": [ - "city_sunrise" - ], - "tags": [] - }, - { - "emojiChar": "🌆", - "emoji": "\uD83C\uDF06", - "description": "cityscape at dusk", - "aliases": [ - "city_sunset" - ], - "tags": [] - }, - { - "emojiChar": "🏯", - "emoji": "\uD83C\uDFEF", - "description": "japanese castle", - "aliases": [ - "japanese_castle" - ], - "tags": [] - }, - { - "emojiChar": "🏰", - "emoji": "\uD83C\uDFF0", - "description": "european castle", - "aliases": [ - "european_castle" - ], - "tags": [] - }, - { - "emojiChar": "⛺", - "emoji": "\u26FA", - "description": "tent", - "aliases": [ - "tent" - ], - "tags": [ - "camping" - ] - }, - { - "emojiChar": "🏭", - "emoji": "\uD83C\uDFED", - "description": "factory", - "aliases": [ - "factory" - ], - "tags": [] - }, - { - "emojiChar": "🗼", - "emoji": "\uD83D\uDDFC", - "description": "tokyo tower", - "aliases": [ - "tokyo_tower" - ], - "tags": [] - }, - { - "emojiChar": "🗾", - "emoji": "\uD83D\uDDFE", - "description": "silhouette of japan", - "aliases": [ - "japan" - ], - "tags": [] - }, - { - "emojiChar": "🗻", - "emoji": "\uD83D\uDDFB", - "description": "mount fuji", - "aliases": [ - "mount_fuji" - ], - "tags": [] - }, - { - "emojiChar": "🌄", - "emoji": "\uD83C\uDF04", - "description": "sunrise over mountains", - "aliases": [ - "sunrise_over_mountains" - ], - "tags": [] - }, - { - "emojiChar": "🌅", - "emoji": "\uD83C\uDF05", - "description": "sunrise", - "aliases": [ - "sunrise" - ], - "tags": [] - }, - { - "emojiChar": "🌃", - "emoji": "\uD83C\uDF03", - "description": "night with stars", - "aliases": [ - "night_with_stars" - ], - "tags": [] - }, - { - "emojiChar": "🗽", - "emoji": "\uD83D\uDDFD", - "description": "statue of liberty", - "aliases": [ - "statue_of_liberty" - ], - "tags": [] - }, - { - "emojiChar": "🌉", - "emoji": "\uD83C\uDF09", - "description": "bridge at night", - "aliases": [ - "bridge_at_night" - ], - "tags": [] - }, - { - "emojiChar": "🎠", - "emoji": "\uD83C\uDFA0", - "description": "carousel horse", - "aliases": [ - "carousel_horse" - ], - "tags": [] - }, - { - "emojiChar": "🎡", - "emoji": "\uD83C\uDFA1", - "description": "ferris wheel", - "aliases": [ - "ferris_wheel" - ], - "tags": [] - }, - { - "emojiChar": "⛲", - "emoji": "\u26F2", - "description": "fountain", - "aliases": [ - "fountain" - ], - "tags": [] - }, - { - "emojiChar": "🎢", - "emoji": "\uD83C\uDFA2", - "description": "roller coaster", - "aliases": [ - "roller_coaster" - ], - "tags": [] - }, - { - "emojiChar": "🚢", - "emoji": "\uD83D\uDEA2", - "description": "ship", - "aliases": [ - "ship" - ], - "tags": [] - }, - { - "emojiChar": "⛵", - "emoji": "\u26F5", - "description": "sailboat", - "aliases": [ - "boat", - "sailboat" - ], - "tags": [] - }, - { - "emojiChar": "🚤", - "emoji": "\uD83D\uDEA4", - "description": "speedboat", - "aliases": [ - "speedboat" - ], - "tags": [ - "ship" - ] - }, - { - "emojiChar": "🚣", - "emoji": "\uD83D\uDEA3", - "description": "rowboat", - "supports_fitzpatrick": true, - "aliases": [ - "rowboat" - ], - "tags": [] - }, - { - "emojiChar": "⚓", - "emoji": "\u2693", - "description": "anchor", - "aliases": [ - "anchor" - ], - "tags": [ - "ship" - ] - }, - { - "emojiChar": "🚀", - "emoji": "\uD83D\uDE80", - "description": "rocket", - "aliases": [ - "rocket" - ], - "tags": [ - "ship", - "launch" - ] - }, - { - "emojiChar": "✈", - "emoji": "\u2708", - "description": "airplane", - "aliases": [ - "airplane" - ], - "tags": [ - "flight" - ] - }, - { - "emojiChar": "💺", - "emoji": "\uD83D\uDCBA", - "description": "seat", - "aliases": [ - "seat" - ], - "tags": [] - }, - { - "emojiChar": "🚁", - "emoji": "\uD83D\uDE81", - "description": "helicopter", - "aliases": [ - "helicopter" - ], - "tags": [] - }, - { - "emojiChar": "🚂", - "emoji": "\uD83D\uDE82", - "description": "steam locomotive", - "aliases": [ - "steam_locomotive" - ], - "tags": [ - "train" - ] - }, - { - "emojiChar": "🚊", - "emoji": "\uD83D\uDE8A", - "description": "tram", - "aliases": [ - "tram" - ], - "tags": [] - }, - { - "emojiChar": "🚉", - "emoji": "\uD83D\uDE89", - "description": "station", - "aliases": [ - "station" - ], - "tags": [] - }, - { - "emojiChar": "🚞", - "emoji": "\uD83D\uDE9E", - "description": "mountain railway", - "aliases": [ - "mountain_railway" - ], - "tags": [] - }, - { - "emojiChar": "🚆", - "emoji": "\uD83D\uDE86", - "description": "train", - "aliases": [ - "train2" - ], - "tags": [] - }, - { - "emojiChar": "🚄", - "emoji": "\uD83D\uDE84", - "description": "high-speed train", - "aliases": [ - "bullettrain_side" - ], - "tags": [ - "train" - ] - }, - { - "emojiChar": "🚅", - "emoji": "\uD83D\uDE85", - "description": "high-speed train with bullet nose", - "aliases": [ - "bullettrain_front" - ], - "tags": [ - "train" - ] - }, - { - "emojiChar": "🚈", - "emoji": "\uD83D\uDE88", - "description": "light rail", - "aliases": [ - "light_rail" - ], - "tags": [] - }, - { - "emojiChar": "🚇", - "emoji": "\uD83D\uDE87", - "description": "metro", - "aliases": [ - "metro" - ], - "tags": [] - }, - { - "emojiChar": "🚝", - "emoji": "\uD83D\uDE9D", - "description": "monorail", - "aliases": [ - "monorail" - ], - "tags": [] - }, - { - "emojiChar": "🚋", - "emoji": "\uD83D\uDE8B", - "description": "tram car", - "aliases": [ - "train" - ], - "tags": [] - }, - { - "emojiChar": "🚃", - "emoji": "\uD83D\uDE83", - "description": "railway car", - "aliases": [ - "railway_car" - ], - "tags": [] - }, - { - "emojiChar": "🚎", - "emoji": "\uD83D\uDE8E", - "description": "trolleybus", - "aliases": [ - "trolleybus" - ], - "tags": [] - }, - { - "emojiChar": "🚌", - "emoji": "\uD83D\uDE8C", - "description": "bus", - "aliases": [ - "bus" - ], - "tags": [] - }, - { - "emojiChar": "🚍", - "emoji": "\uD83D\uDE8D", - "description": "oncoming bus", - "aliases": [ - "oncoming_bus" - ], - "tags": [] - }, - { - "emojiChar": "🚙", - "emoji": "\uD83D\uDE99", - "description": "recreational vehicle", - "aliases": [ - "blue_car" - ], - "tags": [] - }, - { - "emojiChar": "🚘", - "emoji": "\uD83D\uDE98", - "description": "oncoming automobile", - "aliases": [ - "oncoming_automobile" - ], - "tags": [] - }, - { - "emojiChar": "🚗", - "emoji": "\uD83D\uDE97", - "description": "automobile", - "aliases": [ - "car", - "red_car" - ], - "tags": [] - }, - { - "emojiChar": "🚕", - "emoji": "\uD83D\uDE95", - "description": "taxi", - "aliases": [ - "taxi" - ], - "tags": [] - }, - { - "emojiChar": "🚖", - "emoji": "\uD83D\uDE96", - "description": "oncoming taxi", - "aliases": [ - "oncoming_taxi" - ], - "tags": [] - }, - { - "emojiChar": "🚛", - "emoji": "\uD83D\uDE9B", - "description": "articulated lorry", - "aliases": [ - "articulated_lorry" - ], - "tags": [] - }, - { - "emojiChar": "🚚", - "emoji": "\uD83D\uDE9A", - "description": "delivery truck", - "aliases": [ - "truck" - ], - "tags": [] - }, - { - "emojiChar": "🚨", - "emoji": "\uD83D\uDEA8", - "description": "police cars revolving light", - "aliases": [ - "rotating_light" - ], - "tags": [ - "911", - "emergency" - ] - }, - { - "emojiChar": "🚓", - "emoji": "\uD83D\uDE93", - "description": "police car", - "aliases": [ - "police_car" - ], - "tags": [] - }, - { - "emojiChar": "🚔", - "emoji": "\uD83D\uDE94", - "description": "oncoming police car", - "aliases": [ - "oncoming_police_car" - ], - "tags": [] - }, - { - "emojiChar": "🚒", - "emoji": "\uD83D\uDE92", - "description": "fire engine", - "aliases": [ - "fire_engine" - ], - "tags": [] - }, - { - "emojiChar": "🚑", - "emoji": "\uD83D\uDE91", - "description": "ambulance", - "aliases": [ - "ambulance" - ], - "tags": [] - }, - { - "emojiChar": "🚐", - "emoji": "\uD83D\uDE90", - "description": "minibus", - "aliases": [ - "minibus" - ], - "tags": [] - }, - { - "emojiChar": "🚲", - "emoji": "\uD83D\uDEB2", - "description": "bicycle", - "aliases": [ - "bike" - ], - "tags": [ - "bicycle" - ] - }, - { - "emojiChar": "🚡", - "emoji": "\uD83D\uDEA1", - "description": "aerial tramway", - "aliases": [ - "aerial_tramway" - ], - "tags": [] - }, - { - "emojiChar": "🚟", - "emoji": "\uD83D\uDE9F", - "description": "suspension railway", - "aliases": [ - "suspension_railway" - ], - "tags": [] - }, - { - "emojiChar": "🚠", - "emoji": "\uD83D\uDEA0", - "description": "mountain cableway", - "aliases": [ - "mountain_cableway" - ], - "tags": [] - }, - { - "emojiChar": "🚜", - "emoji": "\uD83D\uDE9C", - "description": "tractor", - "aliases": [ - "tractor" - ], - "tags": [] - }, - { - "emojiChar": "💈", - "emoji": "\uD83D\uDC88", - "description": "barber pole", - "aliases": [ - "barber" - ], - "tags": [] - }, - { - "emojiChar": "🚏", - "emoji": "\uD83D\uDE8F", - "description": "bus stop", - "aliases": [ - "busstop" - ], - "tags": [] - }, - { - "emojiChar": "🎫", - "emoji": "\uD83C\uDFAB", - "description": "ticket", - "aliases": [ - "ticket" - ], - "tags": [] - }, - { - "emojiChar": "🚦", - "emoji": "\uD83D\uDEA6", - "description": "vertical traffic light", - "aliases": [ - "vertical_traffic_light" - ], - "tags": [ - "semaphore" - ] - }, - { - "emojiChar": "🚥", - "emoji": "\uD83D\uDEA5", - "description": "horizontal traffic light", - "aliases": [ - "traffic_light" - ], - "tags": [] - }, - { - "emojiChar": "⚠", - "emoji": "\u26A0", - "description": "warning sign", - "aliases": [ - "warning" - ], - "tags": [ - "wip" - ] - }, - { - "emojiChar": "🚧", - "emoji": "\uD83D\uDEA7", - "description": "construction sign", - "aliases": [ - "construction" - ], - "tags": [ - "wip" - ] - }, - { - "emojiChar": "🔰", - "emoji": "\uD83D\uDD30", - "description": "japanese symbol for beginner", - "aliases": [ - "beginner" - ], - "tags": [] - }, - { - "emojiChar": "⛽", - "emoji": "\u26FD", - "description": "fuel pump", - "aliases": [ - "fuelpump" - ], - "tags": [] - }, - { - "emojiChar": "🏮", - "emoji": "\uD83C\uDFEE", - "description": "izakaya lantern", - "aliases": [ - "izakaya_lantern", - "lantern" - ], - "tags": [] - }, - { - "emojiChar": "🎰", - "emoji": "\uD83C\uDFB0", - "description": "slot machine", - "aliases": [ - "slot_machine" - ], - "tags": [] - }, - { - "emojiChar": "♨", - "emoji": "\u2668", - "description": "hot springs", - "aliases": [ - "hotsprings" - ], - "tags": [] - }, - { - "emojiChar": "🗿", - "emoji": "\uD83D\uDDFF", - "description": "moyai", - "aliases": [ - "moyai" - ], - "tags": [ - "stone" - ] - }, - { - "emojiChar": "🎪", - "emoji": "\uD83C\uDFAA", - "description": "circus tent", - "aliases": [ - "circus_tent" - ], - "tags": [] - }, - { - "emojiChar": "🎭", - "emoji": "\uD83C\uDFAD", - "description": "performing arts", - "aliases": [ - "performing_arts" - ], - "tags": [ - "theater", - "drama" - ] - }, - { - "emojiChar": "📍", - "emoji": "\uD83D\uDCCD", - "description": "round pushpin", - "aliases": [ - "round_pushpin" - ], - "tags": [ - "location" - ] - }, - { - "emojiChar": "🚩", - "emoji": "\uD83D\uDEA9", - "description": "triangular flag on post", - "aliases": [ - "triangular_flag_on_post" - ], - "tags": [] - }, - { - "emojiChar": "1⃣", - "emoji": "1\u20E3", - "description": "digit one + combining enclosing keycap", - "aliases": [ - "one" - ], - "tags": [] - }, - { - "emojiChar": "2⃣", - "emoji": "2\u20E3", - "description": "digit two + combining enclosing keycap", - "aliases": [ - "two" - ], - "tags": [] - }, - { - "emojiChar": "3⃣", - "emoji": "3\u20E3", - "description": "digit three + combining enclosing keycap", - "aliases": [ - "three" - ], - "tags": [] - }, - { - "emojiChar": "4⃣", - "emoji": "4\u20E3", - "description": "digit four + combining enclosing keycap", - "aliases": [ - "four" - ], - "tags": [] - }, - { - "emojiChar": "5⃣", - "emoji": "5\u20E3", - "description": "digit five + combining enclosing keycap", - "aliases": [ - "five" - ], - "tags": [] - }, - { - "emojiChar": "6⃣", - "emoji": "6\u20E3", - "description": "digit six + combining enclosing keycap", - "aliases": [ - "six" - ], - "tags": [] - }, - { - "emojiChar": "7⃣", - "emoji": "7\u20E3", - "description": "digit seven + combining enclosing keycap", - "aliases": [ - "seven" - ], - "tags": [] - }, - { - "emojiChar": "8⃣", - "emoji": "8\u20E3", - "description": "digit eight + combining enclosing keycap", - "aliases": [ - "eight" - ], - "tags": [] - }, - { - "emojiChar": "9⃣", - "emoji": "9\u20E3", - "description": "digit nine + combining enclosing keycap", - "aliases": [ - "nine" - ], - "tags": [] - }, - { - "emojiChar": "0⃣", - "emoji": "0\u20E3", - "description": "digit zero + combining enclosing keycap", - "aliases": [ - "zero" - ], - "tags": [] - }, - { - "emojiChar": "🔟", - "emoji": "\uD83D\uDD1F", - "description": "keycap ten", - "aliases": [ - "keycap_ten" - ], - "tags": [] - }, - { - "emojiChar": "🔢", - "emoji": "\uD83D\uDD22", - "description": "input symbol for numbers", - "aliases": [ - "1234" - ], - "tags": [ - "numbers" - ] - }, - { - "emojiChar": "#⃣", - "emoji": "#\u20E3", - "description": "number sign + combining enclosing keycap", - "aliases": [ - "hash" - ], - "tags": [ - "number" - ] - }, - { - "emojiChar": "🔣", - "emoji": "\uD83D\uDD23", - "description": "input symbol for symbols", - "aliases": [ - "symbols" - ], - "tags": [] - }, - { - "emojiChar": "⬆", - "emoji": "\u2B06", - "description": "upwards black arrow", - "aliases": [ - "arrow_up" - ], - "tags": [] - }, - { - "emojiChar": "⬇", - "emoji": "\u2B07", - "description": "downwards black arrow", - "aliases": [ - "arrow_down" - ], - "tags": [] - }, - { - "emojiChar": "⬅", - "emoji": "\u2B05", - "description": "leftwards black arrow", - "aliases": [ - "arrow_left" - ], - "tags": [] - }, - { - "emojiChar": "➡", - "emoji": "\u27A1", - "description": "black rightwards arrow", - "aliases": [ - "arrow_right" - ], - "tags": [] - }, - { - "emojiChar": "🔠", - "emoji": "\uD83D\uDD20", - "description": "input symbol for latin capital letters", - "aliases": [ - "capital_abcd" - ], - "tags": [ - "letters" - ] - }, - { - "emojiChar": "🔡", - "emoji": "\uD83D\uDD21", - "description": "input symbol for latin small letters", - "aliases": [ - "abcd" - ], - "tags": [] - }, - { - "emojiChar": "🔤", - "emoji": "\uD83D\uDD24", - "description": "input symbol for latin letters", - "aliases": [ - "abc" - ], - "tags": [ - "alphabet" - ] - }, - { - "emojiChar": "↗", - "emoji": "\u2197", - "description": "north east arrow", - "aliases": [ - "arrow_upper_right" - ], - "tags": [] - }, - { - "emojiChar": "↖", - "emoji": "\u2196", - "description": "north west arrow", - "aliases": [ - "arrow_upper_left" - ], - "tags": [] - }, - { - "emojiChar": "↘", - "emoji": "\u2198", - "description": "south east arrow", - "aliases": [ - "arrow_lower_right" - ], - "tags": [] - }, - { - "emojiChar": "↙", - "emoji": "\u2199", - "description": "south west arrow", - "aliases": [ - "arrow_lower_left" - ], - "tags": [] - }, - { - "emojiChar": "↔", - "emoji": "\u2194", - "description": "left right arrow", - "aliases": [ - "left_right_arrow" - ], - "tags": [] - }, - { - "emojiChar": "↕", - "emoji": "\u2195", - "description": "up down arrow", - "aliases": [ - "arrow_up_down" - ], - "tags": [] - }, - { - "emojiChar": "🔄", - "emoji": "\uD83D\uDD04", - "description": "anticlockwise downwards and upwards open circle arrows", - "aliases": [ - "arrows_counterclockwise" - ], - "tags": [ - "sync" - ] - }, - { - "emojiChar": "◀", - "emoji": "\u25C0", - "description": "black left-pointing triangle", - "aliases": [ - "arrow_backward" - ], - "tags": [] - }, - { - "emojiChar": "▶", - "emoji": "\u25B6", - "description": "black right-pointing triangle", - "aliases": [ - "arrow_forward" - ], - "tags": [] - }, - { - "emojiChar": "🔼", - "emoji": "\uD83D\uDD3C", - "description": "up-pointing small red triangle", - "aliases": [ - "arrow_up_small" - ], - "tags": [] - }, - { - "emojiChar": "🔽", - "emoji": "\uD83D\uDD3D", - "description": "down-pointing small red triangle", - "aliases": [ - "arrow_down_small" - ], - "tags": [] - }, - { - "emojiChar": "↩", - "emoji": "\u21A9", - "description": "leftwards arrow with hook", - "aliases": [ - "leftwards_arrow_with_hook" - ], - "tags": [ - "return" - ] - }, - { - "emojiChar": "↪", - "emoji": "\u21AA", - "description": "rightwards arrow with hook", - "aliases": [ - "arrow_right_hook" - ], - "tags": [] - }, - { - "emojiChar": "ℹ", - "emoji": "\u2139", - "description": "information source", - "aliases": [ - "information_source" - ], - "tags": [] - }, - { - "emojiChar": "⏪", - "emoji": "\u23EA", - "description": "black left-pointing double triangle", - "aliases": [ - "rewind" - ], - "tags": [] - }, - { - "emojiChar": "⏊", - "emoji": "\u23E9", - "description": "black right-pointing double triangle", - "aliases": [ - "fast_forward" - ], - "tags": [] - }, - { - "emojiChar": "⏫", - "emoji": "\u23EB", - "description": "black up-pointing double triangle", - "aliases": [ - "arrow_double_up" - ], - "tags": [] - }, - { - "emojiChar": "⏬", - "emoji": "\u23EC", - "description": "black down-pointing double triangle", - "aliases": [ - "arrow_double_down" - ], - "tags": [] - }, - { - "emojiChar": "⤾", - "emoji": "\u2935", - "description": "arrow pointing rightwards then curving downwards", - "aliases": [ - "arrow_heading_down" - ], - "tags": [] - }, - { - "emojiChar": "⤴", - "emoji": "\u2934", - "description": "arrow pointing rightwards then curving upwards", - "aliases": [ - "arrow_heading_up" - ], - "tags": [] - }, - { - "emojiChar": "🆗", - "emoji": "\uD83C\uDD97", - "description": "squared ok", - "aliases": [ - "ok" - ], - "tags": [ - "yes" - ] - }, - { - "emojiChar": "🔀", - "emoji": "\uD83D\uDD00", - "description": "twisted rightwards arrows", - "aliases": [ - "twisted_rightwards_arrows" - ], - "tags": [ - "shuffle" - ] - }, - { - "emojiChar": "🔁", - "emoji": "\uD83D\uDD01", - "description": "clockwise rightwards and leftwards open circle arrows", - "aliases": [ - "repeat" - ], - "tags": [ - "loop" - ] - }, - { - "emojiChar": "🔂", - "emoji": "\uD83D\uDD02", - "description": "clockwise rightwards and leftwards open circle arrows with circled one overlay", - "aliases": [ - "repeat_one" - ], - "tags": [] - }, - { - "emojiChar": "🆕", - "emoji": "\uD83C\uDD95", - "description": "squared new", - "aliases": [ - "new" - ], - "tags": [ - "fresh" - ] - }, - { - "emojiChar": "🆙", - "emoji": "\uD83C\uDD99", - "description": "squared up with exclamation mark", - "aliases": [ - "up" - ], - "tags": [] - }, - { - "emojiChar": "🆒", - "emoji": "\uD83C\uDD92", - "description": "squared cool", - "aliases": [ - "cool" - ], - "tags": [] - }, - { - "emojiChar": "🆓", - "emoji": "\uD83C\uDD93", - "description": "squared free", - "aliases": [ - "free" - ], - "tags": [] - }, - { - "emojiChar": "🆖", - "emoji": "\uD83C\uDD96", - "description": "squared ng", - "aliases": [ - "squared_ng" - ], - "tags": [] - }, - { - "emojiChar": "📶", - "emoji": "\uD83D\uDCF6", - "description": "antenna with bars", - "aliases": [ - "signal_strength" - ], - "tags": [ - "wifi" - ] - }, - { - "emojiChar": "🎦", - "emoji": "\uD83C\uDFA6", - "description": "cinema", - "aliases": [ - "cinema" - ], - "tags": [ - "film", - "movie" - ] - }, - { - "emojiChar": "🈁", - "emoji": "\uD83C\uDE01", - "description": "squared katakana koko", - "aliases": [ - "koko" - ], - "tags": [] - }, - { - "emojiChar": "🈯", - "emoji": "\uD83C\uDE2F", - "description": "squared cjk unified ideograph-6307", - "aliases": [ - "u6307" - ], - "tags": [] - }, - { - "emojiChar": "🈳", - "emoji": "\uD83C\uDE33", - "description": "squared cjk unified ideograph-7a7a", - "aliases": [ - "u7a7a" - ], - "tags": [] - }, - { - "emojiChar": "🈵", - "emoji": "\uD83C\uDE35", - "description": "squared cjk unified ideograph-6e80", - "aliases": [ - "u6e80" - ], - "tags": [] - }, - { - "emojiChar": "🈴", - "emoji": "\uD83C\uDE34", - "description": "squared cjk unified ideograph-5408", - "aliases": [ - "u5408" - ], - "tags": [] - }, - { - "emojiChar": "🈲", - "emoji": "\uD83C\uDE32", - "description": "squared cjk unified ideograph-7981", - "aliases": [ - "u7981" - ], - "tags": [] - }, - { - "emojiChar": "🉐", - "emoji": "\uD83C\uDE50", - "description": "circled ideograph advantage", - "aliases": [ - "ideograph_advantage" - ], - "tags": [] - }, - { - "emojiChar": "🈹", - "emoji": "\uD83C\uDE39", - "description": "squared cjk unified ideograph-5272", - "aliases": [ - "u5272" - ], - "tags": [] - }, - { - "emojiChar": "🈺", - "emoji": "\uD83C\uDE3A", - "description": "squared cjk unified ideograph-55b6", - "aliases": [ - "u55b6" - ], - "tags": [] - }, - { - "emojiChar": "🈶", - "emoji": "\uD83C\uDE36", - "description": "squared cjk unified ideograph-6709", - "aliases": [ - "u6709" - ], - "tags": [] - }, - { - "emojiChar": "🈚", - "emoji": "\uD83C\uDE1A", - "description": "squared cjk unified ideograph-7121", - "aliases": [ - "u7121" - ], - "tags": [] - }, - { - "emojiChar": "🚻", - "emoji": "\uD83D\uDEBB", - "description": "restroom", - "aliases": [ - "restroom" - ], - "tags": [ - "toilet" - ] - }, - { - "emojiChar": "🚹", - "emoji": "\uD83D\uDEB9", - "description": "mens symbol", - "aliases": [ - "mens" - ], - "tags": [] - }, - { - "emojiChar": "🚺", - "emoji": "\uD83D\uDEBA", - "description": "womens symbol", - "aliases": [ - "womens" - ], - "tags": [] - }, - { - "emojiChar": "🚼", - "emoji": "\uD83D\uDEBC", - "description": "baby symbol", - "aliases": [ - "baby_symbol" - ], - "tags": [] - }, - { - "emojiChar": "🚾", - "emoji": "\uD83D\uDEBE", - "description": "water closet", - "aliases": [ - "wc" - ], - "tags": [ - "toilet", - "restroom" - ] - }, - { - "emojiChar": "🚰", - "emoji": "\uD83D\uDEB0", - "description": "potable water symbol", - "aliases": [ - "potable_water" - ], - "tags": [] - }, - { - "emojiChar": "🚮", - "emoji": "\uD83D\uDEAE", - "description": "put litter in its place symbol", - "aliases": [ - "put_litter_in_its_place" - ], - "tags": [] - }, - { - "emojiChar": "🅿", - "emoji": "\uD83C\uDD7F", - "description": "negative squared latin capital letter p", - "aliases": [ - "parking" - ], - "tags": [] - }, - { - "emojiChar": "♿", - "emoji": "\u267F", - "description": "wheelchair symbol", - "aliases": [ - "wheelchair" - ], - "tags": [ - "accessibility" - ] - }, - { - "emojiChar": "🚭", - "emoji": "\uD83D\uDEAD", - "description": "no smoking symbol", - "aliases": [ - "no_smoking" - ], - "tags": [] - }, - { - "emojiChar": "🈷", - "emoji": "\uD83C\uDE37", - "description": "squared cjk unified ideograph-6708", - "aliases": [ - "u6708" - ], - "tags": [] - }, - { - "emojiChar": "🈸", - "emoji": "\uD83C\uDE38", - "description": "squared cjk unified ideograph-7533", - "aliases": [ - "u7533" - ], - "tags": [] - }, - { - "emojiChar": "🈂", - "emoji": "\uD83C\uDE02", - "description": "squared katakana sa", - "aliases": [ - "sa" - ], - "tags": [] - }, - { - "emojiChar": "Ⓜ", - "emoji": "\u24C2", - "description": "circled latin capital letter m", - "aliases": [ - "m" - ], - "tags": [] - }, - { - "emojiChar": "🛂", - "emoji": "\uD83D\uDEC2", - "description": "passport control", - "aliases": [ - "passport_control" - ], - "tags": [] - }, - { - "emojiChar": "🛄", - "emoji": "\uD83D\uDEC4", - "description": "baggage claim", - "aliases": [ - "baggage_claim" - ], - "tags": [ - "airport" - ] - }, - { - "emojiChar": "🛅", - "emoji": "\uD83D\uDEC5", - "description": "left luggage", - "aliases": [ - "left_luggage" - ], - "tags": [] - }, - { - "emojiChar": "🛃", - "emoji": "\uD83D\uDEC3", - "description": "customs", - "aliases": [ - "customs" - ], - "tags": [] - }, - { - "emojiChar": "🉑", - "emoji": "\uD83C\uDE51", - "description": "circled ideograph accept", - "aliases": [ - "accept" - ], - "tags": [] - }, - { - "emojiChar": "㊙", - "emoji": "\u3299", - "description": "circled ideograph secret", - "aliases": [ - "secret" - ], - "tags": [] - }, - { - "emojiChar": "㊗", - "emoji": "\u3297", - "description": "circled ideograph congratulation", - "aliases": [ - "congratulations" - ], - "tags": [] - }, - { - "emojiChar": "🆑", - "emoji": "\uD83C\uDD91", - "description": "squared cl", - "aliases": [ - "cl" - ], - "tags": [] - }, - { - "emojiChar": "🆘", - "emoji": "\uD83C\uDD98", - "description": "squared sos", - "aliases": [ - "sos" - ], - "tags": [ - "help", - "emergency" - ] - }, - { - "emojiChar": "🆔", - "emoji": "\uD83C\uDD94", - "description": "squared id", - "aliases": [ - "id" - ], - "tags": [] - }, - { - "emojiChar": "🚫", - "emoji": "\uD83D\uDEAB", - "description": "no entry sign", - "aliases": [ - "no_entry_sign" - ], - "tags": [ - "block", - "forbidden" - ] - }, - { - "emojiChar": "🔞", - "emoji": "\uD83D\uDD1E", - "description": "no one under eighteen symbol", - "aliases": [ - "underage" - ], - "tags": [] - }, - { - "emojiChar": "📵", - "emoji": "\uD83D\uDCF5", - "description": "no mobile phones", - "aliases": [ - "no_mobile_phones" - ], - "tags": [] - }, - { - "emojiChar": "🚯", - "emoji": "\uD83D\uDEAF", - "description": "do not litter symbol", - "aliases": [ - "do_not_litter" - ], - "tags": [] - }, - { - "emojiChar": "🚱", - "emoji": "\uD83D\uDEB1", - "description": "non-potable water symbol", - "aliases": [ - "non-potable_water" - ], - "tags": [] - }, - { - "emojiChar": "🚳", - "emoji": "\uD83D\uDEB3", - "description": "no bicycles", - "aliases": [ - "no_bicycles" - ], - "tags": [] - }, - { - "emojiChar": "🚷", - "emoji": "\uD83D\uDEB7", - "description": "no pedestrians", - "aliases": [ - "no_pedestrians" - ], - "tags": [] - }, - { - "emojiChar": "🚸", - "emoji": "\uD83D\uDEB8", - "description": "children crossing", - "aliases": [ - "children_crossing" - ], - "tags": [] - }, - { - "emojiChar": "⛔", - "emoji": "\u26D4", - "description": "no entry", - "aliases": [ - "no_entry" - ], - "tags": [ - "limit" - ] - }, - { - "emojiChar": "✳", - "emoji": "\u2733", - "description": "eight spoked asterisk", - "aliases": [ - "eight_spoked_asterisk" - ], - "tags": [] - }, - { - "emojiChar": "❇", - "emoji": "\u2747", - "description": "sparkle", - "aliases": [ - "sparkle" - ], - "tags": [] - }, - { - "emojiChar": "❎", - "emoji": "\u274E", - "description": "negative squared cross mark", - "aliases": [ - "negative_squared_cross_mark" - ], - "tags": [] - }, - { - "emojiChar": "✅", - "emoji": "\u2705", - "description": "white heavy check mark", - "aliases": [ - "white_check_mark" - ], - "tags": [] - }, - { - "emojiChar": "✴", - "emoji": "\u2734", - "description": "eight pointed black star", - "aliases": [ - "eight_pointed_black_star" - ], - "tags": [] - }, - { - "emojiChar": "💟", - "emoji": "\uD83D\uDC9F", - "description": "heart decoration", - "aliases": [ - "heart_decoration" - ], - "tags": [] - }, - { - "emojiChar": "🆚", - "emoji": "\uD83C\uDD9A", - "description": "squared vs", - "aliases": [ - "vs" - ], - "tags": [] - }, - { - "emojiChar": "📳", - "emoji": "\uD83D\uDCF3", - "description": "vibration mode", - "aliases": [ - "vibration_mode" - ], - "tags": [] - }, - { - "emojiChar": "📴", - "emoji": "\uD83D\uDCF4", - "description": "mobile phone off", - "aliases": [ - "mobile_phone_off" - ], - "tags": [ - "mute", - "off" - ] - }, - { - "emojiChar": "🅰", - "emoji": "\uD83C\uDD70", - "description": "negative squared latin capital letter a", - "aliases": [ - "a" - ], - "tags": [] - }, - { - "emojiChar": "🅱", - "emoji": "\uD83C\uDD71", - "description": "negative squared latin capital letter b", - "aliases": [ - "b" - ], - "tags": [] - }, - { - "emojiChar": "🆎", - "emoji": "\uD83C\uDD8E", - "description": "negative squared ab", - "aliases": [ - "ab" - ], - "tags": [] - }, - { - "emojiChar": "🅾", - "emoji": "\uD83C\uDD7E", - "description": "negative squared latin capital letter o", - "aliases": [ - "o2" - ], - "tags": [] - }, - { - "emojiChar": "💠", - "emoji": "\uD83D\uDCA0", - "description": "diamond shape with a dot inside", - "aliases": [ - "diamond_shape_with_a_dot_inside" - ], - "tags": [] - }, - { - "emojiChar": "➿", - "emoji": "\u27BF", - "description": "double curly loop", - "aliases": [ - "loop" - ], - "tags": [] - }, - { - "emojiChar": "♻", - "emoji": "\u267B", - "description": "black universal recycling symbol", - "aliases": [ - "recycle" - ], - "tags": [ - "environment", - "green" - ] - }, - { - "emojiChar": "♈", - "emoji": "\u2648", - "description": "aries", - "aliases": [ - "aries" - ], - "tags": [] - }, - { - "emojiChar": "♉", - "emoji": "\u2649", - "description": "taurus", - "aliases": [ - "taurus" - ], - "tags": [] - }, - { - "emojiChar": "♊", - "emoji": "\u264A", - "description": "gemini", - "aliases": [ - "gemini" - ], - "tags": [] - }, - { - "emojiChar": "♋", - "emoji": "\u264B", - "description": "cancer", - "aliases": [ - "cancer" - ], - "tags": [] - }, - { - "emojiChar": "♌", - "emoji": "\u264C", - "description": "leo", - "aliases": [ - "leo" - ], - "tags": [] - }, - { - "emojiChar": "♍", - "emoji": "\u264D", - "description": "virgo", - "aliases": [ - "virgo" - ], - "tags": [] - }, - { - "emojiChar": "♎", - "emoji": "\u264E", - "description": "libra", - "aliases": [ - "libra" - ], - "tags": [] - }, - { - "emojiChar": "♏", - "emoji": "\u264F", - "description": "scorpius", - "aliases": [ - "scorpius" - ], - "tags": [] - }, - { - "emojiChar": "♐", - "emoji": "\u2650", - "description": "sagittarius", - "aliases": [ - "sagittarius" - ], - "tags": [] - }, - { - "emojiChar": "♑", - "emoji": "\u2651", - "description": "capricorn", - "aliases": [ - "capricorn" - ], - "tags": [] - }, - { - "emojiChar": "♒", - "emoji": "\u2652", - "description": "aquarius", - "aliases": [ - "aquarius" - ], - "tags": [] - }, - { - "emojiChar": "♓", - "emoji": "\u2653", - "description": "pisces", - "aliases": [ - "pisces" - ], - "tags": [] - }, - { - "emojiChar": "⛎", - "emoji": "\u26CE", - "description": "ophiuchus", - "aliases": [ - "ophiuchus" - ], - "tags": [] - }, - { - "emojiChar": "🔯", - "emoji": "\uD83D\uDD2F", - "description": "six pointed star with middle dot", - "aliases": [ - "six_pointed_star" - ], - "tags": [] - }, - { - "emojiChar": "🏧", - "emoji": "\uD83C\uDFE7", - "description": "automated teller machine", - "aliases": [ - "atm" - ], - "tags": [] - }, - { - "emojiChar": "💹", - "emoji": "\uD83D\uDCB9", - "description": "chart with upwards trend and yen sign", - "aliases": [ - "chart" - ], - "tags": [] - }, - { - "emojiChar": "💲", - "emoji": "\uD83D\uDCB2", - "description": "heavy dollar sign", - "aliases": [ - "heavy_dollar_sign" - ], - "tags": [] - }, - { - "emojiChar": "💱", - "emoji": "\uD83D\uDCB1", - "description": "currency exchange", - "aliases": [ - "currency_exchange" - ], - "tags": [] - }, - { - "emojiChar": "Š", - "emoji": "\u00A9", - "description": "copyright sign", - "aliases": [ - "copyright" - ], - "tags": [] - }, - { - "emojiChar": "ÂŽ", - "emoji": "\u00AE", - "description": "registered sign", - "aliases": [ - "registered" - ], - "tags": [] - }, - { - "emojiChar": "™", - "emoji": "\u2122", - "description": "trade mark sign", - "aliases": [ - "tm" - ], - "tags": [ - "trademark" - ] - }, - { - "emojiChar": "❌", - "emoji": "\u274C", - "description": "cross mark", - "aliases": [ - "x" - ], - "tags": [] - }, - { - "emojiChar": "‼", - "emoji": "\u203C", - "description": "double exclamation mark", - "aliases": [ - "bangbang" - ], - "tags": [] - }, - { - "emojiChar": "⁉", - "emoji": "\u2049", - "description": "exclamation question mark", - "aliases": [ - "interrobang" - ], - "tags": [] - }, - { - "emojiChar": "❗", - "emoji": "\u2757", - "description": "heavy exclamation mark symbol", - "aliases": [ - "exclamation", - "heavy_exclamation_mark" - ], - "tags": [ - "bang" - ] - }, - { - "emojiChar": "❓", - "emoji": "\u2753", - "description": "black question mark ornament", - "aliases": [ - "question" - ], - "tags": [ - "confused" - ] - }, - { - "emojiChar": "❕", - "emoji": "\u2755", - "description": "white exclamation mark ornament", - "aliases": [ - "grey_exclamation" - ], - "tags": [] - }, - { - "emojiChar": "❔", - "emoji": "\u2754", - "description": "white question mark ornament", - "aliases": [ - "grey_question" - ], - "tags": [] - }, - { - "emojiChar": "⭕", - "emoji": "\u2B55", - "description": "heavy large circle", - "aliases": [ - "o" - ], - "tags": [] - }, - { - "emojiChar": "🔝", - "emoji": "\uD83D\uDD1D", - "description": "top with upwards arrow above", - "aliases": [ - "top" - ], - "tags": [] - }, - { - "emojiChar": "🔚", - "emoji": "\uD83D\uDD1A", - "description": "end with leftwards arrow above", - "aliases": [ - "end" - ], - "tags": [] - }, - { - "emojiChar": "🔙", - "emoji": "\uD83D\uDD19", - "description": "back with leftwards arrow above", - "aliases": [ - "back" - ], - "tags": [] - }, - { - "emojiChar": "🔛", - "emoji": "\uD83D\uDD1B", - "description": "on with exclamation mark with left right arrow above", - "aliases": [ - "on" - ], - "tags": [] - }, - { - "emojiChar": "🔜", - "emoji": "\uD83D\uDD1C", - "description": "soon with rightwards arrow above", - "aliases": [ - "soon" - ], - "tags": [] - }, - { - "emojiChar": "🔃", - "emoji": "\uD83D\uDD03", - "description": "clockwise downwards and upwards open circle arrows", - "aliases": [ - "arrows_clockwise" - ], - "tags": [] - }, - { - "emojiChar": "🕛", - "emoji": "\uD83D\uDD5B", - "description": "clock face twelve oclock", - "aliases": [ - "clock12" - ], - "tags": [] - }, - { - "emojiChar": "🕧", - "emoji": "\uD83D\uDD67", - "description": "clock face twelve-thirty", - "aliases": [ - "clock1230" - ], - "tags": [] - }, - { - "emojiChar": "🕐", - "emoji": "\uD83D\uDD50", - "description": "clock face one oclock", - "aliases": [ - "clock1" - ], - "tags": [] - }, - { - "emojiChar": "🕜", - "emoji": "\uD83D\uDD5C", - "description": "clock face one-thirty", - "aliases": [ - "clock130" - ], - "tags": [] - }, - { - "emojiChar": "🕑", - "emoji": "\uD83D\uDD51", - "description": "clock face two oclock", - "aliases": [ - "clock2" - ], - "tags": [] - }, - { - "emojiChar": "🕝", - "emoji": "\uD83D\uDD5D", - "description": "clock face two-thirty", - "aliases": [ - "clock230" - ], - "tags": [] - }, - { - "emojiChar": "🕒", - "emoji": "\uD83D\uDD52", - "description": "clock face three oclock", - "aliases": [ - "clock3" - ], - "tags": [] - }, - { - "emojiChar": "🕞", - "emoji": "\uD83D\uDD5E", - "description": "clock face three-thirty", - "aliases": [ - "clock330" - ], - "tags": [] - }, - { - "emojiChar": "🕓", - "emoji": "\uD83D\uDD53", - "description": "clock face four oclock", - "aliases": [ - "clock4" - ], - "tags": [] - }, - { - "emojiChar": "🕟", - "emoji": "\uD83D\uDD5F", - "description": "clock face four-thirty", - "aliases": [ - "clock430" - ], - "tags": [] - }, - { - "emojiChar": "🕔", - "emoji": "\uD83D\uDD54", - "description": "clock face five oclock", - "aliases": [ - "clock5" - ], - "tags": [] - }, - { - "emojiChar": "🕠", - "emoji": "\uD83D\uDD60", - "description": "clock face five-thirty", - "aliases": [ - "clock530" - ], - "tags": [] - }, - { - "emojiChar": "🕕", - "emoji": "\uD83D\uDD55", - "description": "clock face six oclock", - "aliases": [ - "clock6" - ], - "tags": [] - }, - { - "emojiChar": "🕖", - "emoji": "\uD83D\uDD56", - "description": "clock face seven oclock", - "aliases": [ - "clock7" - ], - "tags": [] - }, - { - "emojiChar": "🕗", - "emoji": "\uD83D\uDD57", - "description": "clock face eight oclock", - "aliases": [ - "clock8" - ], - "tags": [] - }, - { - "emojiChar": "🕘", - "emoji": "\uD83D\uDD58", - "description": "clock face nine oclock", - "aliases": [ - "clock9" - ], - "tags": [] - }, - { - "emojiChar": "🕙", - "emoji": "\uD83D\uDD59", - "description": "clock face ten oclock", - "aliases": [ - "clock10" - ], - "tags": [] - }, - { - "emojiChar": "🕚", - "emoji": "\uD83D\uDD5A", - "description": "clock face eleven oclock", - "aliases": [ - "clock11" - ], - "tags": [] - }, - { - "emojiChar": "🕡", - "emoji": "\uD83D\uDD61", - "description": "clock face six-thirty", - "aliases": [ - "clock630" - ], - "tags": [] - }, - { - "emojiChar": "🕢", - "emoji": "\uD83D\uDD62", - "description": "clock face seven-thirty", - "aliases": [ - "clock730" - ], - "tags": [] - }, - { - "emojiChar": "🕣", - "emoji": "\uD83D\uDD63", - "description": "clock face eight-thirty", - "aliases": [ - "clock830" - ], - "tags": [] - }, - { - "emojiChar": "🕤", - "emoji": "\uD83D\uDD64", - "description": "clock face nine-thirty", - "aliases": [ - "clock930" - ], - "tags": [] - }, - { - "emojiChar": "🕥", - "emoji": "\uD83D\uDD65", - "description": "clock face ten-thirty", - "aliases": [ - "clock1030" - ], - "tags": [] - }, - { - "emojiChar": "🕦", - "emoji": "\uD83D\uDD66", - "description": "clock face eleven-thirty", - "aliases": [ - "clock1130" - ], - "tags": [] - }, - { - "emojiChar": "✖", - "emoji": "\u2716", - "description": "heavy multiplication x", - "aliases": [ - "heavy_multiplication_x" - ], - "tags": [] - }, - { - "emojiChar": "➕", - "emoji": "\u2795", - "description": "heavy plus sign", - "aliases": [ - "heavy_plus_sign" - ], - "tags": [] - }, - { - "emojiChar": "➖", - "emoji": "\u2796", - "description": "heavy minus sign", - "aliases": [ - "heavy_minus_sign" - ], - "tags": [] - }, - { - "emojiChar": "➗", - "emoji": "\u2797", - "description": "heavy division sign", - "aliases": [ - "heavy_division_sign" - ], - "tags": [] - }, - { - "emojiChar": "♠", - "emoji": "\u2660", - "description": "black spade suit", - "aliases": [ - "spades" - ], - "tags": [] - }, - { - "emojiChar": "♥", - "emoji": "\u2665", - "description": "black heart suit", - "aliases": [ - "hearts" - ], - "tags": [] - }, - { - "emojiChar": "♣", - "emoji": "\u2663", - "description": "black club suit", - "aliases": [ - "clubs" - ], - "tags": [] - }, - { - "emojiChar": "♦", - "emoji": "\u2666", - "description": "black diamond suit", - "aliases": [ - "diamonds" - ], - "tags": [] - }, - { - "emojiChar": "💮", - "emoji": "\uD83D\uDCAE", - "description": "white flower", - "aliases": [ - "white_flower" - ], - "tags": [] - }, - { - "emojiChar": "💯", - "emoji": "\uD83D\uDCAF", - "description": "hundred points symbol", - "aliases": [ - "100" - ], - "tags": [ - "score", - "perfect" - ] - }, - { - "emojiChar": "✔", - "emoji": "\u2714", - "description": "heavy check mark", - "aliases": [ - "heavy_check_mark" - ], - "tags": [] - }, - { - "emojiChar": "☑", - "emoji": "\u2611", - "description": "ballot box with check", - "aliases": [ - "ballot_box_with_check" - ], - "tags": [] - }, - { - "emojiChar": "🔘", - "emoji": "\uD83D\uDD18", - "description": "radio button", - "aliases": [ - "radio_button" - ], - "tags": [] - }, - { - "emojiChar": "🔗", - "emoji": "\uD83D\uDD17", - "description": "link symbol", - "aliases": [ - "link" - ], - "tags": [] - }, - { - "emojiChar": "➰", - "emoji": "\u27B0", - "description": "curly loop", - "aliases": [ - "curly_loop" - ], - "tags": [] - }, - { - "emojiChar": "〰", - "emoji": "\u3030", - "description": "wavy dash", - "aliases": [ - "wavy_dash" - ], - "tags": [] - }, - { - "emojiChar": "〽", - "emoji": "\u303D", - "description": "part alternation mark", - "aliases": [ - "part_alternation_mark" - ], - "tags": [] - }, - { - "emojiChar": "🔱", - "emoji": "\uD83D\uDD31", - "description": "trident emblem", - "aliases": [ - "trident" - ], - "tags": [] - }, - { - "emojiChar": "◼", - "emoji": "\u25FC", - "description": "black medium square", - "aliases": [ - "black_medium_square" - ], - "tags": [] - }, - { - "emojiChar": "◻", - "emoji": "\u25FB", - "description": "white medium square", - "aliases": [ - "white_medium_square" - ], - "tags": [] - }, - { - "emojiChar": "◾", - "emoji": "\u25FE", - "description": "black medium small square", - "aliases": [ - "black_medium_small_square" - ], - "tags": [] - }, - { - "emojiChar": "◽", - "emoji": "\u25FD", - "description": "white medium small square", - "aliases": [ - "white_medium_small_square" - ], - "tags": [] - }, - { - "emojiChar": "▪", - "emoji": "\u25AA", - "description": "black small square", - "aliases": [ - "black_small_square" - ], - "tags": [] - }, - { - "emojiChar": "▫", - "emoji": "\u25AB", - "description": "white small square", - "aliases": [ - "white_small_square" - ], - "tags": [] - }, - { - "emojiChar": "🔺", - "emoji": "\uD83D\uDD3A", - "description": "up-pointing red triangle", - "aliases": [ - "small_red_triangle" - ], - "tags": [] - }, - { - "emojiChar": "🔲", - "emoji": "\uD83D\uDD32", - "description": "black square button", - "aliases": [ - "black_square_button" - ], - "tags": [] - }, - { - "emojiChar": "🔳", - "emoji": "\uD83D\uDD33", - "description": "white square button", - "aliases": [ - "white_square_button" - ], - "tags": [] - }, - { - "emojiChar": "⚫", - "emoji": "\u26AB", - "description": "medium black circle", - "aliases": [ - "black_circle" - ], - "tags": [] - }, - { - "emojiChar": "⚪", - "emoji": "\u26AA", - "description": "medium white circle", - "aliases": [ - "white_circle" - ], - "tags": [] - }, - { - "emojiChar": "🔴", - "emoji": "\uD83D\uDD34", - "description": "large red circle", - "aliases": [ - "red_circle" - ], - "tags": [] - }, - { - "emojiChar": "🔵", - "emoji": "\uD83D\uDD35", - "description": "large blue circle", - "aliases": [ - "large_blue_circle" - ], - "tags": [] - }, - { - "emojiChar": "🔻", - "emoji": "\uD83D\uDD3B", - "description": "down-pointing red triangle", - "aliases": [ - "small_red_triangle_down" - ], - "tags": [] - }, - { - "emojiChar": "⬜", - "emoji": "\u2B1C", - "description": "white large square", - "aliases": [ - "white_large_square" - ], - "tags": [] - }, - { - "emojiChar": "⬛", - "emoji": "\u2B1B", - "description": "black large square", - "aliases": [ - "black_large_square" - ], - "tags": [] - }, - { - "emojiChar": "🔶", - "emoji": "\uD83D\uDD36", - "description": "large orange diamond", - "aliases": [ - "large_orange_diamond" - ], - "tags": [] - }, - { - "emojiChar": "🔷", - "emoji": "\uD83D\uDD37", - "description": "large blue diamond", - "aliases": [ - "large_blue_diamond" - ], - "tags": [] - }, - { - "emojiChar": "🔸", - "emoji": "\uD83D\uDD38", - "description": "small orange diamond", - "aliases": [ - "small_orange_diamond" - ], - "tags": [] - }, - { - "emojiChar": "🔹", - "emoji": "\uD83D\uDD39", - "description": "small blue diamond", - "aliases": [ - "small_blue_diamond" - ], - "tags": [] - }, - { - "emojiChar": "🇦", - "emoji": "\uD83C\uDDE6", - "description": "regional indicator symbol letter a", - "aliases": [ - "regional_indicator_symbol_a" - ], - "tags": [ - "letter", - "a" - ] - }, - { - "emojiChar": "🇧", - "emoji": "\uD83C\uDDE7", - "description": "regional indicator symbol letter b", - "aliases": [ - "regional_indicator_symbol_b" - ], - "tags": [ - "letter", - "b" - ] - }, - { - "emojiChar": "🇨", - "emoji": "\uD83C\uDDE8", - "description": "regional indicator symbol letter c", - "aliases": [ - "regional_indicator_symbol_c" - ], - "tags": [ - "letter", - "c" - ] - }, - { - "emojiChar": "🇩", - "emoji": "\uD83C\uDDE9", - "description": "regional indicator symbol letter d", - "aliases": [ - "regional_indicator_symbol_d" - ], - "tags": [ - "letter", - "d" - ] - }, - { - "emojiChar": "🇪", - "emoji": "\uD83C\uDDEA", - "description": "regional indicator symbol letter e", - "aliases": [ - "regional_indicator_symbol_e" - ], - "tags": [ - "letter", - "e" - ] - }, - { - "emojiChar": "🇫", - "emoji": "\uD83C\uDDEB", - "description": "regional indicator symbol letter f", - "aliases": [ - "regional_indicator_symbol_f" - ], - "tags": [ - "letter", - "f" - ] - }, - { - "emojiChar": "🇬", - "emoji": "\uD83C\uDDEC", - "description": "regional indicator symbol letter g", - "aliases": [ - "regional_indicator_symbol_g" - ], - "tags": [ - "letter", - "g" - ] - }, - { - "emojiChar": "🇭", - "emoji": "\uD83C\uDDED", - "description": "regional indicator symbol letter h", - "aliases": [ - "regional_indicator_symbol_h" - ], - "tags": [ - "letter", - "h" - ] - }, - { - "emojiChar": "🇮", - "emoji": "\uD83C\uDDEE", - "description": "regional indicator symbol letter i", - "aliases": [ - "regional_indicator_symbol_i" - ], - "tags": [ - "letter", - "i" - ] - }, - { - "emojiChar": "🇯", - "emoji": "\uD83C\uDDEF", - "description": "regional indicator symbol letter j", - "aliases": [ - "regional_indicator_symbol_j" - ], - "tags": [ - "letter", - "j" - ] - }, - { - "emojiChar": "🇰", - "emoji": "\uD83C\uDDF0", - "description": "regional indicator symbol letter k", - "aliases": [ - "regional_indicator_symbol_k" - ], - "tags": [ - "letter", - "k" - ] - }, - { - "emojiChar": "🇱", - "emoji": "\uD83C\uDDF1", - "description": "regional indicator symbol letter l", - "aliases": [ - "regional_indicator_symbol_l" - ], - "tags": [ - "letter", - "l" - ] - }, - { - "emojiChar": "🇲", - "emoji": "\uD83C\uDDF2", - "description": "regional indicator symbol letter m", - "aliases": [ - "regional_indicator_symbol_m" - ], - "tags": [ - "letter", - "m" - ] - }, - { - "emojiChar": "🇳", - "emoji": "\uD83C\uDDF3", - "description": "regional indicator symbol letter n", - "aliases": [ - "regional_indicator_symbol_n" - ], - "tags": [ - "letter", - "n" - ] - }, - { - "emojiChar": "🇴", - "emoji": "\uD83C\uDDF4", - "description": "regional indicator symbol letter o", - "aliases": [ - "regional_indicator_symbol_o" - ], - "tags": [ - "letter", - "o" - ] - }, - { - "emojiChar": "🇵", - "emoji": "\uD83C\uDDF5", - "description": "regional indicator symbol letter p", - "aliases": [ - "regional_indicator_symbol_p" - ], - "tags": [ - "letter", - "p" - ] - }, - { - "emojiChar": "🇶", - "emoji": "\uD83C\uDDF6", - "description": "regional indicator symbol letter q", - "aliases": [ - "regional_indicator_symbol_q" - ], - "tags": [ - "letter", - "q" - ] - }, - { - "emojiChar": "🇷", - "emoji": "\uD83C\uDDF7", - "description": "regional indicator symbol letter r", - "aliases": [ - "regional_indicator_symbol_r" - ], - "tags": [ - "letter", - "r" - ] - }, - { - "emojiChar": "🇸", - "emoji": "\uD83C\uDDF8", - "description": "regional indicator symbol letter s", - "aliases": [ - "regional_indicator_symbol_s" - ], - "tags": [ - "letter", - "s" - ] - }, - { - "emojiChar": "🇹", - "emoji": "\uD83C\uDDF9", - "description": "regional indicator symbol letter t", - "aliases": [ - "regional_indicator_symbol_t" - ], - "tags": [ - "letter", - "t" - ] - }, - { - "emojiChar": "🇺", - "emoji": "\uD83C\uDDFA", - "description": "regional indicator symbol letter u", - "aliases": [ - "regional_indicator_symbol_u" - ], - "tags": [ - "letter", - "u" - ] - }, - { - "emojiChar": "🇻", - "emoji": "\uD83C\uDDFB", - "description": "regional indicator symbol letter v", - "aliases": [ - "regional_indicator_symbol_v" - ], - "tags": [ - "letter", - "v" - ] - }, - { - "emojiChar": "🇼", - "emoji": "\uD83C\uDDFC", - "description": "regional indicator symbol letter w", - "aliases": [ - "regional_indicator_symbol_w" - ], - "tags": [ - "letter", - "w" - ] - }, - { - "emojiChar": "🇽", - "emoji": "\uD83C\uDDFD", - "description": "regional indicator symbol letter x", - "aliases": [ - "regional_indicator_symbol_x" - ], - "tags": [ - "letter", - "x" - ] - }, - { - "emojiChar": "🇾", - "emoji": "\uD83C\uDDFE", - "description": "regional indicator symbol letter y", - "aliases": [ - "regional_indicator_symbol_y" - ], - "tags": [ - "letter", - "y" - ] - }, - { - "emojiChar": "🇿", - "emoji": "\uD83C\uDDFF", - "description": "regional indicator symbol letter z", - "aliases": [ - "regional_indicator_symbol_z" - ], - "tags": [ - "letter", - "z" - ] - }, - { - "emojiChar": "👨‍👩‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC66", - "description": "family (man, woman, boy)", - "aliases": [ - "family_man_woman_boy" - ], - "tags": [ - "family", - "man", - "woman", - "boy" - ] - }, - { - "emojiChar": "👨‍👩‍👧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC67", - "description": "family (man, woman, girl)", - "aliases": [ - "family_man_woman_girl" - ], - "tags": [ - "family", - "man", - "woman", - "girl" - ] - }, - { - "emojiChar": "👨‍👩‍👦‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66", - "description": "family (man, woman, boy, boy)", - "aliases": [ - "family_man_woman_boy_boy" - ], - "tags": [ - "family", - "man", - "woman", - "boy" - ] - }, - { - "emojiChar": "👨‍👩‍👧‍👧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67", - "description": "family (man, woman, girl, girl)", - "aliases": [ - "family_man_woman_girl_girl" - ], - "tags": [ - "family", - "man", - "woman", - "girl" - ] - }, - { - "emojiChar": "👨‍👩‍👧‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC66", - "description": "family (man, woman, girl, boy)", - "aliases": [ - "family_man_woman_girl_boy" - ], - "tags": [ - "family", - "man", - "woman", - "girl", - "boy" - ] - }, - { - "emojiChar": "👩‍👩‍👦", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC66", - "description": "family (woman, woman, boy)", - "aliases": [ - "family_woman_woman_boy" - ], - "tags": [ - "family", - "woman", - "boy" - ] - }, - { - "emojiChar": "👩‍👩‍👧", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67", - "description": "family (woman, woman, girl)", - "aliases": [ - "family_woman_woman_girl" - ], - "tags": [ - "family", - "woman", - "girl" - ] - }, - { - "emojiChar": "👩‍👩‍👧‍👦", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC66", - "description": "family (woman, woman, girl, boy)", - "aliases": [ - "family_woman_woman_girl_boy" - ], - "tags": [ - "family", - "woman", - "girl", - "boy" - ] - }, - { - "emojiChar": "👩‍👩‍👦‍👦", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66", - "description": "family (woman, woman, boy, boy)", - "aliases": [ - "family_woman_woman_boy_boy" - ], - "tags": [ - "family", - "woman", - "boy" - ] - }, - { - "emojiChar": "👩‍👩‍👧‍👧", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67", - "description": "family (woman, woman, girl, girl)", - "aliases": [ - "family_woman_woman_girl_girl" - ], - "tags": [ - "family", - "woman", - "girl" - ] - }, - { - "emojiChar": "👨‍👨‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC66", - "description": "family (man, man, boy)", - "aliases": [ - "family_man_man_boy" - ], - "tags": [ - "family", - "man", - "boy" - ] - }, - { - "emojiChar": "👨‍👨‍👧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC67", - "description": "family (man, man, girl)", - "aliases": [ - "family_man_man_girl" - ], - "tags": [ - "family", - "man", - "girl" - ] - }, - { - "emojiChar": "👨‍👨‍👧‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC67\u200D\uD83D\uDC66", - "description": "family (man, man, girl, boy)", - "aliases": [ - "family_man_man_girl_boy" - ], - "tags": [ - "family", - "man", - "girl", - "boy" - ] - }, - { - "emojiChar": "👨‍👨‍👦‍👦", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC66\u200D\uD83D\uDC66", - "description": "family (man, man, boy, boy)", - "aliases": [ - "family_man_man_boy_boy" - ], - "tags": [ - "family", - "man", - "boy" - ] - }, - { - "emojiChar": "👨‍👨‍👧‍👧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDC68\u200D\uD83D\uDC67\u200D\uD83D\uDC67", - "description": "family (man, man, girl, girl)", - "aliases": [ - "family_man_man_girl_girl" - ], - "tags": [ - "family", - "man", - "girl" - ] - }, - { - "emojiChar": "👩‍❤️‍👩", - "emoji": "\uD83D\uDC69\u200D\u2764\uFE0F\u200D\uD83D\uDC69", - "description": "couple with heart (woman, woman)", - "aliases": [ - "couple_with_heart_woman_woman" - ], - "tags": [ - "couple", - "heart", - "woman" - ] - }, - { - "emojiChar": "👨‍❤️‍👨", - "emoji": "\uD83D\uDC68\u200D\u2764\uFE0F\u200D\uD83D\uDC68", - "description": "couple with heart (man, man)", - "aliases": [ - "couple_with_heart_man_man" - ], - "tags": [ - "couple", - "heart", - "man" - ] - }, - { - "emojiChar": "👩‍❤️‍💋‍👩", - "emoji": "\uD83D\uDC69\u200D\u2764\uFE0F\u200D\uD83D\uDC8B\u200D\uD83D\uDC69", - "description": "kiss (woman, woman)", - "aliases": [ - "couplekiss_woman_woman" - ], - "tags": [ - "couple", - "kiss", - "woman" - ] - }, - { - "emojiChar": "👨‍❤️‍💋‍👨", - "emoji": "\uD83D\uDC68\u200D\u2764\uFE0F\u200D\uD83D\uDC8B\u200D\uD83D\uDC68", - "description": "kiss (man, man)", - "aliases": [ - "couplekiss_man_man" - ], - "tags": [ - "couple", - "kiss", - "man" - ] - }, - { - "emojiChar": "🖖", - "emoji": "\uD83D\uDD96", - "description": "raised hand with part between middle and ring fingers", - "supports_fitzpatrick": true, - "aliases": [ - "vulcan_salute" - ], - "tags": [ - "vulcan", - "salute" - ] - }, - { - "emojiChar": "🖕", - "emoji": "\uD83D\uDD95", - "description": "reversed hand with middle finger extended", - "supports_fitzpatrick": true, - "aliases": [ - "middle_finger" - ], - "tags": [] - }, - { - "emojiChar": "🙂", - "emoji": "\uD83D\uDE42", - "description": "slightly smiling face", - "aliases": [ - "slightly_smiling", - "slight_smile" - ], - "tags": [] - }, - { - "emojiChar": "🤗", - "emoji": "\uD83E\uDD17", - "description": "hugging face", - "aliases": [ - "hugging", - "hug", - "hugs" - ], - "tags": [] - }, - { - "emojiChar": "🤔", - "emoji": "\uD83E\uDD14", - "description": "thinking face", - "aliases": [ - "thinking", - "think", - "thinker" - ], - "tags": [] - }, - { - "emojiChar": "🙄", - "emoji": "\uD83D\uDE44", - "description": "face with rolling eyes", - "aliases": [ - "eye_roll", - "rolling_eyes" - ], - "tags": [] - }, - { - "emojiChar": "🤐", - "emoji": "\uD83E\uDD10", - "description": "zipper-mouth face", - "aliases": [ - "zipper_mouth", - "zip_it", - "sealed_lips", - "lips_sealed" - ], - "tags": [] - }, - { - "emojiChar": "🤓", - "emoji": "\uD83E\uDD13", - "description": "nerd face", - "aliases": [ - "nerd", - "nerdy" - ], - "tags": [] - }, - { - "emojiChar": "☚", - "emoji": "\u2639", - "description": "white frowning face", - "aliases": [ - "frowning_face" - ], - "tags": [] - }, - { - "emojiChar": "🙁", - "emoji": "\uD83D\uDE41", - "description": "slightly frowning face", - "aliases": [ - "slightly_frowning" - ], - "tags": [] - }, - { - "emojiChar": "🙃", - "emoji": "\uD83D\uDE43", - "description": "upside-down face", - "aliases": [ - "upside_down", - "flipped_face" - ], - "tags": [] - }, - { - "emojiChar": "🤒", - "emoji": "\uD83E\uDD12", - "description": "face with thermometer", - "aliases": [ - "sick", - "ill", - "thermometer_face" - ], - "tags": [] - }, - { - "emojiChar": "🤕", - "emoji": "\uD83E\uDD15", - "description": "face with head bandage", - "aliases": [ - "injured", - "head_bandage", - "head_bandaged", - "bandaged" - ], - "tags": [] - }, - { - "emojiChar": "🤑", - "emoji": "\uD83E\uDD11", - "description": "money-mouth face", - "aliases": [ - "money_mouth", - "money_face" - ], - "tags": [] - }, - { - "emojiChar": "⛑", - "emoji": "\u26D1", - "description": "helmet with white crosse", - "aliases": [ - "helmet_white_cross" - ], - "tags": [] - }, - { - "emojiChar": "🕵", - "emoji": "\uD83D\uDD75", - "description": "sleuth or spy", - "supports_fitzpatrick": true, - "aliases": [ - "detective", - "sleuth", - "private_eye", - "spy" - ], - "tags": [] - }, - { - "emojiChar": "🗣", - "emoji": "\uD83D\uDDE3", - "description": "speaking head in silhouette", - "aliases": [ - "speaking_head_in_silhouette" - ], - "tags": [] - }, - { - "emojiChar": "🕴", - "emoji": "\uD83D\uDD74", - "description": "man in business suit levitating", - "supports_fitzpatrick": true, - "aliases": [ - "hovering_man", - "levitating_man" - ], - "tags": [] - }, - { - "emojiChar": "🤘", - "emoji": "\uD83E\uDD18", - "description": "sign of the horns", - "supports_fitzpatrick": true, - "aliases": [ - "horns_sign", - "rock_on", - "heavy_metal", - "devil_fingers" - ], - "tags": [] - }, - { - "emojiChar": "🖐", - "emoji": "\uD83D\uDD90", - "description": "raised hand with five fingers splayed", - "supports_fitzpatrick": true, - "aliases": [ - "raised_hand_with_fingers_splayed", - "splayed_hand" - ], - "tags": [] - }, - { - "emojiChar": "✍", - "emoji": "\u270D", - "description": "writing hand", - "supports_fitzpatrick": true, - "aliases": [ - "writing", - "writing_hand" - ], - "tags": [] - }, - { - "emojiChar": "👁", - "emoji": "\uD83D\uDC41", - "description": "eye", - "aliases": [ - "eye" - ], - "tags": [] - }, - { - "emojiChar": "❣", - "emoji": "\u2763", - "description": "heavy heart exclamation mark ornament", - "aliases": [ - "exclamation_heart" - ], - "tags": [] - }, - { - "emojiChar": "🕳", - "emoji": "\uD83D\uDD73", - "description": "hole", - "aliases": [ - "hole" - ], - "tags": [] - }, - { - "emojiChar": "🗯", - "emoji": "\uD83D\uDDEF", - "description": "right anger bubble", - "aliases": [ - "right_anger_bubble", - "zig_zag_bubble" - ], - "tags": [] - }, - { - "emojiChar": "🕶", - "emoji": "\uD83D\uDD76", - "description": "dark sunglasses", - "aliases": [ - "dark_sunglasses" - ], - "tags": [] - }, - { - "emojiChar": "🛍", - "emoji": "\uD83D\uDECD", - "description": "shopping bags", - "aliases": [ - "shopping_bags" - ], - "tags": [] - }, - { - "emojiChar": "📿", - "emoji": "\uD83D\uDCFF", - "description": "prayer beads", - "aliases": [ - "prayer_beads", - "dhikr_beads", - "rosary_beads" - ], - "tags": [] - }, - { - "emojiChar": "☠", - "emoji": "\u2620", - "description": "skull and crossbones", - "aliases": [ - "skull_crossbones" - ], - "tags": [] - }, - { - "emojiChar": "🤖", - "emoji": "\uD83E\uDD16", - "description": "robot face", - "aliases": [ - "robot_face", - "bot_face" - ], - "tags": [] - }, - { - "emojiChar": "🦁", - "emoji": "\uD83E\uDD81", - "description": "lion face", - "aliases": [ - "lion_face", - "cute_lion", - "timid_lion" - ], - "tags": [] - }, - { - "emojiChar": "🦄", - "emoji": "\uD83E\uDD84", - "description": "unicorn face", - "aliases": [ - "unicorn_face" - ], - "tags": [] - }, - { - "emojiChar": "🐿", - "emoji": "\uD83D\uDC3F", - "description": "chipmunk", - "aliases": [ - "chipmunk", - "squirrel" - ], - "tags": [] - }, - { - "emojiChar": "🦃", - "emoji": "\uD83E\uDD83", - "description": "turkey", - "aliases": [ - "turkey" - ], - "tags": [] - }, - { - "emojiChar": "🕊", - "emoji": "\uD83D\uDD4A", - "description": "dove of peace, carrying an olive branch", - "aliases": [ - "dove", - "dove_peace" - ], - "tags": [] - }, - { - "emojiChar": "🦀", - "emoji": "\uD83E\uDD80", - "description": "red crab", - "aliases": [ - "crab" - ], - "tags": [] - }, - { - "emojiChar": "🕷", - "emoji": "\uD83D\uDD77", - "description": "black spider with eight legs", - "aliases": [ - "spider" - ], - "tags": [] - }, - { - "emojiChar": "🕸", - "emoji": "\uD83D\uDD78", - "description": "spider web in orb form", - "aliases": [ - "spider_web", - "cobweb" - ], - "tags": [] - }, - { - "emojiChar": "🦂", - "emoji": "\uD83E\uDD82", - "description": "scorpion", - "aliases": [ - "scorpion" - ], - "tags": [] - }, - { - "emojiChar": "🏵", - "emoji": "\uD83C\uDFF5", - "description": "rosette", - "aliases": [ - "rosette" - ], - "tags": [] - }, - { - "emojiChar": "☘", - "emoji": "\u2618", - "description": "shamrock", - "aliases": [ - "shamrock", - "st_patrick" - ], - "tags": [] - }, - { - "emojiChar": "🌶", - "emoji": "\uD83C\uDF36", - "description": "hot pepper", - "aliases": [ - "hot_pepper", - "chili_pepper", - "spice", - "spicy" - ], - "tags": [] - }, - { - "emojiChar": "🧀", - "emoji": "\uD83E\uDDC0", - "description": "cheese wedge", - "aliases": [ - "cheese" - ], - "tags": [] - }, - { - "emojiChar": "🌭", - "emoji": "\uD83C\uDF2D", - "description": "hot dog", - "aliases": [ - "hot_dog" - ], - "tags": [] - }, - { - "emojiChar": "🌮", - "emoji": "\uD83C\uDF2E", - "description": "taco", - "aliases": [ - "taco" - ], - "tags": [] - }, - { - "emojiChar": "🌯", - "emoji": "\uD83C\uDF2F", - "description": "burrito", - "aliases": [ - "burrito", - "wrap" - ], - "tags": [] - }, - { - "emojiChar": "🍿", - "emoji": "\uD83C\uDF7F", - "description": "popcorn", - "aliases": [ - "popcorn" - ], - "tags": [] - }, - { - "emojiChar": "🍾", - "emoji": "\uD83C\uDF7E", - "description": "bottle with popping cork", - "aliases": [ - "champagne", - "sparkling_wine" - ], - "tags": [] - }, - { - "emojiChar": "🍽", - "emoji": "\uD83C\uDF7D", - "description": "fork and knife with plate", - "aliases": [ - "fork_knife_plate" - ], - "tags": [] - }, - { - "emojiChar": "🏺", - "emoji": "\uD83C\uDFFA", - "description": "amphora", - "aliases": [ - "amphora", - "jar", - "vase" - ], - "tags": [] - }, - { - "emojiChar": "🗺", - "emoji": "\uD83D\uDDFA", - "description": "world map", - "aliases": [ - "world_map" - ], - "tags": [] - }, - { - "emojiChar": "🏔", - "emoji": "\uD83C\uDFD4", - "description": "snow capped mountain", - "aliases": [ - "snow_capped_mountain", - "mont_fuji" - ], - "tags": [] - }, - { - "emojiChar": "⛰", - "emoji": "\u26F0", - "description": "mountain", - "aliases": [ - "mountain" - ], - "tags": [] - }, - { - "emojiChar": "🏕", - "emoji": "\uD83C\uDFD5", - "description": "camping with tent and tree", - "aliases": [ - "camping", - "campsite" - ], - "tags": [] - }, - { - "emojiChar": "🏖", - "emoji": "\uD83C\uDFD6", - "description": "beach with umbrella", - "aliases": [ - "breach" - ], - "tags": [] - }, - { - "emojiChar": "🏜", - "emoji": "\uD83C\uDFDC", - "description": "desert with cactus", - "aliases": [ - "desert" - ], - "tags": [] - }, - { - "emojiChar": "🏝", - "emoji": "\uD83C\uDFDD", - "description": "desert island with palm tree", - "aliases": [ - "desert_island" - ], - "tags": [] - }, - { - "emojiChar": "🏞", - "emoji": "\uD83C\uDFDE", - "description": "national park", - "aliases": [ - "national_park" - ], - "tags": [] - }, - { - "emojiChar": "🏟", - "emoji": "\uD83C\uDFDF", - "description": "stadium", - "aliases": [ - "stadium" - ], - "tags": [] - }, - { - "emojiChar": "🏛", - "emoji": "\uD83C\uDFDB", - "description": "classical building", - "aliases": [ - "classical_building" - ], - "tags": [] - }, - { - "emojiChar": "🏗", - "emoji": "\uD83C\uDFD7", - "description": "building in construction with crane", - "aliases": [ - "building_construction", - "crane" - ], - "tags": [] - }, - { - "emojiChar": "🏘", - "emoji": "\uD83C\uDFD8", - "description": "house buildings", - "aliases": [ - "house_buildings", - "multiple_houses" - ], - "tags": [] - }, - { - "emojiChar": "🏙", - "emoji": "\uD83C\uDFD9", - "description": "cityscape", - "aliases": [ - "cityscape" - ], - "tags": [] - }, - { - "emojiChar": "🏚", - "emoji": "\uD83C\uDFDA", - "description": "derelict house", - "aliases": [ - "derelict_house", - "old_house", - "abandoned_house" - ], - "tags": [] - }, - { - "emojiChar": "🛐", - "emoji": "\uD83D\uDED0", - "description": "place of worship", - "aliases": [ - "worship_building", - "worship_place", - "religious_building", - "religious_place" - ], - "tags": [] - }, - { - "emojiChar": "🕋", - "emoji": "\uD83D\uDD4B", - "description": "kaaba", - "aliases": [ - "kaaba", - "mecca" - ], - "tags": [] - }, - { - "emojiChar": "🕌", - "emoji": "\uD83D\uDD4C", - "description": "mosque with domed roof and minaret", - "aliases": [ - "mosque", - "minaret", - "domed_roof" - ], - "tags": [] - }, - { - "emojiChar": "🕍", - "emoji": "\uD83D\uDD4D", - "description": "synagogue with star of David", - "aliases": [ - "synagogue", - "temple", - "jewish" - ], - "tags": [] - }, - { - "emojiChar": "🖼", - "emoji": "\uD83D\uDDBC", - "description": "frame with picture or painting", - "aliases": [ - "picture_frame", - "painting", - "gallery" - ], - "tags": [] - }, - { - "emojiChar": "🛢", - "emoji": "\uD83D\uDEE2", - "description": "oil drum", - "aliases": [ - "oil_drum" - ], - "tags": [] - }, - { - "emojiChar": "🛣", - "emoji": "\uD83D\uDEE3", - "description": "motorway", - "aliases": [ - "motorway", - "highway", - "road", - "interstate", - "freeway" - ], - "tags": [] - }, - { - "emojiChar": "🛤", - "emoji": "\uD83D\uDEE4", - "description": "railway track", - "aliases": [ - "railway_track" - ], - "tags": [] - }, - { - "emojiChar": "🛳", - "emoji": "\uD83D\uDEF3", - "description": "passenger ship", - "aliases": [ - "passenger_ship" - ], - "tags": [] - }, - { - "emojiChar": "⛴", - "emoji": "\u26F4", - "description": "ferry", - "aliases": [ - "ferry" - ], - "tags": [] - }, - { - "emojiChar": "🛥", - "emoji": "\uD83D\uDEE5", - "description": "motor boat", - "aliases": [ - "motor_boat" - ], - "tags": [] - }, - { - "emojiChar": "🛩", - "emoji": "\uD83D\uDEE9", - "description": "small airplane", - "aliases": [ - "small_airplane" - ], - "tags": [] - }, - { - "emojiChar": "🛫", - "emoji": "\uD83D\uDEEB", - "description": "airplane departure", - "aliases": [ - "airplane_departure", - "take_off" - ], - "tags": [] - }, - { - "emojiChar": "🛬", - "emoji": "\uD83D\uDEEC", - "description": "airplane arriving", - "aliases": [ - "airplane_arriving", - "airplane_arrival", - "landing" - ], - "tags": [] - }, - { - "emojiChar": "🛰", - "emoji": "\uD83D\uDEF0", - "description": "satellite", - "aliases": [ - "satellite" - ], - "tags": [] - }, - { - "emojiChar": "🛎", - "emoji": "\uD83D\uDECE", - "description": "bellhop bell", - "aliases": [ - "bellhop_bell" - ], - "tags": [] - }, - { - "emojiChar": "🛌", - "emoji": "\uD83D\uDECC", - "description": "sleeping accommodation", - "supports_fitzpatrick": true, - "aliases": [ - "sleeping_accommodation" - ], - "tags": [] - }, - { - "emojiChar": "🛏", - "emoji": "\uD83D\uDECF", - "description": "bed or bedroom", - "aliases": [ - "bed", - "bedroom" - ], - "tags": [] - }, - { - "emojiChar": "🛋", - "emoji": "\uD83D\uDECB", - "description": "couch and lamp", - "aliases": [ - "couch_lamp", - "couch", - "sofa", - "lounge" - ], - "tags": [] - }, - { - "emojiChar": "⏱", - "emoji": "\u23F1", - "description": "stopwatch", - "aliases": [ - "stopwatch" - ], - "tags": [] - }, - { - "emojiChar": "⏲", - "emoji": "\u23F2", - "description": "timer clock", - "aliases": [ - "timer_clock" - ], - "tags": [] - }, - { - "emojiChar": "🕰", - "emoji": "\uD83D\uDD70", - "description": "mantelpiece clock", - "aliases": [ - "mantelpiece_clock" - ], - "tags": [] - }, - { - "emojiChar": "🌡", - "emoji": "\uD83C\uDF21", - "description": "thermometer", - "aliases": [ - "thermometer", - "hot_weather", - "temperature" - ], - "tags": [] - }, - { - "emojiChar": "⛈", - "emoji": "\u26C8", - "description": "thunder cloud and rain", - "aliases": [ - "thunder_cloud_rain" - ], - "tags": [] - }, - { - "emojiChar": "🌤", - "emoji": "\uD83C\uDF24", - "description": "white sun with small cloud", - "aliases": [ - "white_sun_small_cloud" - ], - "tags": [] - }, - { - "emojiChar": "🌥", - "emoji": "\uD83C\uDF25", - "description": "white sun behind cloud", - "aliases": [ - "white_sun_behind_cloud" - ], - "tags": [] - }, - { - "emojiChar": "🌦", - "emoji": "\uD83C\uDF26", - "description": "white sun behind cloud with rain", - "aliases": [ - "white_sun_behind_cloud_rain" - ], - "tags": [] - }, - { - "emojiChar": "🌧", - "emoji": "\uD83C\uDF27", - "description": "cloud with rain", - "aliases": [ - "cloud_rain" - ], - "tags": [] - }, - { - "emojiChar": "🌨", - "emoji": "\uD83C\uDF28", - "description": "cloud with snow", - "aliases": [ - "cloud_snow" - ], - "tags": [] - }, - { - "emojiChar": "🌩", - "emoji": "\uD83C\uDF29", - "description": "cloud with lightning", - "aliases": [ - "cloud_lightning" - ], - "tags": [] - }, - { - "emojiChar": "🌪", - "emoji": "\uD83C\uDF2A", - "description": "cloud with tornado", - "aliases": [ - "cloud_tornado" - ], - "tags": [] - }, - { - "emojiChar": "🌫", - "emoji": "\uD83C\uDF2B", - "description": "fog", - "aliases": [ - "fog" - ], - "tags": [] - }, - { - "emojiChar": "🌬", - "emoji": "\uD83C\uDF2C", - "description": "wind blowing face", - "aliases": [ - "wind_blowing_face", - "mother_nature", - "blowing_wind" - ], - "tags": [] - }, - { - "emojiChar": "☂", - "emoji": "\u2602", - "description": "open umbrella", - "aliases": [ - "open_umbrella" - ], - "tags": [] - }, - { - "emojiChar": "⛱", - "emoji": "\u26F1", - "description": "umbrella planted on the ground", - "aliases": [ - "planted_umbrella", - "umbrella_on_ground" - ], - "tags": [] - }, - { - "emojiChar": "☃", - "emoji": "\u2603", - "description": "snowman with snow", - "aliases": [ - "snowman_with_snow", - "snowing_snowman" - ], - "tags": [] - }, - { - "emojiChar": "☄", - "emoji": "\u2604", - "description": "comet", - "aliases": [ - "comet", - "light_beam", - "blue_beam" - ], - "tags": [] - }, - { - "emojiChar": "🕎", - "emoji": "\uD83D\uDD4E", - "description": "menorah with nine branches", - "aliases": [ - "menorah", - "candelabrum", - "chanukiah" - ], - "tags": [] - }, - { - "emojiChar": "🎖", - "emoji": "\uD83C\uDF96", - "description": "military medal with ribbon", - "aliases": [ - "military_medal", - "military_decoration" - ], - "tags": [] - }, - { - "emojiChar": "🎗", - "emoji": "\uD83C\uDF97", - "description": "reminder ribbon", - "aliases": [ - "reminder_ribbon", - "awareness_ribbon" - ], - "tags": [] - }, - { - "emojiChar": "🎞", - "emoji": "\uD83C\uDF9E", - "description": "film frames", - "aliases": [ - "film_frames" - ], - "tags": [] - }, - { - "emojiChar": "🎟", - "emoji": "\uD83C\uDF9F", - "description": "admission ticket", - "aliases": [ - "admission_ticket" - ], - "tags": [] - }, - { - "emojiChar": "🏷", - "emoji": "\uD83C\uDFF7", - "description": "label", - "aliases": [ - "label" - ], - "tags": [] - }, - { - "emojiChar": "🏌", - "emoji": "\uD83C\uDFCC", - "description": "golfer swinging a golf club", - "supports_fitzpatrick": true, - "aliases": [ - "golfer", - "golf_club" - ], - "tags": [] - }, - { - "emojiChar": "🏌️‍♂️", - "emoji": "\uD83C\uDFCC\uFE0F\u200D\u2642\uFE0F", - "description": "man golfing", - "supports_fitzpatrick": true, - "aliases": [ - "man_golfer", - "male_golfer", - "man_golfing", - "male_golfing" - ], - "tags": [] - }, - { - "emojiChar": "🏌️‍♀️", - "emoji": "\uD83C\uDFCC\uFE0F\u200D\u2640\uFE0F", - "description": "woman golfing", - "supports_fitzpatrick": true, - "aliases": [ - "woman_golfer", - "female_golfer", - "woman_golfing", - "female_golfing" - ], - "tags": [] - }, - { - "emojiChar": "⛸", - "emoji": "\u26F8", - "description": "single ice skate", - "aliases": [ - "ice_skate", - "ice_skating" - ], - "tags": [] - }, - { - "emojiChar": "⛷", - "emoji": "\u26F7", - "description": "skier", - "aliases": [ - "skier" - ], - "tags": [] - }, - { - "emojiChar": "⛹", - "emoji": "\u26F9", - "description": "person with ball", - "supports_fitzpatrick": true, - "aliases": [ - "person_with_ball" - ], - "tags": [] - }, - { - "emojiChar": "🏋", - "emoji": "\uD83C\uDFCB", - "description": "weight lifter", - "supports_fitzpatrick": true, - "aliases": [ - "weight_lifter" - ], - "tags": [] - }, - { - "emojiChar": "🏎", - "emoji": "\uD83C\uDFCE", - "description": "racing car", - "aliases": [ - "racing_car", - "formula_one", - "f1" - ], - "tags": [] - }, - { - "emojiChar": "🏍", - "emoji": "\uD83C\uDFCD", - "description": "racing motorcycle", - "aliases": [ - "racing_motorcycle", - "motorcycle", - "motorbike" - ], - "tags": [] - }, - { - "emojiChar": "🏅", - "emoji": "\uD83C\uDFC5", - "description": "sports medal", - "aliases": [ - "sports_medal", - "sports_decoration" - ], - "tags": [] - }, - { - "emojiChar": "🏏", - "emoji": "\uD83C\uDFCF", - "description": "cricket bat and ball", - "aliases": [ - "cricket_bat_and_ball", - "cricket_game" - ], - "tags": [] - }, - { - "emojiChar": "🏐", - "emoji": "\uD83C\uDFD0", - "description": "volleyball", - "aliases": [ - "volleyball" - ], - "tags": [] - }, - { - "emojiChar": "🏑", - "emoji": "\uD83C\uDFD1", - "description": "field hockey stick and ball", - "aliases": [ - "field_hockey" - ], - "tags": [] - }, - { - "emojiChar": "🏒", - "emoji": "\uD83C\uDFD2", - "description": "ice hockey stick and puck", - "aliases": [ - "ice_hockey" - ], - "tags": [] - }, - { - "emojiChar": "🏓", - "emoji": "\uD83C\uDFD3", - "description": "table tennis paddle and ball", - "aliases": [ - "table_tennis", - "ping_pong" - ], - "tags": [] - }, - { - "emojiChar": "🏸", - "emoji": "\uD83C\uDFF8", - "description": "badminton racket and shuttlecock", - "aliases": [ - "badminton" - ], - "tags": [] - }, - { - "emojiChar": "🕹", - "emoji": "\uD83D\uDD79", - "description": "joystick", - "aliases": [ - "joystick" - ], - "tags": [] - }, - { - "emojiChar": "⏭", - "emoji": "\u23ED", - "description": "black right-pointing double triangle with vertical bar", - "aliases": [ - "black_right_pointing_double_triangle_with_vertical_bar" - ], - "tags": [] - }, - { - "emojiChar": "⏯", - "emoji": "\u23EF", - "description": "black right-pointing triangle with double vertical bar", - "aliases": [ - "black_right_pointing_triangle_with_double_vertical_bar" - ], - "tags": [] - }, - { - "emojiChar": "⏎", - "emoji": "\u23EE", - "description": "black left-pointing double triangle with vertical bar", - "aliases": [ - "black_left_pointing_double_triangle_with_vertical_bar" - ], - "tags": [] - }, - { - "emojiChar": "⏸", - "emoji": "\u23F8", - "description": "double vertical bar", - "aliases": [ - "double_vertical_bar" - ], - "tags": [] - }, - { - "emojiChar": "⏚", - "emoji": "\u23F9", - "description": "black square for stop", - "aliases": [ - "black_square_for_stop" - ], - "tags": [] - }, - { - "emojiChar": "⏺", - "emoji": "\u23FA", - "description": "black circle for record", - "aliases": [ - "black_circle_for_record" - ], - "tags": [] - }, - { - "emojiChar": "🎙", - "emoji": "\uD83C\uDF99", - "description": "studio microphone", - "aliases": [ - "studio_microphone" - ], - "tags": [] - }, - { - "emojiChar": "🎚", - "emoji": "\uD83C\uDF9A", - "description": "level slider", - "aliases": [ - "level_slider" - ], - "tags": [] - }, - { - "emojiChar": "🎛", - "emoji": "\uD83C\uDF9B", - "description": "control knobs", - "aliases": [ - "control_knobs" - ], - "tags": [] - }, - { - "emojiChar": "*⃣", - "emoji": "*\u20E3", - "description": "keycap asterisk", - "aliases": [ - "keycap_asterisk", - "star_keycap" - ], - "tags": [] - }, - { - "emojiChar": "🖥", - "emoji": "\uD83D\uDDA5", - "description": "desktop computer", - "aliases": [ - "desktop_computer", - "pc_tower", - "imac" - ], - "tags": [] - }, - { - "emojiChar": "🖨", - "emoji": "\uD83D\uDDA8", - "description": "printer", - "aliases": [ - "printer" - ], - "tags": [] - }, - { - "emojiChar": "⌨", - "emoji": "\u2328", - "description": "keyboard", - "aliases": [ - "keyboard" - ], - "tags": [] - }, - { - "emojiChar": "🖱", - "emoji": "\uD83D\uDDB1", - "description": "three button mouse", - "aliases": [ - "computer_mouse", - "three_button_mouse" - ], - "tags": [] - }, - { - "emojiChar": "🖲", - "emoji": "\uD83D\uDDB2", - "description": "trackball", - "aliases": [ - "trackball" - ], - "tags": [] - }, - { - "emojiChar": "📽", - "emoji": "\uD83D\uDCFD", - "description": "film projector", - "aliases": [ - "film_projector" - ], - "tags": [] - }, - { - "emojiChar": "📸", - "emoji": "\uD83D\uDCF8", - "description": "camera with flash", - "aliases": [ - "camera_flash" - ], - "tags": [] - }, - { - "emojiChar": "🕯", - "emoji": "\uD83D\uDD6F", - "description": "candle burning", - "aliases": [ - "candle" - ], - "tags": [] - }, - { - "emojiChar": "🗞", - "emoji": "\uD83D\uDDDE", - "description": "newspaper rolled up for delivery", - "aliases": [ - "rolled_up_newspaper", - "newspaper_delivery" - ], - "tags": [] - }, - { - "emojiChar": "🗳", - "emoji": "\uD83D\uDDF3", - "description": "ballot bow with ballot", - "aliases": [ - "ballot", - "ballot_box" - ], - "tags": [] - }, - { - "emojiChar": "🖋", - "emoji": "\uD83D\uDD8B", - "description": "lower left fountain pen", - "aliases": [ - "lower_left_fountain_pen" - ], - "tags": [] - }, - { - "emojiChar": "🖊", - "emoji": "\uD83D\uDD8A", - "description": "lower left ballpoint pen", - "aliases": [ - "lower_left_ballpoint_pen" - ], - "tags": [] - }, - { - "emojiChar": "🖌", - "emoji": "\uD83D\uDD8C", - "description": "lower left paintbrush", - "aliases": [ - "lower_left_paintbrush" - ], - "tags": [] - }, - { - "emojiChar": "🖍", - "emoji": "\uD83D\uDD8D", - "description": "lower left crayon", - "aliases": [ - "lower_left_crayon" - ], - "tags": [] - }, - { - "emojiChar": "🗂", - "emoji": "\uD83D\uDDC2", - "description": "card index dividers", - "aliases": [ - "card_index_dividers" - ], - "tags": [] - }, - { - "emojiChar": "🗒", - "emoji": "\uD83D\uDDD2", - "description": "spiral note pad", - "aliases": [ - "spiral_note_pad" - ], - "tags": [] - }, - { - "emojiChar": "🗓", - "emoji": "\uD83D\uDDD3", - "description": "spiral calendar pad", - "aliases": [ - "spiral_calendar_pad" - ], - "tags": [] - }, - { - "emojiChar": "🖇", - "emoji": "\uD83D\uDD87", - "description": "multiple paperclips linked together", - "aliases": [ - "linked_paperclips" - ], - "tags": [] - }, - { - "emojiChar": "🗃", - "emoji": "\uD83D\uDDC3", - "description": "card file box", - "aliases": [ - "card_file_box" - ], - "tags": [] - }, - { - "emojiChar": "🗄", - "emoji": "\uD83D\uDDC4", - "description": "file cabinet", - "aliases": [ - "file_cabinet" - ], - "tags": [] - }, - { - "emojiChar": "🗑", - "emoji": "\uD83D\uDDD1", - "description": "wastebasket", - "aliases": [ - "wastebasket" - ], - "tags": [] - }, - { - "emojiChar": "🗝", - "emoji": "\uD83D\uDDDD", - "description": "an ornate old key", - "aliases": [ - "old_key" - ], - "tags": [] - }, - { - "emojiChar": "⛏", - "emoji": "\u26CF", - "description": "pick", - "aliases": [ - "pick" - ], - "tags": [] - }, - { - "emojiChar": "⚒", - "emoji": "\u2692", - "description": "hammer and pick", - "aliases": [ - "hammer_and_pick" - ], - "tags": [] - }, - { - "emojiChar": "🛠", - "emoji": "\uD83D\uDEE0", - "description": "hammer and wrench", - "aliases": [ - "hammer_and_wrench" - ], - "tags": [] - }, - { - "emojiChar": "⚙", - "emoji": "\u2699", - "description": "gear", - "aliases": [ - "gear" - ], - "tags": [] - }, - { - "emojiChar": "🗜", - "emoji": "\uD83D\uDDDC", - "description": "compression", - "aliases": [ - "compression" - ], - "tags": [] - }, - { - "emojiChar": "⚗", - "emoji": "\u2697", - "description": "alembic", - "aliases": [ - "alembic" - ], - "tags": [] - }, - { - "emojiChar": "⚖", - "emoji": "\u2696", - "description": "scales of justice", - "aliases": [ - "scales", - "scales_of_justice" - ], - "tags": [] - }, - { - "emojiChar": "⛓", - "emoji": "\u26D3", - "description": "chains", - "aliases": [ - "chains" - ], - "tags": [] - }, - { - "emojiChar": "🗡", - "emoji": "\uD83D\uDDE1", - "description": "dagger knife", - "aliases": [ - "dagger", - "dagger_knife", - "knife_weapon" - ], - "tags": [] - }, - { - "emojiChar": "⚔", - "emoji": "\u2694", - "description": "crossed swords", - "aliases": [ - "crossed_swords" - ], - "tags": [] - }, - { - "emojiChar": "🛡", - "emoji": "\uD83D\uDEE1", - "description": "shield", - "aliases": [ - "shield" - ], - "tags": [] - }, - { - "emojiChar": "🏹", - "emoji": "\uD83C\uDFF9", - "description": "bow and arrow", - "aliases": [ - "bow_and_arrow", - "bow_arrow", - "archery" - ], - "tags": [] - }, - { - "emojiChar": "⚰", - "emoji": "\u26B0", - "description": "coffin", - "aliases": [ - "coffin", - "funeral", - "casket" - ], - "tags": [] - }, - { - "emojiChar": "⚱", - "emoji": "\u26B1", - "description": "funeral urn", - "aliases": [ - "funeral_urn" - ], - "tags": [] - }, - { - "emojiChar": "🏳", - "emoji": "\uD83C\uDFF3", - "description": "waving white flag", - "aliases": [ - "waving_white_flag" - ], - "tags": [] - }, - { - "emojiChar": "🏴", - "emoji": "\uD83C\uDFF4", - "description": "waving black flag", - "aliases": [ - "waving_black_flag" - ], - "tags": [] - }, - { - "emojiChar": "⚜", - "emoji": "\u269C", - "description": "fleur-de-lis", - "aliases": [ - "fleur_de_lis", - "scouts" - ], - "tags": [] - }, - { - "emojiChar": "⚛", - "emoji": "\u269B", - "description": "atom symbol", - "aliases": [ - "atom", - "atom_symbol" - ], - "tags": [] - }, - { - "emojiChar": "🕉", - "emoji": "\uD83D\uDD49", - "description": "om symbol", - "aliases": [ - "om_symbol", - "pranava", - "aumkara", - "omkara" - ], - "tags": [] - }, - { - "emojiChar": "✡", - "emoji": "\u2721", - "description": "star of David", - "aliases": [ - "star_of_david" - ], - "tags": [] - }, - { - "emojiChar": "☸", - "emoji": "\u2638", - "description": "wheel of Dharma", - "aliases": [ - "wheel_of_dharma" - ], - "tags": [] - }, - { - "emojiChar": "☯", - "emoji": "\u262F", - "description": "yin yang", - "aliases": [ - "yin_yang" - ], - "tags": [] - }, - { - "emojiChar": "✝", - "emoji": "\u271D", - "description": "latin cross", - "aliases": [ - "latin_cross", - "christian_cross" - ], - "tags": [] - }, - { - "emojiChar": "☌", - "emoji": "\u2626", - "description": "orthodox cross", - "aliases": [ - "orthodox_cross" - ], - "tags": [] - }, - { - "emojiChar": "⛩", - "emoji": "\u26E9", - "description": "shinto shrine", - "aliases": [ - "shinto_shrine", - "kami_no_michi" - ], - "tags": [] - }, - { - "emojiChar": "☪", - "emoji": "\u262A", - "description": "star and crescent", - "aliases": [ - "star_and_crescent", - "star_crescent" - ], - "tags": [] - }, - { - "emojiChar": "☎", - "emoji": "\u262E", - "description": "peace symbol", - "aliases": [ - "peace_symbol", - "peace_sign" - ], - "tags": [] - }, - { - "emojiChar": "☢", - "emoji": "\u2622", - "description": "radioactive symbol", - "aliases": [ - "radioactive", - "radioactive_symbol", - "radioactive_sign" - ], - "tags": [] - }, - { - "emojiChar": "☣", - "emoji": "\u2623", - "description": "biohazard symbol", - "aliases": [ - "biohazard", - "biohazard_symbol", - "biohazard_sign" - ], - "tags": [] - }, - { - "emojiChar": "🗨", - "emoji": "\uD83D\uDDE8", - "description": "left speech bubble", - "aliases": [ - "left_speech_bubble" - ], - "tags": [] - }, - { - "emojiChar": "👁‍🗨", - "emoji": "\uD83D\uDC41\u200D\uD83D\uDDE8", - "description": "eye in speech bubble", - "aliases": [ - "eye_in_speech_bubble", - "i_am_a_witness" - ], - "tags": [] - }, - { - "emojiChar": "🤣", - "emoji": "\uD83E\uDD23", - "description": "rolling on the floor laughing", - "aliases": [ - "rolling_on_the_floor_laughing", - "rofl" - ], - "tags": [] - }, - { - "emojiChar": "🤠", - "emoji": "\uD83E\uDD20", - "description": "face with cowboy hat", - "aliases": [ - "face_with_cowboy_hat", - "cowboy" - ], - "tags": [] - }, - { - "emojiChar": "🤡", - "emoji": "\uD83E\uDD21", - "description": "clown face", - "aliases": [ - "clown_face", - "clown" - ], - "tags": [] - }, - { - "emojiChar": "🤥", - "emoji": "\uD83E\uDD25", - "description": "lying face", - "aliases": [ - "lying_face" - ], - "tags": [] - }, - { - "emojiChar": "🤤", - "emoji": "\uD83E\uDD24", - "description": "drooling face", - "aliases": [ - "drooling_face" - ], - "tags": [] - }, - { - "emojiChar": "🤢", - "emoji": "\uD83E\uDD22", - "description": "nauseated face", - "aliases": [ - "nauseated_face" - ], - "tags": [] - }, - { - "emojiChar": "🤧", - "emoji": "\uD83E\uDD27", - "description": "sneezing face", - "aliases": [ - "sneezing_face" - ], - "tags": [] - }, - { - "emojiChar": "🤴", - "emoji": "\uD83E\uDD34", - "description": "prince", - "supports_fitzpatrick": true, - "aliases": [ - "prince" - ], - "tags": [] - }, - { - "emojiChar": "🤶", - "emoji": "\uD83E\uDD36", - "description": "mother christmas", - "supports_fitzpatrick": true, - "aliases": [ - "mother_christmas" - ], - "tags": [] - }, - { - "emojiChar": "🤵", - "emoji": "\uD83E\uDD35", - "description": "man in tuxedo", - "supports_fitzpatrick": true, - "aliases": [ - "man_in_tuxedo" - ], - "tags": [] - }, - { - "emojiChar": "🤷", - "emoji": "\uD83E\uDD37", - "description": "shrug", - "supports_fitzpatrick": true, - "aliases": [ - "shrug" - ], - "tags": [] - }, - { - "emojiChar": "🤦", - "emoji": "\uD83E\uDD26", - "description": "face palm", - "supports_fitzpatrick": true, - "aliases": [ - "face_palm" - ], - "tags": [] - }, - { - "emojiChar": "🤰", - "emoji": "\uD83E\uDD30", - "description": "pregnant woman", - "supports_fitzpatrick": true, - "aliases": [ - "pregnant_woman" - ], - "tags": [] - }, - { - "emojiChar": "🕺", - "emoji": "\uD83D\uDD7A", - "description": "man dancing", - "supports_fitzpatrick": true, - "aliases": [ - "man_dancing" - ], - "tags": [] - }, - { - "emojiChar": "🤳", - "emoji": "\uD83E\uDD33", - "description": "selfie", - "supports_fitzpatrick": true, - "aliases": [ - "selfie" - ], - "tags": [] - }, - { - "emojiChar": "🤞", - "emoji": "\uD83E\uDD1E", - "description": "hand with index and middle fingers crossed", - "supports_fitzpatrick": true, - "aliases": [ - "hand_with_index_and_middle_fingers_crossed" - ], - "tags": [] - }, - { - "emojiChar": "🤙", - "emoji": "\uD83E\uDD19", - "description": "call me hand", - "supports_fitzpatrick": true, - "aliases": [ - "call_me_hand" - ], - "tags": [] - }, - { - "emojiChar": "🤛", - "emoji": "\uD83E\uDD1B", - "description": "left-facing fist", - "supports_fitzpatrick": true, - "aliases": [ - "left-facing_fist" - ], - "tags": [] - }, - { - "emojiChar": "🤜", - "emoji": "\uD83E\uDD1C", - "description": "right-facing fist", - "supports_fitzpatrick": true, - "aliases": [ - "right-facing_fist" - ], - "tags": [] - }, - { - "emojiChar": "🤚", - "emoji": "\uD83E\uDD1A", - "description": "raised back of hand", - "supports_fitzpatrick": true, - "aliases": [ - "raised_back_of_hand" - ], - "tags": [] - }, - { - "emojiChar": "🤝", - "emoji": "\uD83E\uDD1D", - "description": "handshake", - "supports_fitzpatrick": true, - "aliases": [ - "handshake" - ], - "tags": [] - }, - { - "emojiChar": "🖤", - "emoji": "\uD83D\uDDA4", - "description": "black heart", - "aliases": [ - "black_heart" - ], - "tags": [] - }, - { - "emojiChar": "🦍", - "emoji": "\uD83E\uDD8D", - "description": "gorilla", - "aliases": [ - "gorilla" - ], - "tags": [] - }, - { - "emojiChar": "🦊", - "emoji": "\uD83E\uDD8A", - "description": "fox face", - "aliases": [ - "fox_face" - ], - "tags": [] - }, - { - "emojiChar": "🦌", - "emoji": "\uD83E\uDD8C", - "description": "deer", - "aliases": [ - "deer" - ], - "tags": [] - }, - { - "emojiChar": "🦏", - "emoji": "\uD83E\uDD8F", - "description": "rhinoceros", - "aliases": [ - "rhinoceros" - ], - "tags": [] - }, - { - "emojiChar": "🦇", - "emoji": "\uD83E\uDD87", - "description": "bat", - "aliases": [ - "bat" - ], - "tags": [] - }, - { - "emojiChar": "🦅", - "emoji": "\uD83E\uDD85", - "description": "eagle", - "aliases": [ - "eagle" - ], - "tags": [] - }, - { - "emojiChar": "🦆", - "emoji": "\uD83E\uDD86", - "description": "duck", - "aliases": [ - "duck" - ], - "tags": [] - }, - { - "emojiChar": "🦉", - "emoji": "\uD83E\uDD89", - "description": "owl", - "aliases": [ - "owl" - ], - "tags": [] - }, - { - "emojiChar": "🦎", - "emoji": "\uD83E\uDD8E", - "description": "lizard", - "aliases": [ - "lizard" - ], - "tags": [] - }, - { - "emojiChar": "🦈", - "emoji": "\uD83E\uDD88", - "description": "shark", - "aliases": [ - "shark" - ], - "tags": [] - }, - { - "emojiChar": "🦐", - "emoji": "\uD83E\uDD90", - "description": "shrimp", - "aliases": [ - "shrimp" - ], - "tags": [] - }, - { - "emojiChar": "🦑", - "emoji": "\uD83E\uDD91", - "description": "squid", - "aliases": [ - "squid" - ], - "tags": [] - }, - { - "emojiChar": "🦋", - "emoji": "\uD83E\uDD8B", - "description": "butterfly", - "aliases": [ - "butterfly" - ], - "tags": [] - }, - { - "emojiChar": "🥀", - "emoji": "\uD83E\uDD40", - "description": "wilted flower", - "aliases": [ - "wilted_flower" - ], - "tags": [] - }, - { - "emojiChar": "🥝", - "emoji": "\uD83E\uDD5D", - "description": "kiwifruit", - "aliases": [ - "kiwifruit" - ], - "tags": [] - }, - { - "emojiChar": "🥑", - "emoji": "\uD83E\uDD51", - "description": "avocado", - "aliases": [ - "avocado" - ], - "tags": [] - }, - { - "emojiChar": "🥔", - "emoji": "\uD83E\uDD54", - "description": "potato", - "aliases": [ - "potato" - ], - "tags": [] - }, - { - "emojiChar": "🥕", - "emoji": "\uD83E\uDD55", - "description": "carrot", - "aliases": [ - "carrot" - ], - "tags": [] - }, - { - "emojiChar": "🥒", - "emoji": "\uD83E\uDD52", - "description": "cucumber", - "aliases": [ - "cucumber" - ], - "tags": [] - }, - { - "emojiChar": "🥜", - "emoji": "\uD83E\uDD5C", - "description": "peanuts", - "aliases": [ - "peanuts" - ], - "tags": [] - }, - { - "emojiChar": "🥐", - "emoji": "\uD83E\uDD50", - "description": "croissant", - "aliases": [ - "croissant" - ], - "tags": [] - }, - { - "emojiChar": "🥖", - "emoji": "\uD83E\uDD56", - "description": "baguette bread", - "aliases": [ - "baguette_bread" - ], - "tags": [] - }, - { - "emojiChar": "🥞", - "emoji": "\uD83E\uDD5E", - "description": "pancakes", - "aliases": [ - "pancakes" - ], - "tags": [] - }, - { - "emojiChar": "🥓", - "emoji": "\uD83E\uDD53", - "description": "bacon", - "aliases": [ - "bacon" - ], - "tags": [] - }, - { - "emojiChar": "🥙", - "emoji": "\uD83E\uDD59", - "description": "stuffed flatbread", - "aliases": [ - "stuffed_flatbread" - ], - "tags": [] - }, - { - "emojiChar": "🥚", - "emoji": "\uD83E\uDD5A", - "description": "egg", - "aliases": [ - "egg" - ], - "tags": [] - }, - { - "emojiChar": "🥘", - "emoji": "\uD83E\uDD58", - "description": "shallow pan of food", - "aliases": [ - "shallow_pan_of_food" - ], - "tags": [] - }, - { - "emojiChar": "🥗", - "emoji": "\uD83E\uDD57", - "description": "green salad", - "aliases": [ - "green_salad" - ], - "tags": [] - }, - { - "emojiChar": "🥛", - "emoji": "\uD83E\uDD5B", - "description": "glass of milk", - "aliases": [ - "glass_of_milk" - ], - "tags": [] - }, - { - "emojiChar": "🥂", - "emoji": "\uD83E\uDD42", - "description": "clinking glasses", - "aliases": [ - "clinking_glasses" - ], - "tags": [] - }, - { - "emojiChar": "🥃", - "emoji": "\uD83E\uDD43", - "description": "tumbler glass", - "aliases": [ - "tumbler_glass" - ], - "tags": [] - }, - { - "emojiChar": "🥄", - "emoji": "\uD83E\uDD44", - "description": "spoon", - "aliases": [ - "spoon" - ], - "tags": [] - }, - { - "emojiChar": "🛑", - "emoji": "\uD83D\uDED1", - "description": "octagonal sign", - "aliases": [ - "octagonal_sign", - "stop_sign" - ], - "tags": [] - }, - { - "emojiChar": "🛴", - "emoji": "\uD83D\uDEF4", - "description": "scooter", - "aliases": [ - "scooter" - ], - "tags": [] - }, - { - "emojiChar": "🛵", - "emoji": "\uD83D\uDEF5", - "description": "motor scooter", - "aliases": [ - "motor_scooter" - ], - "tags": [] - }, - { - "emojiChar": "🛶", - "emoji": "\uD83D\uDEF6", - "description": "canoe", - "aliases": [ - "canoe" - ], - "tags": [] - }, - { - "emojiChar": "🥇", - "emoji": "\uD83E\uDD47", - "description": "first place medal", - "aliases": [ - "first_place_medal" - ], - "tags": [] - }, - { - "emojiChar": "🥈", - "emoji": "\uD83E\uDD48", - "description": "second place medal", - "aliases": [ - "second_place_medal" - ], - "tags": [] - }, - { - "emojiChar": "🥉", - "emoji": "\uD83E\uDD49", - "description": "third place medal", - "aliases": [ - "third_place_medal" - ], - "tags": [] - }, - { - "emojiChar": "🥊", - "emoji": "\uD83E\uDD4A", - "description": "boxing glove", - "aliases": [ - "boxing_glove" - ], - "tags": [] - }, - { - "emojiChar": "🥋", - "emoji": "\uD83E\uDD4B", - "description": "martial arts uniform", - "aliases": [ - "martial_arts_uniform" - ], - "tags": [] - }, - { - "emojiChar": "🤸", - "emoji": "\uD83E\uDD38", - "description": "person doing cartwheel", - "supports_fitzpatrick": true, - "aliases": [ - "person_doing_cartwheel" - ], - "tags": [] - }, - { - "emojiChar": "🤸‍♂️", - "emoji": "\uD83E\uDD38\u200D\u2642\uFE0F", - "description": "man doing cartwheel", - "supports_fitzpatrick": true, - "aliases": [ - "man_doing_cartwheel", - "male_doing_cartwheel" - ], - "tags": [] - }, - { - "emojiChar": "🤸‍♀️", - "emoji": "\uD83E\uDD38\u200D\u2640\uFE0F", - "description": "woman doing cartwheel", - "supports_fitzpatrick": true, - "aliases": [ - "woman_doing_cartwheel", - "female_doing_cartwheel" - ], - "tags": [] - }, - { - "emojiChar": "🤼", - "emoji": "\uD83E\uDD3C", - "description": "wrestlers", - "supports_fitzpatrick": true, - "aliases": [ - "wrestlers" - ], - "tags": [] - }, - { - "emojiChar": "🤼‍♂️", - "emoji": "\uD83E\uDD3C\u200D\u2642\uFE0F", - "description": "man wrestlers", - "supports_fitzpatrick": true, - "aliases": [ - "man_wrestlers", - "male_wrestlers" - ], - "tags": [] - }, - { - "emojiChar": "🤼‍♀️", - "emoji": "\uD83E\uDD3C\u200D\u2640\uFE0F", - "description": "woman wrestlers", - "supports_fitzpatrick": true, - "aliases": [ - "woman_wrestlers", - "female_wrestlers" - ], - "tags": [] - }, - { - "emojiChar": "🤽", - "emoji": "\uD83E\uDD3D", - "description": "water polo", - "supports_fitzpatrick": true, - "aliases": [ - "water_polo" - ], - "tags": [] - }, - { - "emojiChar": "🤽‍♂️", - "emoji": "\uD83E\uDD3D\u200D\u2642\uFE0F", - "description": "man water polo", - "supports_fitzpatrick": true, - "aliases": [ - "man_water_polo", - "male_water_polo" - ], - "tags": [] - }, - { - "emojiChar": "🤽‍♀️", - "emoji": "\uD83E\uDD3D\u200D\u2640\uFE0F", - "description": "woman water polo", - "supports_fitzpatrick": true, - "aliases": [ - "woman_water_polo", - "female_water_polo" - ], - "tags": [] - }, - { - "emojiChar": "🤾", - "emoji": "\uD83E\uDD3E", - "description": "handball", - "supports_fitzpatrick": true, - "aliases": [ - "handball" - ], - "tags": [] - }, - { - "emojiChar": "🤾‍♂️", - "emoji": "\uD83E\uDD3E\u200D\u2642\uFE0F", - "description": "man handball", - "supports_fitzpatrick": true, - "aliases": [ - "man_handball", - "male_handball" - ], - "tags": [] - }, - { - "emojiChar": "🤾‍♀️", - "emoji": "\uD83E\uDD3E\u200D\u2640\uFE0F", - "description": "woman handball", - "supports_fitzpatrick": true, - "aliases": [ - "woman_handball", - "female_handball" - ], - "tags": [] - }, - { - "emojiChar": "🤺", - "emoji": "\uD83E\uDD3A", - "description": "fencer", - "aliases": [ - "fencer" - ], - "tags": [] - }, - { - "emojiChar": "🥅", - "emoji": "\uD83E\uDD45", - "description": "goal net", - "aliases": [ - "goal_net" - ], - "tags": [] - }, - { - "emojiChar": "🤹", - "emoji": "\uD83E\uDD39", - "description": "juggling", - "supports_fitzpatrick": true, - "aliases": [ - "juggling" - ], - "tags": [] - }, - { - "emojiChar": "🤹‍♂️", - "emoji": "\uD83E\uDD39\u200D\u2642\uFE0F", - "description": "man juggling", - "supports_fitzpatrick": true, - "aliases": [ - "man_juggling", - "male_juggling" - ], - "tags": [] - }, - { - "emojiChar": "🤹‍♀️", - "emoji": "\uD83E\uDD39\u200D\u2640\uFE0F", - "description": "woman juggling", - "supports_fitzpatrick": true, - "aliases": [ - "woman_juggling", - "female_juggling" - ], - "tags": [] - }, - { - "emojiChar": "🥁", - "emoji": "\uD83E\uDD41", - "description": "drum with drumsticks", - "aliases": [ - "drum_with_drumsticks" - ], - "tags": [] - }, - { - "emojiChar": "🛒", - "emoji": "\uD83D\uDED2", - "description": "shopping trolley", - "aliases": [ - "shopping_trolley", - "shopping_cart" - ], - "tags": [] - }, - { - "emojiChar": "👨‍⚕️", - "emoji": "\uD83D\uDC68\u200D\u2695\uFE0F", - "description": "man health worker", - "supports_fitzpatrick": true, - "aliases": [ - "male_health_worker", - "man_health_worker" - ], - "tags": [] - }, - { - "emojiChar": "👩‍⚕️", - "emoji": "\uD83D\uDC69\u200D\u2695\uFE0F", - "description": "woman health worker", - "supports_fitzpatrick": true, - "aliases": [ - "female_health_worker", - "woman_health_worker" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🎓", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDF93", - "description": "man student", - "supports_fitzpatrick": true, - "aliases": [ - "male_student", - "man_student" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🎓", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDF93", - "description": "woman student", - "supports_fitzpatrick": true, - "aliases": [ - "female_student", - "woman_student" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🏫", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDFEB", - "description": "man teacher", - "supports_fitzpatrick": true, - "aliases": [ - "male_teacher", - "man_teacher" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🏫", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDFEB", - "description": "woman teacher", - "supports_fitzpatrick": true, - "aliases": [ - "female_teacher", - "woman_teacher" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🌾", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDF3E", - "description": "man farmer", - "supports_fitzpatrick": true, - "aliases": [ - "male_farmer", - "man_farmer" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🌾", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDF3E", - "description": "woman famer", - "supports_fitzpatrick": true, - "aliases": [ - "female_farmer", - "woman_farmer" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🍳", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDF73", - "description": "man cook", - "supports_fitzpatrick": true, - "aliases": [ - "male_cook", - "man_cook" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🍳", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDF73", - "description": "woman cook", - "supports_fitzpatrick": true, - "aliases": [ - "female_cook", - "woman_cook" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🔧", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDD27", - "description": "man mechanic", - "supports_fitzpatrick": true, - "aliases": [ - "male_mechanic", - "man_mechanic" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🔧", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDD27", - "description": "woman mechanic", - "supports_fitzpatrick": true, - "aliases": [ - "female_mechanic", - "woman_mechanic" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🏭", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDFED", - "description": "man factory worker", - "supports_fitzpatrick": true, - "aliases": [ - "male_factory_worker", - "man_factory_worker" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🏭", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDFED", - "description": "woman factory worker", - "supports_fitzpatrick": true, - "aliases": [ - "female_factory_worker", - "woman_factory_worker" - ], - "tags": [] - }, - { - "emojiChar": "👨‍💼", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDCBC", - "description": "man office worker", - "supports_fitzpatrick": true, - "aliases": [ - "male_office_worker", - "man_office_worker" - ], - "tags": [] - }, - { - "emojiChar": "👩‍💼", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDCBC", - "description": "woman office worker", - "supports_fitzpatrick": true, - "aliases": [ - "female_office_worker", - "woman_office_worker" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🔬", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDD2C", - "description": "man scientist", - "supports_fitzpatrick": true, - "aliases": [ - "male_scientist", - "man_scientist" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🔬", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDD2C", - "description": "woman scientist", - "supports_fitzpatrick": true, - "aliases": [ - "female_scientist", - "woman_scientist" - ], - "tags": [] - }, - { - "emojiChar": "👨‍💻", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDCBB", - "description": "man technologist", - "supports_fitzpatrick": true, - "aliases": [ - "male_technologist", - "man_technologist" - ], - "tags": [] - }, - { - "emojiChar": "👩‍💻", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDCBB", - "description": "woman technologist", - "supports_fitzpatrick": true, - "aliases": [ - "female_technologist", - "woman_technologist" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🎤", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDFA4", - "description": "man singer", - "supports_fitzpatrick": true, - "aliases": [ - "male_singer", - "man_singer" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🎤", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDFA4", - "description": "woman singer", - "supports_fitzpatrick": true, - "aliases": [ - "female_singer", - "woman_singer" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🎨", - "emoji": "\uD83D\uDC68\u200D\uD83C\uDFA8", - "description": "man artist", - "supports_fitzpatrick": true, - "aliases": [ - "male_artist", - "man_artist" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🎨", - "emoji": "\uD83D\uDC69\u200D\uD83C\uDFA8", - "description": "woman artist", - "supports_fitzpatrick": true, - "aliases": [ - "female_artist", - "woman_artist" - ], - "tags": [] - }, - { - "emojiChar": "👨‍✈️", - "emoji": "\uD83D\uDC68\u200D\u2708\uFE0F", - "description": "man pilot", - "supports_fitzpatrick": true, - "aliases": [ - "male_pilot", - "man_pilot" - ], - "tags": [] - }, - { - "emojiChar": "👩‍✈️", - "emoji": "\uD83D\uDC69\u200D\u2708\uFE0F", - "description": "woman pilot", - "supports_fitzpatrick": true, - "aliases": [ - "female_pilot", - "woman_pilot" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🚀", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDE80", - "description": "man astronaut", - "supports_fitzpatrick": true, - "aliases": [ - "male_astronaut", - "man_astronaut" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🚀", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDE80", - "description": "woman astronaut", - "supports_fitzpatrick": true, - "aliases": [ - "female_astronaut", - "woman_astronaut" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🚒", - "emoji": "\uD83D\uDC68\u200D\uD83D\uDE92", - "description": "man firefighter", - "supports_fitzpatrick": true, - "aliases": [ - "male_firefighter", - "man_firefighter" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🚒", - "emoji": "\uD83D\uDC69\u200D\uD83D\uDE92", - "description": "woman firefighter", - "supports_fitzpatrick": true, - "aliases": [ - "female_firefighter", - "woman_firefighter" - ], - "tags": [] - }, - { - "emojiChar": "🤦‍♀️", - "emoji": "\uD83E\uDD26\u200D\u2640\uFE0F", - "description": "woman facepalm", - "supports_fitzpatrick": true, - "aliases": [ - "female_facepalm", - "woman_facepalm" - ], - "tags": [] - }, - { - "emojiChar": "🤷‍♂️", - "emoji": "\uD83E\uDD37\u200D\u2642\uFE0F", - "description": "man shrug", - "supports_fitzpatrick": true, - "aliases": [ - "male_shrug", - "man_shrug" - ], - "tags": [] - }, - { - "emojiChar": "🤷‍♀️", - "emoji": "\uD83E\uDD37\u200D\u2640\uFE0F", - "description": "woman shrug", - "supports_fitzpatrick": true, - "aliases": [ - "female_shrug", - "woman_shrug" - ], - "tags": [] - }, - { - "emojiChar": "⚕", - "emoji": "\u2695", - "description": "medical symbol", - "aliases": [ - "medical_symbol", - "staff_of_aesculapius" - ], - "tags": [] - }, - { - "emojiChar": "👨‍⚖️", - "emoji": "\uD83D\uDC68\u200D\u2696\uFE0F", - "description": "man judge", - "aliases": [ - "man_judge", - "male_judge" - ], - "tags": [] - }, - { - "emojiChar": "👩‍⚖️", - "emoji": "\uD83D\uDC69\u200D\u2696\uFE0F", - "description": "woman judge", - "aliases": [ - "woman_judge", - "female_judge" - ], - "tags": [] - }, - { - "emojiChar": "🤩", - "emoji": "\uD83E\uDD29", - "description": "star-struck", - "aliases": [ - "star_struck", - "excited", - "star_eyes", - "starry_eyed", - "wow_face", - "face_with_starry_eyes", - "grinning_face_with_star_eyes" - ], - "tags": [] - }, - { - "emojiChar": "🤪", - "emoji": "\uD83E\uDD2A", - "description": "zany face", - "aliases": [ - "zany_face", - "crazy_eyes", - "wild", - "goofy_face", - "grinning_face_with_one_large_and_one_small_eye" - ], - "tags": [] - }, - { - "emojiChar": "🤭", - "emoji": "\uD83E\uDD2D", - "description": "face with hand over mouth", - "aliases": [ - "face_with_hand_over_mouth", - "blushing_face_with_hand_over_mouth", - "smiling_face_with_smiling_eyes_and_hand_covering_mouth" - ], - "tags": [] - }, - { - "emojiChar": "🤫", - "emoji": "\uD83E\uDD2B", - "description": "shushing face", - "aliases": [ - "shushing_face", - "hush", - "quiet", - "shh", - "face_with_finger_covering_closed_lips" - ], - "tags": [] - }, - { - "emojiChar": "🤨", - "emoji": "\uD83E\uDD28", - "description": "face with raised eyebrow", - "aliases": [ - "face_with_raised_eyebrow", - "colbert", - "the_rock", - "face_with_one_eyebrow_raised" - ], - "tags": [] - }, - { - "emojiChar": "🤮", - "emoji": "\uD83E\uDD2E", - "description": "face vomiting", - "aliases": [ - "face_vomiting", - "spew", - "throwing_up", - "vomit", - "vomiting_face", - "face_with_open_mouth_vomiting" - ], - "tags": [] - }, - { - "emojiChar": "🤯", - "emoji": "\uD83E\uDD2F", - "description": "exploding head", - "aliases": [ - "exploding_head", - "mind_blown", - "shocked_face_with_exploding_head" - ], - "tags": [] - }, - { - "emojiChar": "🧐", - "emoji": "\uD83E\uDDD0", - "description": "face with monocle", - "aliases": [ - "face_with_monocle" - ], - "tags": [] - }, - { - "emojiChar": "🤬", - "emoji": "\uD83E\uDD2C", - "description": "face with symbols on mouth", - "aliases": [ - "face_with_symbols_on_mouth", - "cursing", - "cussing", - "grawlix", - "swearing", - "face_with_symbols_over_mouth", - "serious_face_with_symbols_covering_mouth" - ], - "tags": [] - }, - { - "emojiChar": "🧡", - "emoji": "\uD83E\uDDE1", - "description": "orange heart", - "aliases": [ - "orange_heart" - ], - "tags": [] - }, - { - "emojiChar": "🤟", - "emoji": "\uD83E\uDD1F", - "description": "love you gesture", - "supports_fitzpatrick": true, - "aliases": [ - "love_you_gesture", - "i_love_you_hand_sign" - ], - "tags": [] - }, - { - "emojiChar": "🤲", - "emoji": "\uD83E\uDD32", - "description": "palms up together", - "supports_fitzpatrick": true, - "aliases": [ - "palms_up_together", - "dua", - "palms_together_facing_up" - ], - "tags": [] - }, - { - "emojiChar": "🧠", - "emoji": "\uD83E\uDDE0", - "description": "brain", - "aliases": [ - "brain" - ], - "tags": [] - }, - { - "emojiChar": "🧒", - "emoji": "\uD83E\uDDD2", - "description": "child", - "supports_fitzpatrick": true, - "aliases": [ - "child", - "gender_neutral_child" - ], - "tags": [] - }, - { - "emojiChar": "🧑", - "emoji": "\uD83E\uDDD1", - "description": "person", - "supports_fitzpatrick": true, - "aliases": [ - "person", - "gender_neutral_adult", - "gender_neutral_person" - ], - "tags": [] - }, - { - "emojiChar": "🧔", - "emoji": "\uD83E\uDDD4", - "description": "man: beard", - "supports_fitzpatrick": true, - "aliases": [ - "beard", - "bearded_man", - "bearded_person", - "man_with_beard", - "person_with_beard" - ], - "tags": [] - }, - { - "emojiChar": "🧓", - "emoji": "\uD83E\uDDD3", - "description": "older person", - "supports_fitzpatrick": true, - "aliases": [ - "older_person", - "gender_neutral_older_person", - "older_adult", - "gender_neutral_older_adult" - ], - "tags": [] - }, - { - "emojiChar": "🧕", - "emoji": "\uD83E\uDDD5", - "description": "person with headscarf", - "supports_fitzpatrick": true, - "aliases": [ - "person_with_headscarf", - "woman_with_headscarf", - "hijab" - ], - "tags": [] - }, - { - "emojiChar": "🤱", - "emoji": "\uD83E\uDD31", - "description": "breastfeeding", - "supports_fitzpatrick": true, - "aliases": [ - "breastfeeding" - ], - "tags": [] - }, - { - "emojiChar": "🧙", - "emoji": "\uD83E\uDDD9", - "description": "mage", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "mage", - "gender_neutral_mage" - ], - "tags": [ - "mage" - ] - }, - { - "emojiChar": "🧙‍♂️", - "emoji": "\uD83E\uDDD9\u200D\u2642\uFE0F", - "description": "man mage", - "supports_fitzpatrick": true, - "aliases": [ - "man_mage", - "wizard", - "sorcerer" - ], - "tags": [ - "mage" - ] - }, - { - "emojiChar": "🧙‍♀️", - "emoji": "\uD83E\uDDD9\u200D\u2640\uFE0F", - "description": "woman mage", - "supports_fitzpatrick": true, - "aliases": [ - "woman_mage", - "witch", - "sorceress" - ], - "tags": [ - "mage" - ] - }, - { - "emojiChar": "🧚", - "emoji": "\uD83E\uDDDA", - "description": "fairy", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "fairy", - "gender_neutral_fairy" - ], - "tags": [ - "fairy" - ] - }, - { - "emojiChar": "🧚‍♂️", - "emoji": "\uD83E\uDDDA\u200D\u2642\uFE0F", - "description": "man fairy", - "supports_fitzpatrick": true, - "aliases": [ - "man_fairy" - ], - "tags": [ - "fairy" - ] - }, - { - "emojiChar": "🧚‍♀️", - "emoji": "\uD83E\uDDDA\u200D\u2640\uFE0F", - "description": "woman fairy", - "supports_fitzpatrick": true, - "aliases": [ - "woman_fairy" - ], - "tags": [ - "fairy" - ] - }, - { - "emojiChar": "🧛", - "emoji": "\uD83E\uDDDB", - "description": "vampire", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "vampire", - "gender_neutral_vampire" - ], - "tags": [ - "vampire" - ] - }, - { - "emojiChar": "🧛‍♂️", - "emoji": "\uD83E\uDDDB\u200D\u2642\uFE0F", - "description": "man vampire", - "supports_fitzpatrick": true, - "aliases": [ - "man_vampire", - "dracula" - ], - "tags": [ - "vampire" - ] - }, - { - "emojiChar": "🧛‍♀️", - "emoji": "\uD83E\uDDDB\u200D\u2640\uFE0F", - "description": "woman vampire", - "supports_fitzpatrick": true, - "aliases": [ - "woman_vampire" - ], - "tags": [ - "vampire" - ] - }, - { - "emojiChar": "🧜", - "emoji": "\uD83E\uDDDC", - "description": "merperson", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "merperson", - "gender_neutral_merperson" - ], - "tags": [ - "merperson" - ] - }, - { - "emojiChar": "🧜‍♂️", - "emoji": "\uD83E\uDDDC\u200D\u2642\uFE0F", - "description": "merman", - "supports_fitzpatrick": true, - "aliases": [ - "merman", - "merboy", - "man_merperson" - ], - "tags": [ - "merperson" - ] - }, - { - "emojiChar": "🧜‍♀️", - "emoji": "\uD83E\uDDDC\u200D\u2640\uFE0F", - "description": "mermaid", - "supports_fitzpatrick": true, - "aliases": [ - "mermaid", - "mergirl", - "woman_merperson" - ], - "tags": [ - "merperson" - ] - }, - { - "emojiChar": "🧝", - "emoji": "\uD83E\uDDDD", - "description": "elf", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "elf", - "gender_neutral_elf" - ], - "tags": [ - "elf" - ] - }, - { - "emojiChar": "🧝‍♂️", - "emoji": "\uD83E\uDDDD\u200D\u2642\uFE0F", - "description": "man elf", - "supports_fitzpatrick": true, - "aliases": [ - "man_elf", - "legolas" - ], - "tags": [ - "elf" - ] - }, - { - "emojiChar": "🧝‍♀️", - "emoji": "\uD83E\uDDDD\u200D\u2640\uFE0F", - "description": "woman elf", - "supports_fitzpatrick": true, - "aliases": [ - "woman_elf" - ], - "tags": [ - "elf" - ] - }, - { - "emojiChar": "🧞", - "emoji": "\uD83E\uDDDE", - "description": "genie", - "supports_gender": true, - "aliases": [ - "genie", - "gender_neutral_genie", - "djinni", - "jinni" - ], - "tags": [ - "genie" - ] - }, - { - "emojiChar": "🧞‍♂️", - "emoji": "\uD83E\uDDDE\u200D\u2642\uFE0F", - "description": "man genie", - "aliases": [ - "man_genie" - ], - "tags": [ - "genie" - ] - }, - { - "emojiChar": "🧞‍♀️", - "emoji": "\uD83E\uDDDE\u200D\u2640\uFE0F", - "description": "woman genie", - "aliases": [ - "woman_genie" - ], - "tags": [ - "genie" - ] - }, - { - "emojiChar": "🧟", - "emoji": "\uD83E\uDDDF", - "description": "zombie", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "zombie", - "gender_neutral_zombie" - ], - "tags": [ - "zombie" - ] - }, - { - "emojiChar": "🧟‍♂️", - "emoji": "\uD83E\uDDDF\u200D\u2642\uFE0F", - "description": "man zombie", - "supports_fitzpatrick": true, - "aliases": [ - "man_zombie" - ], - "tags": [ - "zombie" - ] - }, - { - "emojiChar": "🧟‍♀️", - "emoji": "\uD83E\uDDDF\u200D\u2640\uFE0F", - "description": "woman zombie", - "supports_fitzpatrick": true, - "aliases": [ - "woman_zombie" - ], - "tags": [ - "zombie" - ] - }, - { - "emojiChar": "🧖", - "emoji": "\uD83E\uDDD6", - "description": "person in steamy room", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "person_in_steamy_room", - "sauna" - ], - "tags": [ - "person_in_steamy_room" - ] - }, - { - "emojiChar": "🧖‍♂️", - "emoji": "\uD83E\uDDD6\u200D\u2642\uFE0F", - "description": "man in steamy room", - "supports_fitzpatrick": true, - "aliases": [ - "man_in_steamy_room", - "man_in_sauna" - ], - "tags": [ - "person_in_steamy_room" - ] - }, - { - "emojiChar": "🧖‍♀️", - "emoji": "\uD83E\uDDD6\u200D\u2640\uFE0F", - "description": "woman in steamy room", - "supports_fitzpatrick": true, - "aliases": [ - "woman_in_steamy_room", - "woman_in_sauna" - ], - "tags": [ - "person_in_steamy_room" - ] - }, - { - "emojiChar": "🧗", - "emoji": "\uD83E\uDDD7", - "description": "person climbing", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "person_climbing", - "climber", - "rock_climbing" - ], - "tags": [ - "person_climbing" - ] - }, - { - "emojiChar": "🧗‍♂️", - "emoji": "\uD83E\uDDD7\u200D\u2642\uFE0F", - "description": "man climbing", - "supports_fitzpatrick": true, - "aliases": [ - "man_climbing", - "man_climber", - "man_rock_climbing" - ], - "tags": [ - "person_climbing" - ] - }, - { - "emojiChar": "🧗‍♀️", - "emoji": "\uD83E\uDDD7\u200D\u2640\uFE0F", - "description": "woman climbing", - "supports_fitzpatrick": true, - "aliases": [ - "woman_climbing", - "woman_climber", - "woman_rock_climbing" - ], - "tags": [ - "person_climbing" - ] - }, - { - "emojiChar": "🧘", - "emoji": "\uD83E\uDDD8", - "description": "person in lotus position", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "person_in_lotus_position", - "yoga", - "meditation" - ], - "tags": [ - "person_in_lotus_position" - ] - }, - { - "emojiChar": "🧘‍♂️", - "emoji": "\uD83E\uDDD8\u200D\u2642\uFE0F", - "description": "man in lotus position", - "supports_fitzpatrick": true, - "aliases": [ - "man_in_lotus_position", - "man_yoga", - "man_meditation" - ], - "tags": [ - "person_in_lotus_position" - ] - }, - { - "emojiChar": "🧘‍♀️", - "emoji": "\uD83E\uDDD8\u200D\u2640\uFE0F", - "description": "woman in lotus position", - "supports_fitzpatrick": true, - "aliases": [ - "woman_in_lotus_position", - "woman_yoga", - "woman_meditation" - ], - "tags": [ - "person_in_lotus_position" - ] - }, - { - "emojiChar": "🦓", - "emoji": "\uD83E\uDD93", - "description": "zebra face", - "aliases": [ - "zebra_face", - "zebra" - ], - "tags": [] - }, - { - "emojiChar": "🦒", - "emoji": "\uD83E\uDD92", - "description": "giraffe face", - "aliases": [ - "giraffe_face", - "giraffe" - ], - "tags": [] - }, - { - "emojiChar": "🦔", - "emoji": "\uD83E\uDD94", - "description": "hedgehog", - "aliases": [ - "hedgehog" - ], - "tags": [] - }, - { - "emojiChar": "🦕", - "emoji": "\uD83E\uDD95", - "description": "sauropod", - "aliases": [ - "sauropod", - "brontosaurus", - "diplodocus", - "dinosaur" - ], - "tags": [] - }, - { - "emojiChar": "🦖", - "emoji": "\uD83E\uDD96", - "description": "T-Rex", - "aliases": [ - "trex", - "t_rex", - "tyrannosaurus_rex" - ], - "tags": [] - }, - { - "emojiChar": "🦗", - "emoji": "\uD83E\uDD97", - "description": "cricket", - "aliases": [ - "cricket" - ], - "tags": [] - }, - { - "emojiChar": "🥥", - "emoji": "\uD83E\uDD65", - "description": "coconut", - "aliases": [ - "coconut", - "cocoanut" - ], - "tags": [] - }, - { - "emojiChar": "🥦", - "emoji": "\uD83E\uDD66", - "description": "broccoli", - "aliases": [ - "broccoli" - ], - "tags": [] - }, - { - "emojiChar": "🥨", - "emoji": "\uD83E\uDD68", - "description": "pretzel", - "aliases": [ - "pretzel" - ], - "tags": [] - }, - { - "emojiChar": "🥩", - "emoji": "\uD83E\uDD69", - "description": "cut of meat", - "aliases": [ - "cut_of_meat", - "meat", - "steak" - ], - "tags": [] - }, - { - "emojiChar": "🥪", - "emoji": "\uD83E\uDD6A", - "description": "sandwich", - "aliases": [ - "sandwich" - ], - "tags": [] - }, - { - "emojiChar": "🥣", - "emoji": "\uD83E\uDD63", - "description": "bowl with spoon", - "aliases": [ - "bowl_with_spoon", - "cereal_bowl" - ], - "tags": [] - }, - { - "emojiChar": "🥫", - "emoji": "\uD83E\uDD6B", - "description": "canned food", - "aliases": [ - "canned_food", - "tin_can", - "can_of_food", - "tinned_food" - ], - "tags": [] - }, - { - "emojiChar": "🥟", - "emoji": "\uD83E\uDD5F", - "description": "dumpling", - "aliases": [ - "dumpling", - "jiaozi", - "gyoza", - "pierogi", - "empanada", - "xiaolongbao" - ], - "tags": [] - }, - { - "emojiChar": "🥠", - "emoji": "\uD83E\uDD60", - "description": "fortune cookie", - "aliases": [ - "fortune_cookie" - ], - "tags": [] - }, - { - "emojiChar": "🥡", - "emoji": "\uD83E\uDD61", - "description": "takeout box", - "aliases": [ - "takeout_box", - "chinese_food_box", - "oyster_pail" - ], - "tags": [] - }, - { - "emojiChar": "🥧", - "emoji": "\uD83E\uDD67", - "description": "pie", - "aliases": [ - "pie" - ], - "tags": [] - }, - { - "emojiChar": "🥤", - "emoji": "\uD83E\uDD64", - "description": "cup with straw", - "aliases": [ - "cup_with_straw", - "milkshake", - "smoothie", - "soda_pop", - "soft_drink", - "to_go_cup" - ], - "tags": [] - }, - { - "emojiChar": "🥢", - "emoji": "\uD83E\uDD62", - "description": "chopsticks", - "aliases": [ - "chopsticks" - ], - "tags": [] - }, - { - "emojiChar": "🛸", - "emoji": "\uD83D\uDEF8", - "description": "flying saucer", - "aliases": [ - "flying_saucer", - "ufo", - "unidentified_flying_object" - ], - "tags": [] - }, - { - "emojiChar": "🛷", - "emoji": "\uD83D\uDEF7", - "description": "sled", - "aliases": [ - "sled" - ], - "tags": [] - }, - { - "emojiChar": "🥌", - "emoji": "\uD83E\uDD4C", - "description": "curling stone", - "aliases": [ - "curling_stone" - ], - "tags": [] - }, - { - "emojiChar": "🧣", - "emoji": "\uD83E\uDDE3", - "description": "scarf", - "aliases": [ - "scarf" - ], - "tags": [] - }, - { - "emojiChar": "🧤", - "emoji": "\uD83E\uDDE4", - "description": "gloves", - "aliases": [ - "gloves" - ], - "tags": [] - }, - { - "emojiChar": "🧥", - "emoji": "\uD83E\uDDE5", - "description": "coat", - "aliases": [ - "coat" - ], - "tags": [] - }, - { - "emojiChar": "🧦", - "emoji": "\uD83E\uDDE6", - "description": "socks", - "aliases": [ - "socks" - ], - "tags": [] - }, - { - "emojiChar": "🧢", - "emoji": "\uD83E\uDDE2", - "description": "billed cap", - "aliases": [ - "billed_cap", - "baseball_cap", - "billed_hat" - ], - "tags": [] - }, - { - "emojiChar": "🥰", - "emoji": "\uD83E\uDD70", - "description": "smiling face with hearts", - "aliases": [ - "smiling_face_with_hearts", - "in_love_face", - "smiling_face_with_smiling_eyes_and_three_hearts" - ], - "tags": [] - }, - { - "emojiChar": "🥵", - "emoji": "\uD83E\uDD75", - "description": "hot face", - "aliases": [ - "hot_face", - "overheated_face" - ], - "tags": [] - }, - { - "emojiChar": "🥶", - "emoji": "\uD83E\uDD76", - "description": "cold face", - "aliases": [ - "cold_face", - "freezing_face" - ], - "tags": [] - }, - { - "emojiChar": "🥴", - "emoji": "\uD83E\uDD74", - "description": "woozy face", - "aliases": [ - "woozy_face", - "drunk_face", - "face_with_uneven_eyes_and_wavy_mouth" - ], - "tags": [] - }, - { - "emojiChar": "🥳", - "emoji": "\uD83E\uDD73", - "description": "partying face", - "aliases": [ - "partying_face", - "party_face", - "face_with_party_horn_and_party_hat" - ], - "tags": [] - }, - { - "emojiChar": "🥺", - "emoji": "\uD83E\uDD7A", - "description": "pleading face", - "aliases": [ - "pleading_face", - "face_with_pleading_eyes" - ], - "tags": [] - }, - { - "emojiChar": "🦵", - "emoji": "\uD83E\uDDB5", - "description": "leg", - "supports_fitzpatrick": true, - "aliases": [ - "leg" - ], - "tags": [] - }, - { - "emojiChar": "🦶", - "emoji": "\uD83E\uDDB6", - "description": "foot", - "supports_fitzpatrick": true, - "aliases": [ - "foot" - ], - "tags": [] - }, - { - "emojiChar": "🦷", - "emoji": "\uD83E\uDDB7", - "description": "tooth", - "aliases": [ - "tooth" - ], - "tags": [] - }, - { - "emojiChar": "🦴", - "emoji": "\uD83E\uDDB4", - "description": "bone", - "aliases": [ - "bone" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🦰", - "emoji": "\uD83D\uDC68\u200D\uD83E\uDDB0", - "description": "man: red hair", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_red_hair", - "man_redhead", - "man_ginger" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🦰", - "emoji": "\uD83D\uDC69\u200D\uD83E\uDDB0", - "description": "woman: red hair", - "supports_fitzpatrick": true, - "aliases": [ - "woman_with_red_hair", - "woman_redhead", - "woman_ginger" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🦱", - "emoji": "\uD83D\uDC68\u200D\uD83E\uDDB1", - "description": "man: curly hair", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_curly_hair" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🦱", - "emoji": "\uD83D\uDC69\u200D\uD83E\uDDB1", - "description": "woman: curly hair", - "supports_fitzpatrick": true, - "aliases": [ - "woman_with_curly_hair" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🦳", - "emoji": "\uD83D\uDC68\u200D\uD83E\uDDB3", - "description": "man: white hair", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_white_hair", - "man_with_gray_hair", - "man_with_grey_hair" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🦳", - "emoji": "\uD83D\uDC69\u200D\uD83E\uDDB3", - "description": "woman: white hair", - "supports_fitzpatrick": true, - "aliases": [ - "woman_with_white_hair", - "woman_with_gray_hair", - "woman_with_grey_hair" - ], - "tags": [] - }, - { - "emojiChar": "👨‍🦲", - "emoji": "\uD83D\uDC68\u200D\uD83E\uDDB2", - "description": "man: bald", - "supports_fitzpatrick": true, - "aliases": [ - "man_with_no_hair", - "bald_man" - ], - "tags": [] - }, - { - "emojiChar": "👩‍🦲", - "emoji": "\uD83D\uDC69\u200D\uD83E\uDDB2", - "description": "woman: bald", - "supports_fitzpatrick": true, - "aliases": [ - "woman_with_no_hair", - "bald_woman" - ], - "tags": [] - }, - { - "emojiChar": "🦸", - "emoji": "\uD83E\uDDB8", - "description": "superhero", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "superhero" - ], - "tags": [] - }, - { - "emojiChar": "🦸‍♂️", - "emoji": "\uD83E\uDDB8\u200D\u2642\uFE0F", - "description": "man superhero", - "supports_fitzpatrick": true, - "aliases": [ - "man_superhero" - ], - "tags": [] - }, - { - "emojiChar": "🦸‍♀️", - "emoji": "\uD83E\uDDB8\u200D\u2640\uFE0F", - "description": "woman superhero", - "supports_fitzpatrick": true, - "aliases": [ - "woman_superhero" - ], - "tags": [] - }, - { - "emojiChar": "🦹", - "emoji": "\uD83E\uDDB9", - "description": "supervillain", - "supports_fitzpatrick": true, - "supports_gender": true, - "aliases": [ - "supervillain" - ], - "tags": [] - }, - { - "emojiChar": "🦹‍♂️", - "emoji": "\uD83E\uDDB9\u200D\u2642\uFE0F", - "description": "man_supervillain", - "supports_fitzpatrick": true, - "aliases": [ - "man_supervillain" - ], - "tags": [] - }, - { - "emojiChar": "🦹‍♀️", - "emoji": "\uD83E\uDDB9\u200D\u2640\uFE0F", - "description": "woman_supervillain", - "supports_fitzpatrick": true, - "aliases": [ - "woman_supervillain" - ], - "tags": [] - }, - { - "emojiChar": "🦝", - "emoji": "\uD83E\uDD9D", - "description": "raccoon", - "aliases": [ - "raccoon" - ], - "tags": [] - }, - { - "emojiChar": "🦙", - "emoji": "\uD83E\uDD99", - "description": "llama", - "aliases": [ - "llama", - "alpaca" - ], - "tags": [] - }, - { - "emojiChar": "🦛", - "emoji": "\uD83E\uDD9B", - "description": "hippopotamus", - "aliases": [ - "hippo", - "hippopotamus" - ], - "tags": [] - }, - { - "emojiChar": "🦘", - "emoji": "\uD83E\uDD98", - "description": "kangaroo", - "aliases": [ - "roo", - "kangaroo" - ], - "tags": [] - }, - { - "emojiChar": "🦡", - "emoji": "\uD83E\uDDA1", - "description": "badger", - "aliases": [ - "badger" - ], - "tags": [] - }, - { - "emojiChar": "🦢", - "emoji": "\uD83E\uDDA2", - "description": "swan", - "aliases": [ - "swan" - ], - "tags": [] - }, - { - "emojiChar": "🦚", - "emoji": "\uD83E\uDD9A", - "description": "peacock", - "aliases": [ - "peacock" - ], - "tags": [] - }, - { - "emojiChar": "🦜", - "emoji": "\uD83E\uDD9C", - "description": "parrot", - "aliases": [ - "parrot" - ], - "tags": [] - }, - { - "emojiChar": "🦟", - "emoji": "\uD83E\uDD9F", - "description": "mosquito", - "aliases": [ - "mosquito" - ], - "tags": [] - }, - { - "emojiChar": "🦠", - "emoji": "\uD83E\uDDA0", - "description": "microbe", - "aliases": [ - "microbe" - ], - "tags": [] - }, - { - "emojiChar": "🥭", - "emoji": "\uD83E\uDD6D", - "description": "mango", - "aliases": [ - "mango" - ], - "tags": [] - }, - { - "emojiChar": "🥬", - "emoji": "\uD83E\uDD6C", - "description": "leafy green", - "aliases": [ - "leafy_green", - "bok_choy", - "chinese_cabbage", - "cos_lettuce", - "romaine_lettuce", - "leafy_greens" - ], - "tags": [] - }, - { - "emojiChar": "🥯", - "emoji": "\uD83E\uDD6F", - "description": "bagel", - "aliases": [ - "bagel" - ], - "tags": [] - }, - { - "emojiChar": "🧂", - "emoji": "\uD83E\uDDC2", - "description": "salt shaker", - "aliases": [ - "salt_shaker", - "salt" - ], - "tags": [] - }, - { - "emojiChar": "🥮", - "emoji": "\uD83E\uDD6E", - "description": "moon cake", - "aliases": [ - "moon_cake", - "mooncake" - ], - "tags": [] - }, - { - "emojiChar": "🦞", - "emoji": "\uD83E\uDD9E", - "description": "lobster", - "aliases": [ - "lobster" - ], - "tags": [] - }, - { - "emojiChar": "🧁", - "emoji": "\uD83E\uDDC1", - "description": "cupcake", - "aliases": [ - "cupcake", - "fairy_cake" - ], - "tags": [] - }, - { - "emojiChar": "🧭", - "emoji": "\uD83E\uDDED", - "description": "compass", - "aliases": [ - "compass" - ], - "tags": [] - }, - { - "emojiChar": "🧱", - "emoji": "\uD83E\uDDF1", - "description": "brick", - "aliases": [ - "brick", - "bricks" - ], - "tags": [] - }, - { - "emojiChar": "🛹", - "emoji": "\uD83D\uDEF9", - "description": "skateboard", - "aliases": [ - "skateboard" - ], - "tags": [] - }, - { - "emojiChar": "🧳", - "emoji": "\uD83E\uDDF3", - "description": "luggage", - "aliases": [ - "lugagge", - "suitcase" - ], - "tags": [] - }, - { - "emojiChar": "🧨", - "emoji": "\uD83E\uDDE8", - "description": "firecracker", - "aliases": [ - "firecracker", - "dynamite" - ], - "tags": [] - }, - { - "emojiChar": "🧧", - "emoji": "\uD83E\uDDE7", - "description": "red gift envelope", - "aliases": [ - "red_envelope", - "red_gift_envelope", - "ang_pao", - "hongbao", - "lai_see", - "red_packet" - ], - "tags": [] - }, - { - "emojiChar": "🥎", - "emoji": "\uD83E\uDD4E", - "description": "softball", - "aliases": [ - "softball" - ], - "tags": [] - }, - { - "emojiChar": "🥏", - "emoji": "\uD83E\uDD4F", - "description": "flying disc", - "aliases": [ - "flying_disc" - ], - "tags": [] - }, - { - "emojiChar": "🥍", - "emoji": "\uD83E\uDD4D", - "description": "lacrosse stick and ball", - "aliases": [ - "lacrosse", - "lacrosse_stick_and_ball" - ], - "tags": [] - }, - { - "emojiChar": "🧿", - "emoji": "\uD83E\uDDFF", - "description": "nazar amulet", - "aliases": [ - "nazar_amulet", - "evil_eye_talisman", - "nazar_boncugu" - ], - "tags": [] - }, - { - "emojiChar": "🧩", - "emoji": "\uD83E\uDDE9", - "description": "jigsaw puzzle piece", - "aliases": [ - "jigsaw", - "puzzle_piece", - "jigsaw_puzzle_piece" - ], - "tags": [] - }, - { - "emojiChar": "🧸", - "emoji": "\uD83E\uDDF8", - "description": "teddy bear", - "aliases": [ - "teddy_bear" - ], - "tags": [] - }, - { - "emojiChar": "♟️", - "emoji": "\u265F\uFE0F", - "description": "black chess pawn", - "aliases": [ - "black_chess_pawn", - "chess_pawn" - ], - "tags": [] - }, - { - "emojiChar": "🧵", - "emoji": "\uD83E\uDDF5", - "description": "spool of thread", - "aliases": [ - "spool_of_thread", - "thread" - ], - "tags": [] - }, - { - "emojiChar": "🧶", - "emoji": "\uD83E\uDDF6", - "description": "ball of yarn", - "aliases": [ - "ball_of_yarn", - "yarn" - ], - "tags": [] - }, - { - "emojiChar": "🥽", - "emoji": "\uD83E\uDD7D", - "description": "goggles", - "aliases": [ - "goggles" - ], - "tags": [] - }, - { - "emojiChar": "🥼", - "emoji": "\uD83E\uDD7C", - "description": "lab coat", - "aliases": [ - "lab_coat" - ], - "tags": [] - }, - { - "emojiChar": "🥾", - "emoji": "\uD83E\uDD7E", - "description": "hiking boot", - "aliases": [ - "hiking_boot" - ], - "tags": [] - }, - { - "emojiChar": "🥿", - "emoji": "\uD83E\uDD7F", - "description": "flat shoe", - "aliases": [ - "flat_shoe" - ], - "tags": [] - }, - { - "emojiChar": "🧮", - "emoji": "\uD83E\uDDEE", - "description": "abacus", - "aliases": [ - "abacus" - ], - "tags": [] - }, - { - "emojiChar": "🧾", - "emoji": "\uD83E\uDDFE", - "description": "receipt", - "aliases": [ - "receipt" - ], - "tags": [] - }, - { - "emojiChar": "🧰", - "emoji": "\uD83E\uDDF0", - "description": "toolbox", - "aliases": [ - "toolbox" - ], - "tags": [] - }, - { - "emojiChar": "🧲", - "emoji": "\uD83E\uDDF2", - "description": "magnet", - "aliases": [ - "magnet" - ], - "tags": [] - }, - { - "emojiChar": "🧪", - "emoji": "\uD83E\uDDEA", - "description": "test tube", - "aliases": [ - "test_tube" - ], - "tags": [] - }, - { - "emojiChar": "🧫", - "emoji": "\uD83E\uDDEB", - "description": "petri dish", - "aliases": [ - "petri_dish" - ], - "tags": [] - }, - { - "emojiChar": "🧬", - "emoji": "\uD83E\uDDEC", - "description": "dna", - "aliases": [ - "dna", - "dna_double_helix" - ], - "tags": [] - }, - { - "emojiChar": "🧴", - "emoji": "\uD83E\uDDF4", - "description": "lotion bottle", - "aliases": [ - "lotion_bottle" - ], - "tags": [] - }, - { - "emojiChar": "🧷", - "emoji": "\uD83E\uDDF7", - "description": "safety pin", - "aliases": [ - "safety_pin" - ], - "tags": [] - }, - { - "emojiChar": "🧹", - "emoji": "\uD83E\uDDF9", - "description": "broom", - "aliases": [ - "broom" - ], - "tags": [] - }, - { - "emojiChar": "🧺", - "emoji": "\uD83E\uDDFA", - "description": "basket", - "aliases": [ - "basket" - ], - "tags": [] - }, - { - "emojiChar": "🧻", - "emoji": "\uD83E\uDDFB", - "description": "roll of paper", - "aliases": [ - "roll_of_paper", - "toilet_paper" - ], - "tags": [] - }, - { - "emojiChar": "🧼", - "emoji": "\uD83E\uDDFC", - "description": "bar of soap", - "aliases": [ - "bar_of_soap", - "soap" - ], - "tags": [] - }, - { - "emojiChar": "🧽", - "emoji": "\uD83E\uDDFD", - "description": "sponge", - "aliases": [ - "sponge" - ], - "tags": [] - }, - { - "emojiChar": "🧯", - "emoji": "\uD83E\uDDEF", - "description": "fire extinguisher", - "aliases": [ - "fire_extinguisher" - ], - "tags": [] - }, - { - "emojiChar": "♾️", - "emoji": "\u267E\uFE0F", - "description": "infinity", - "aliases": [ - "infinity", - "permanent_paper_sign" - ], - "tags": [] - }, - { - "emojiChar": "♾🏴‍☠️", - "emoji": "\u267E\uD83C\uDFF4\u200D\u2620\uFE0F", - "description": "pirate flag", - "aliases": [ - "pirate_flag", - "jolly_roger" - ], - "tags": [] - }, - { - "emojiChar": "🇦🇨", - "emoji": "\uD83C\uDDE6\uD83C\uDDE8", - "description": "regional indicator symbol letter a + regional indicator symbol letter c", - "aliases": [ - "ac" - ], - "tags": [ - "flag", - "ascension island" - ] - }, - { - "emojiChar": "🇦🇩", - "emoji": "\uD83C\uDDE6\uD83C\uDDE9", - "description": "regional indicator symbol letter a + regional indicator symbol letter d", - "aliases": [ - "ad" - ], - "tags": [ - "flag", - "andorra" - ] - }, - { - "emojiChar": "🇦🇪", - "emoji": "\uD83C\uDDE6\uD83C\uDDEA", - "description": "regional indicator symbol letter a + regional indicator symbol letter e", - "aliases": [ - "ae" - ], - "tags": [ - "flag", - "united arab emirates" - ] - }, - { - "emojiChar": "🇦🇫", - "emoji": "\uD83C\uDDE6\uD83C\uDDEB", - "description": "regional indicator symbol letter a + regional indicator symbol letter f", - "aliases": [ - "af" - ], - "tags": [ - "flag", - "afghanistan" - ] - }, - { - "emojiChar": "🇦🇬", - "emoji": "\uD83C\uDDE6\uD83C\uDDEC", - "description": "regional indicator symbol letter a + regional indicator symbol letter g", - "aliases": [ - "ag" - ], - "tags": [ - "flag", - "antigua and barbuda" - ] - }, - { - "emojiChar": "🇦🇮", - "emoji": "\uD83C\uDDE6\uD83C\uDDEE", - "description": "regional indicator symbol letter a + regional indicator symbol letter i", - "aliases": [ - "ai" - ], - "tags": [ - "flag", - "anguilla" - ] - }, - { - "emojiChar": "🇦🇱", - "emoji": "\uD83C\uDDE6\uD83C\uDDF1", - "description": "regional indicator symbol letter a + regional indicator symbol letter l", - "aliases": [ - "al" - ], - "tags": [ - "flag", - "albania" - ] - }, - { - "emojiChar": "🇦🇲", - "emoji": "\uD83C\uDDE6\uD83C\uDDF2", - "description": "regional indicator symbol letter a + regional indicator symbol letter m", - "aliases": [ - "am" - ], - "tags": [ - "flag", - "armenia" - ] - }, - { - "emojiChar": "🇦🇴", - "emoji": "\uD83C\uDDE6\uD83C\uDDF4", - "description": "regional indicator symbol letter a + regional indicator symbol letter o", - "aliases": [ - "ao" - ], - "tags": [ - "flag", - "angola" - ] - }, - { - "emojiChar": "🇦🇶", - "emoji": "\uD83C\uDDE6\uD83C\uDDF6", - "description": "regional indicator symbol letter a + regional indicator symbol letter q", - "aliases": [ - "aq" - ], - "tags": [ - "flag", - "antarctica" - ] - }, - { - "emojiChar": "🇦🇷", - "emoji": "\uD83C\uDDE6\uD83C\uDDF7", - "description": "regional indicator symbol letter a + regional indicator symbol letter r", - "aliases": [ - "ar" - ], - "tags": [ - "flag", - "argentina" - ] - }, - { - "emojiChar": "🇦🇸", - "emoji": "\uD83C\uDDE6\uD83C\uDDF8", - "description": "regional indicator symbol letter a + regional indicator symbol letter s", - "aliases": [ - "as" - ], - "tags": [ - "flag", - "american samoa" - ] - }, - { - "emojiChar": "🇦🇹", - "emoji": "\uD83C\uDDE6\uD83C\uDDF9", - "description": "regional indicator symbol letter a + regional indicator symbol letter t", - "aliases": [ - "at" - ], - "tags": [ - "flag", - "austria" - ] - }, - { - "emojiChar": "🇦🇺", - "emoji": "\uD83C\uDDE6\uD83C\uDDFA", - "description": "regional indicator symbol letter a + regional indicator symbol letter u", - "aliases": [ - "au" - ], - "tags": [ - "flag", - "australia" - ] - }, - { - "emojiChar": "🇦🇼", - "emoji": "\uD83C\uDDE6\uD83C\uDDFC", - "description": "regional indicator symbol letter a + regional indicator symbol letter w", - "aliases": [ - "aw" - ], - "tags": [ - "flag", - "aruba" - ] - }, - { - "emojiChar": "🇦🇽", - "emoji": "\uD83C\uDDE6\uD83C\uDDFD", - "description": "regional indicator symbol letter a + regional indicator symbol letter x", - "aliases": [ - "ax" - ], - "tags": [ - "flag", - "aland islands" - ] - }, - { - "emojiChar": "🇦🇿", - "emoji": "\uD83C\uDDE6\uD83C\uDDFF", - "description": "regional indicator symbol letter a + regional indicator symbol letter z", - "aliases": [ - "az" - ], - "tags": [ - "flag", - "azerbaijan" - ] - }, - { - "emojiChar": "🇧🇦", - "emoji": "\uD83C\uDDE7\uD83C\uDDE6", - "description": "regional indicator symbol letter b + regional indicator symbol letter a", - "aliases": [ - "ba" - ], - "tags": [ - "flag", - "bosnia and herzegovina" - ] - }, - { - "emojiChar": "🇧🇧", - "emoji": "\uD83C\uDDE7\uD83C\uDDE7", - "description": "regional indicator symbol letter b + regional indicator symbol letter b", - "aliases": [ - "bb" - ], - "tags": [ - "flag", - "barbados" - ] - }, - { - "emojiChar": "🇧🇩", - "emoji": "\uD83C\uDDE7\uD83C\uDDE9", - "description": "regional indicator symbol letter b + regional indicator symbol letter d", - "aliases": [ - "bd" - ], - "tags": [ - "flag", - "bangladesh" - ] - }, - { - "emojiChar": "🇧🇪", - "emoji": "\uD83C\uDDE7\uD83C\uDDEA", - "description": "regional indicator symbol letter b + regional indicator symbol letter e", - "aliases": [ - "be" - ], - "tags": [ - "flag", - "belgium" - ] - }, - { - "emojiChar": "🇧🇫", - "emoji": "\uD83C\uDDE7\uD83C\uDDEB", - "description": "regional indicator symbol letter b + regional indicator symbol letter f", - "aliases": [ - "bf" - ], - "tags": [ - "flag", - "burkina faso" - ] - }, - { - "emojiChar": "🇧🇬", - "emoji": "\uD83C\uDDE7\uD83C\uDDEC", - "description": "regional indicator symbol letter b + regional indicator symbol letter g", - "aliases": [ - "bg" - ], - "tags": [ - "flag", - "bulgaria" - ] - }, - { - "emojiChar": "🇧🇭", - "emoji": "\uD83C\uDDE7\uD83C\uDDED", - "description": "regional indicator symbol letter b + regional indicator symbol letter h", - "aliases": [ - "bh" - ], - "tags": [ - "flag", - "bahrain" - ] - }, - { - "emojiChar": "🇧🇮", - "emoji": "\uD83C\uDDE7\uD83C\uDDEE", - "description": "regional indicator symbol letter b + regional indicator symbol letter i", - "aliases": [ - "bi" - ], - "tags": [ - "flag", - "burundi" - ] - }, - { - "emojiChar": "🇧🇯", - "emoji": "\uD83C\uDDE7\uD83C\uDDEF", - "description": "regional indicator symbol letter b + regional indicator symbol letter j", - "aliases": [ - "bj" - ], - "tags": [ - "flag", - "benin" - ] - }, - { - "emojiChar": "🇧🇱", - "emoji": "\uD83C\uDDE7\uD83C\uDDF1", - "description": "regional indicator symbol letter b + regional indicator symbol letter l", - "aliases": [ - "bl" - ], - "tags": [ - "flag", - "st. barthelemy" - ] - }, - { - "emojiChar": "🇧🇲", - "emoji": "\uD83C\uDDE7\uD83C\uDDF2", - "description": "regional indicator symbol letter b + regional indicator symbol letter m", - "aliases": [ - "bm" - ], - "tags": [ - "flag", - "bermuda" - ] - }, - { - "emojiChar": "🇧🇳", - "emoji": "\uD83C\uDDE7\uD83C\uDDF3", - "description": "regional indicator symbol letter b + regional indicator symbol letter n", - "aliases": [ - "bn" - ], - "tags": [ - "flag", - "brunei darussalam" - ] - }, - { - "emojiChar": "🇧🇴", - "emoji": "\uD83C\uDDE7\uD83C\uDDF4", - "description": "regional indicator symbol letter b + regional indicator symbol letter o", - "aliases": [ - "bo" - ], - "tags": [ - "flag", - "bolivia" - ] - }, - { - "emojiChar": "🇧🇶", - "emoji": "\uD83C\uDDE7\uD83C\uDDF6", - "description": "regional indicator symbol letter b + regional indicator symbol letter q", - "aliases": [ - "bq" - ], - "tags": [ - "flag", - "caribbean netherlands", - "bonaire" - ] - }, - { - "emojiChar": "🇧🇷", - "emoji": "\uD83C\uDDE7\uD83C\uDDF7", - "description": "regional indicator symbol letter b + regional indicator symbol letter r", - "aliases": [ - "br" - ], - "tags": [ - "flag", - "brazil" - ] - }, - { - "emojiChar": "🇧🇸", - "emoji": "\uD83C\uDDE7\uD83C\uDDF8", - "description": "regional indicator symbol letter b + regional indicator symbol letter s", - "aliases": [ - "bs" - ], - "tags": [ - "flag", - "bahamas" - ] - }, - { - "emojiChar": "🇧🇹", - "emoji": "\uD83C\uDDE7\uD83C\uDDF9", - "description": "regional indicator symbol letter b + regional indicator symbol letter t", - "aliases": [ - "bt" - ], - "tags": [ - "flag", - "bhutan" - ] - }, - { - "emojiChar": "🇧🇻", - "emoji": "\uD83C\uDDE7\uD83C\uDDFB", - "description": "regional indicator symbol letter b + regional indicator symbol letter v", - "aliases": [ - "bv" - ], - "tags": [ - "flag", - "bouvet island" - ] - }, - { - "emojiChar": "🇧🇼", - "emoji": "\uD83C\uDDE7\uD83C\uDDFC", - "description": "regional indicator symbol letter b + regional indicator symbol letter w", - "aliases": [ - "bw" - ], - "tags": [ - "flag", - "botswana" - ] - }, - { - "emojiChar": "🇧🇾", - "emoji": "\uD83C\uDDE7\uD83C\uDDFE", - "description": "regional indicator symbol letter b + regional indicator symbol letter y", - "aliases": [ - "by" - ], - "tags": [ - "flag", - "belarus" - ] - }, - { - "emojiChar": "🇧🇿", - "emoji": "\uD83C\uDDE7\uD83C\uDDFF", - "description": "regional indicator symbol letter b + regional indicator symbol letter z", - "aliases": [ - "bz" - ], - "tags": [ - "flag", - "belize" - ] - }, - { - "emojiChar": "🇨🇦", - "emoji": "\uD83C\uDDE8\uD83C\uDDE6", - "description": "regional indicator symbol letter c + regional indicator symbol letter a", - "aliases": [ - "ca" - ], - "tags": [ - "flag", - "canada" - ] - }, - { - "emojiChar": "🇨🇨", - "emoji": "\uD83C\uDDE8\uD83C\uDDE8", - "description": "regional indicator symbol letter c + regional indicator symbol letter c", - "aliases": [ - "cc" - ], - "tags": [ - "flag", - "cocos (keeling) islands" - ] - }, - { - "emojiChar": "🇨🇩", - "emoji": "\uD83C\uDDE8\uD83C\uDDE9", - "description": "regional indicator symbol letter c + regional indicator symbol letter d", - "aliases": [ - "cd_flag" - ], - "tags": [ - "flag", - "democratic republic of the congo" - ] - }, - { - "emojiChar": "🇨🇫", - "emoji": "\uD83C\uDDE8\uD83C\uDDEB", - "description": "regional indicator symbol letter c + regional indicator symbol letter f", - "aliases": [ - "cf" - ], - "tags": [ - "flag", - "central african republic" - ] - }, - { - "emojiChar": "🇨🇬", - "emoji": "\uD83C\uDDE8\uD83C\uDDEC", - "description": "regional indicator symbol letter c + regional indicator symbol letter g", - "aliases": [ - "cg" - ], - "tags": [ - "flag", - "republic of the congo" - ] - }, - { - "emojiChar": "🇨🇭", - "emoji": "\uD83C\uDDE8\uD83C\uDDED", - "description": "regional indicator symbol letter c + regional indicator symbol letter h", - "aliases": [ - "ch" - ], - "tags": [ - "flag", - "switzerland" - ] - }, - { - "emojiChar": "🇨🇮", - "emoji": "\uD83C\uDDE8\uD83C\uDDEE", - "description": "regional indicator symbol letter c + regional indicator symbol letter i", - "aliases": [ - "ci" - ], - "tags": [ - "flag", - "ivory coast" - ] - }, - { - "emojiChar": "🇨🇰", - "emoji": "\uD83C\uDDE8\uD83C\uDDF0", - "description": "regional indicator symbol letter c + regional indicator symbol letter k", - "aliases": [ - "ck" - ], - "tags": [ - "flag", - "cook islands" - ] - }, - { - "emojiChar": "🇨🇱", - "emoji": "\uD83C\uDDE8\uD83C\uDDF1", - "description": "regional indicator symbol letter c + regional indicator symbol letter l", - "aliases": [ - "cl_flag" - ], - "tags": [ - "flag", - "chile" - ] - }, - { - "emojiChar": "🇨🇲", - "emoji": "\uD83C\uDDE8\uD83C\uDDF2", - "description": "regional indicator symbol letter c + regional indicator symbol letter m", - "aliases": [ - "cm" - ], - "tags": [ - "flag", - "cameroon" - ] - }, - { - "emojiChar": "🇨🇳", - "emoji": "\uD83C\uDDE8\uD83C\uDDF3", - "description": "regional indicator symbol letter c + regional indicator symbol letter n", - "aliases": [ - "cn" - ], - "tags": [ - "flag", - "china" - ] - }, - { - "emojiChar": "🇨🇴", - "emoji": "\uD83C\uDDE8\uD83C\uDDF4", - "description": "regional indicator symbol letter c + regional indicator symbol letter o", - "aliases": [ - "co" - ], - "tags": [ - "flag", - "colombia" - ] - }, - { - "emojiChar": "🇨🇵", - "emoji": "\uD83C\uDDE8\uD83C\uDDF5", - "description": "regional indicator symbol letter c + regional indicator symbol letter p", - "aliases": [ - "cp" - ], - "tags": [ - "flag", - "clipperton island" - ] - }, - { - "emojiChar": "🇨🇷", - "emoji": "\uD83C\uDDE8\uD83C\uDDF7", - "description": "regional indicator symbol letter c + regional indicator symbol letter r", - "aliases": [ - "cr" - ], - "tags": [ - "flag", - "costa rica" - ] - }, - { - "emojiChar": "🇨🇺", - "emoji": "\uD83C\uDDE8\uD83C\uDDFA", - "description": "regional indicator symbol letter c + regional indicator symbol letter u", - "aliases": [ - "cu" - ], - "tags": [ - "flag", - "cuba" - ] - }, - { - "emojiChar": "🇨🇻", - "emoji": "\uD83C\uDDE8\uD83C\uDDFB", - "description": "regional indicator symbol letter c + regional indicator symbol letter v", - "aliases": [ - "cv" - ], - "tags": [ - "flag", - "cape verde" - ] - }, - { - "emojiChar": "🇨🇼", - "emoji": "\uD83C\uDDE8\uD83C\uDDFC", - "description": "regional indicator symbol letter c + regional indicator symbol letter w", - "aliases": [ - "cw" - ], - "tags": [ - "flag", - "curacao" - ] - }, - { - "emojiChar": "🇨🇽", - "emoji": "\uD83C\uDDE8\uD83C\uDDFD", - "description": "regional indicator symbol letter c + regional indicator symbol letter x", - "aliases": [ - "cx" - ], - "tags": [ - "flag", - "christmas island" - ] - }, - { - "emojiChar": "🇨🇾", - "emoji": "\uD83C\uDDE8\uD83C\uDDFE", - "description": "regional indicator symbol letter c + regional indicator symbol letter y", - "aliases": [ - "cy" - ], - "tags": [ - "flag", - "cyprus" - ] - }, - { - "emojiChar": "🇨🇿", - "emoji": "\uD83C\uDDE8\uD83C\uDDFF", - "description": "regional indicator symbol letter c + regional indicator symbol letter z", - "aliases": [ - "cz" - ], - "tags": [ - "flag", - "czech republic" - ] - }, - { - "emojiChar": "🇩🇪", - "emoji": "\uD83C\uDDE9\uD83C\uDDEA", - "description": "regional indicator symbol letter d + regional indicator symbol letter e", - "aliases": [ - "de" - ], - "tags": [ - "flag", - "germany" - ] - }, - { - "emojiChar": "🇩🇬", - "emoji": "\uD83C\uDDE9\uD83C\uDDEC", - "description": "regional indicator symbol letter d + regional indicator symbol letter g", - "aliases": [ - "dg" - ], - "tags": [ - "flag", - "diego garcia" - ] - }, - { - "emojiChar": "🇩🇯", - "emoji": "\uD83C\uDDE9\uD83C\uDDEF", - "description": "regional indicator symbol letter d + regional indicator symbol letter j", - "aliases": [ - "dj" - ], - "tags": [ - "flag", - "djibouti" - ] - }, - { - "emojiChar": "🇩🇰", - "emoji": "\uD83C\uDDE9\uD83C\uDDF0", - "description": "regional indicator symbol letter d + regional indicator symbol letter k", - "aliases": [ - "dk" - ], - "tags": [ - "flag", - "denmark" - ] - }, - { - "emojiChar": "🇩🇲", - "emoji": "\uD83C\uDDE9\uD83C\uDDF2", - "description": "regional indicator symbol letter d + regional indicator symbol letter m", - "aliases": [ - "dm" - ], - "tags": [ - "flag", - "dominica" - ] - }, - { - "emojiChar": "🇩🇴", - "emoji": "\uD83C\uDDE9\uD83C\uDDF4", - "description": "regional indicator symbol letter d + regional indicator symbol letter o", - "aliases": [ - "do" - ], - "tags": [ - "flag", - "dominican republic" - ] - }, - { - "emojiChar": "🇩🇿", - "emoji": "\uD83C\uDDE9\uD83C\uDDFF", - "description": "regional indicator symbol letter d + regional indicator symbol letter z", - "aliases": [ - "dz" - ], - "tags": [ - "flag", - "algeria" - ] - }, - { - "emojiChar": "🇪🇦", - "emoji": "\uD83C\uDDEA\uD83C\uDDE6", - "description": "regional indicator symbol letter e + regional indicator symbol letter a", - "aliases": [ - "ea" - ], - "tags": [ - "flag", - "ceuta & melilla" - ] - }, - { - "emojiChar": "🇪🇨", - "emoji": "\uD83C\uDDEA\uD83C\uDDE8", - "description": "regional indicator symbol letter e + regional indicator symbol letter c", - "aliases": [ - "ec" - ], - "tags": [ - "flag", - "ecuador" - ] - }, - { - "emojiChar": "🇪🇪", - "emoji": "\uD83C\uDDEA\uD83C\uDDEA", - "description": "regional indicator symbol letter e + regional indicator symbol letter e", - "aliases": [ - "ee" - ], - "tags": [ - "flag", - "estonia" - ] - }, - { - "emojiChar": "🇪🇬", - "emoji": "\uD83C\uDDEA\uD83C\uDDEC", - "description": "regional indicator symbol letter e + regional indicator symbol letter g", - "aliases": [ - "eg" - ], - "tags": [ - "flag", - "egypt" - ] - }, - { - "emojiChar": "🇪🇭", - "emoji": "\uD83C\uDDEA\uD83C\uDDED", - "description": "regional indicator symbol letter e + regional indicator symbol letter h", - "aliases": [ - "eh" - ], - "tags": [ - "flag", - "western sahara" - ] - }, - { - "emojiChar": "🇪🇷", - "emoji": "\uD83C\uDDEA\uD83C\uDDF7", - "description": "regional indicator symbol letter e + regional indicator symbol letter r", - "aliases": [ - "er" - ], - "tags": [ - "flag", - "eritrea" - ] - }, - { - "emojiChar": "🇪🇸", - "emoji": "\uD83C\uDDEA\uD83C\uDDF8", - "description": "regional indicator symbol letter e + regional indicator symbol letter s", - "aliases": [ - "es" - ], - "tags": [ - "flag", - "spain" - ] - }, - { - "emojiChar": "🇪🇹", - "emoji": "\uD83C\uDDEA\uD83C\uDDF9", - "description": "regional indicator symbol letter e + regional indicator symbol letter t", - "aliases": [ - "et" - ], - "tags": [ - "flag", - "ethiopia" - ] - }, - { - "emojiChar": "🇪🇺", - "emoji": "\uD83C\uDDEA\uD83C\uDDFA", - "description": "regional indicator symbol letter e + regional indicator symbol letter u", - "aliases": [ - "eu" - ], - "tags": [ - "flag", - "european union" - ] - }, - { - "emojiChar": "🇫🇮", - "emoji": "\uD83C\uDDEB\uD83C\uDDEE", - "description": "regional indicator symbol letter f + regional indicator symbol letter i", - "aliases": [ - "fi" - ], - "tags": [ - "flag", - "finland" - ] - }, - { - "emojiChar": "🇫🇯", - "emoji": "\uD83C\uDDEB\uD83C\uDDEF", - "description": "regional indicator symbol letter f + regional indicator symbol letter j", - "aliases": [ - "fj" - ], - "tags": [ - "flag", - "fiji" - ] - }, - { - "emojiChar": "🇫🇰", - "emoji": "\uD83C\uDDEB\uD83C\uDDF0", - "description": "regional indicator symbol letter f + regional indicator symbol letter k", - "aliases": [ - "fk" - ], - "tags": [ - "flag", - "falkland islands" - ] - }, - { - "emojiChar": "🇫🇲", - "emoji": "\uD83C\uDDEB\uD83C\uDDF2", - "description": "regional indicator symbol letter f + regional indicator symbol letter m", - "aliases": [ - "fm" - ], - "tags": [ - "flag", - "micronesia" - ] - }, - { - "emojiChar": "🇫🇴", - "emoji": "\uD83C\uDDEB\uD83C\uDDF4", - "description": "regional indicator symbol letter f + regional indicator symbol letter o", - "aliases": [ - "fo" - ], - "tags": [ - "flag", - "faroe islands" - ] - }, - { - "emojiChar": "🇫🇷", - "emoji": "\uD83C\uDDEB\uD83C\uDDF7", - "description": "regional indicator symbol letter f + regional indicator symbol letter r", - "aliases": [ - "fr" - ], - "tags": [ - "flag", - "france" - ] - }, - { - "emojiChar": "🇬🇦", - "emoji": "\uD83C\uDDEC\uD83C\uDDE6", - "description": "regional indicator symbol letter g + regional indicator symbol letter a", - "aliases": [ - "ga" - ], - "tags": [ - "flag", - "gabon" - ] - }, - { - "emojiChar": "🇬🇧", - "emoji": "\uD83C\uDDEC\uD83C\uDDE7", - "description": "regional indicator symbol letter g + regional indicator symbol letter b", - "aliases": [ - "gb" - ], - "tags": [ - "flag", - "united kingdom" - ] - }, - { - "emojiChar": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", - "emoji": "\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F", - "description": "waving black flag + regional indicator symbol letter g + regional indicator symbol letter b + regional indicator symbol letter e + regional indicator symbol letter n + regional indicator symbol letter g + cancel tag", - "aliases": [ - "gbeng" - ], - "tags": [ - "flag", - "england" - ] - }, - { - "emojiChar": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", - "emoji": "\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74\uDB40\uDC7F", - "description": "waving black flag + regional indicator symbol letter g + regional indicator symbol letter b + regional indicator symbol letter s + regional indicator symbol letter c + regional indicator symbol letter t + cancel tag", - "aliases": [ - "gbsct" - ], - "tags": [ - "flag", - "scotland" - ] - }, - { - "emojiChar": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", - "emoji": "\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73\uDB40\uDC7F", - "description": "waving black flag + regional indicator symbol letter g + regional indicator symbol letter b + regional indicator symbol letter w + regional indicator symbol letter l + regional indicator symbol letter s + cancel tag", - "aliases": [ - "gbwls" - ], - "tags": [ - "flag", - "wales" - ] - }, - { - "emojiChar": "🇬🇩", - "emoji": "\uD83C\uDDEC\uD83C\uDDE9", - "description": "regional indicator symbol letter g + regional indicator symbol letter d", - "aliases": [ - "gd" - ], - "tags": [ - "flag", - "grenada" - ] - }, - { - "emojiChar": "🇬🇪", - "emoji": "\uD83C\uDDEC\uD83C\uDDEA", - "description": "regional indicator symbol letter g + regional indicator symbol letter e", - "aliases": [ - "ge" - ], - "tags": [ - "flag", - "georgia" - ] - }, - { - "emojiChar": "🇬🇫", - "emoji": "\uD83C\uDDEC\uD83C\uDDEB", - "description": "regional indicator symbol letter g + regional indicator symbol letter f", - "aliases": [ - "gf" - ], - "tags": [ - "flag", - "french guiana" - ] - }, - { - "emojiChar": "🇬🇬", - "emoji": "\uD83C\uDDEC\uD83C\uDDEC", - "description": "regional indicator symbol letter g + regional indicator symbol letter g", - "aliases": [ - "gg" - ], - "tags": [ - "flag", - "guernsey" - ] - }, - { - "emojiChar": "🇬🇭", - "emoji": "\uD83C\uDDEC\uD83C\uDDED", - "description": "regional indicator symbol letter g + regional indicator symbol letter h", - "aliases": [ - "gh" - ], - "tags": [ - "flag", - "ghana" - ] - }, - { - "emojiChar": "🇬🇮", - "emoji": "\uD83C\uDDEC\uD83C\uDDEE", - "description": "regional indicator symbol letter g + regional indicator symbol letter i", - "aliases": [ - "gi" - ], - "tags": [ - "flag", - "gibraltar" - ] - }, - { - "emojiChar": "🇬🇱", - "emoji": "\uD83C\uDDEC\uD83C\uDDF1", - "description": "regional indicator symbol letter g + regional indicator symbol letter l", - "aliases": [ - "gl" - ], - "tags": [ - "flag", - "greenland" - ] - }, - { - "emojiChar": "🇬🇲", - "emoji": "\uD83C\uDDEC\uD83C\uDDF2", - "description": "regional indicator symbol letter g + regional indicator symbol letter m", - "aliases": [ - "gm" - ], - "tags": [ - "flag", - "gambia" - ] - }, - { - "emojiChar": "🇬🇳", - "emoji": "\uD83C\uDDEC\uD83C\uDDF3", - "description": "regional indicator symbol letter g + regional indicator symbol letter n", - "aliases": [ - "gn" - ], - "tags": [ - "flag", - "guinea" - ] - }, - { - "emojiChar": "🇬🇵", - "emoji": "\uD83C\uDDEC\uD83C\uDDF5", - "description": "regional indicator symbol letter g + regional indicator symbol letter p", - "aliases": [ - "gp" - ], - "tags": [ - "flag", - "guadeloupe" - ] - }, - { - "emojiChar": "🇬🇶", - "emoji": "\uD83C\uDDEC\uD83C\uDDF6", - "description": "regional indicator symbol letter g + regional indicator symbol letter q", - "aliases": [ - "gq" - ], - "tags": [ - "flag", - "equatorial guinea" - ] - }, - { - "emojiChar": "🇬🇷", - "emoji": "\uD83C\uDDEC\uD83C\uDDF7", - "description": "regional indicator symbol letter g + regional indicator symbol letter r", - "aliases": [ - "gr" - ], - "tags": [ - "flag", - "greece" - ] - }, - { - "emojiChar": "🇬🇸", - "emoji": "\uD83C\uDDEC\uD83C\uDDF8", - "description": "regional indicator symbol letter g + regional indicator symbol letter s", - "aliases": [ - "gs" - ], - "tags": [ - "flag", - "south georgia & south sandwich islands" - ] - }, - { - "emojiChar": "🇬🇹", - "emoji": "\uD83C\uDDEC\uD83C\uDDF9", - "description": "regional indicator symbol letter g + regional indicator symbol letter t", - "aliases": [ - "gt" - ], - "tags": [ - "flag", - "guatemala" - ] - }, - { - "emojiChar": "🇬🇺", - "emoji": "\uD83C\uDDEC\uD83C\uDDFA", - "description": "regional indicator symbol letter g + regional indicator symbol letter u", - "aliases": [ - "gu" - ], - "tags": [ - "flag", - "guam" - ] - }, - { - "emojiChar": "🇬🇼", - "emoji": "\uD83C\uDDEC\uD83C\uDDFC", - "description": "regional indicator symbol letter g + regional indicator symbol letter w", - "aliases": [ - "gw" - ], - "tags": [ - "flag", - "guinea-bissau" - ] - }, - { - "emojiChar": "🇬🇾", - "emoji": "\uD83C\uDDEC\uD83C\uDDFE", - "description": "regional indicator symbol letter g + regional indicator symbol letter y", - "aliases": [ - "gy" - ], - "tags": [ - "flag", - "guyana" - ] - }, - { - "emojiChar": "🇭🇰", - "emoji": "\uD83C\uDDED\uD83C\uDDF0", - "description": "regional indicator symbol letter h + regional indicator symbol letter k", - "aliases": [ - "hk" - ], - "tags": [ - "flag", - "hong kong" - ] - }, - { - "emojiChar": "🇭🇲", - "emoji": "\uD83C\uDDED\uD83C\uDDF2", - "description": "regional indicator symbol letter h + regional indicator symbol letter m", - "aliases": [ - "hm" - ], - "tags": [ - "flag", - "heard & mcdonald islands" - ] - }, - { - "emojiChar": "🇭🇳", - "emoji": "\uD83C\uDDED\uD83C\uDDF3", - "description": "regional indicator symbol letter h + regional indicator symbol letter n", - "aliases": [ - "hn" - ], - "tags": [ - "flag", - "honduras" - ] - }, - { - "emojiChar": "🇭🇷", - "emoji": "\uD83C\uDDED\uD83C\uDDF7", - "description": "regional indicator symbol letter h + regional indicator symbol letter r", - "aliases": [ - "hr" - ], - "tags": [ - "flag", - "croatia" - ] - }, - { - "emojiChar": "🇭🇹", - "emoji": "\uD83C\uDDED\uD83C\uDDF9", - "description": "regional indicator symbol letter h + regional indicator symbol letter t", - "aliases": [ - "ht" - ], - "tags": [ - "flag", - "haiti" - ] - }, - { - "emojiChar": "🇭🇺", - "emoji": "\uD83C\uDDED\uD83C\uDDFA", - "description": "regional indicator symbol letter h + regional indicator symbol letter u", - "aliases": [ - "hu" - ], - "tags": [ - "flag", - "hungary" - ] - }, - { - "emojiChar": "🇮🇨", - "emoji": "\uD83C\uDDEE\uD83C\uDDE8", - "description": "regional indicator symbol letter i + regional indicator symbol letter c", - "aliases": [ - "ic" - ], - "tags": [ - "flag", - "canary islands" - ] - }, - { - "emojiChar": "🇮🇩", - "emoji": "\uD83C\uDDEE\uD83C\uDDE9", - "description": "regional indicator symbol letter i + regional indicator symbol letter d", - "aliases": [ - "id_flag" - ], - "tags": [ - "flag", - "indonesia" - ] - }, - { - "emojiChar": "🇮🇪", - "emoji": "\uD83C\uDDEE\uD83C\uDDEA", - "description": "regional indicator symbol letter i + regional indicator symbol letter e", - "aliases": [ - "ie" - ], - "tags": [ - "flag", - "ireland" - ] - }, - { - "emojiChar": "🇮🇱", - "emoji": "\uD83C\uDDEE\uD83C\uDDF1", - "description": "regional indicator symbol letter i + regional indicator symbol letter l", - "aliases": [ - "il" - ], - "tags": [ - "flag", - "israel" - ] - }, - { - "emojiChar": "🇮🇲", - "emoji": "\uD83C\uDDEE\uD83C\uDDF2", - "description": "regional indicator symbol letter i + regional indicator symbol letter m", - "aliases": [ - "im" - ], - "tags": [ - "flag", - "isle of mann" - ] - }, - { - "emojiChar": "🇮🇳", - "emoji": "\uD83C\uDDEE\uD83C\uDDF3", - "description": "regional indicator symbol letter i + regional indicator symbol letter n", - "aliases": [ - "in" - ], - "tags": [ - "flag", - "india" - ] - }, - { - "emojiChar": "🇮🇴", - "emoji": "\uD83C\uDDEE\uD83C\uDDF4", - "description": "regional indicator symbol letter i + regional indicator symbol letter o", - "aliases": [ - "io" - ], - "tags": [ - "flag", - "british indian ocean territory" - ] - }, - { - "emojiChar": "🇮🇶", - "emoji": "\uD83C\uDDEE\uD83C\uDDF6", - "description": "regional indicator symbol letter i + regional indicator symbol letter q", - "aliases": [ - "iq" - ], - "tags": [ - "flag", - "iraq" - ] - }, - { - "emojiChar": "🇮🇷", - "emoji": "\uD83C\uDDEE\uD83C\uDDF7", - "description": "regional indicator symbol letter i + regional indicator symbol letter r", - "aliases": [ - "ir" - ], - "tags": [ - "flag", - "iran" - ] - }, - { - "emojiChar": "🇮🇸", - "emoji": "\uD83C\uDDEE\uD83C\uDDF8", - "description": "regional indicator symbol letter i + regional indicator symbol letter s", - "aliases": [ - "is" - ], - "tags": [ - "flag", - "iceland" - ] - }, - { - "emojiChar": "🇮🇹", - "emoji": "\uD83C\uDDEE\uD83C\uDDF9", - "description": "regional indicator symbol letter i + regional indicator symbol letter t", - "aliases": [ - "it" - ], - "tags": [ - "flag", - "italy" - ] - }, - { - "emojiChar": "🇯🇪", - "emoji": "\uD83C\uDDEF\uD83C\uDDEA", - "description": "regional indicator symbol letter j + regional indicator symbol letter e", - "aliases": [ - "je" - ], - "tags": [ - "flag", - "jersey" - ] - }, - { - "emojiChar": "🇯🇲", - "emoji": "\uD83C\uDDEF\uD83C\uDDF2", - "description": "regional indicator symbol letter j + regional indicator symbol letter m", - "aliases": [ - "jm" - ], - "tags": [ - "flag", - "jamaica" - ] - }, - { - "emojiChar": "🇯🇴", - "emoji": "\uD83C\uDDEF\uD83C\uDDF4", - "description": "regional indicator symbol letter j + regional indicator symbol letter o", - "aliases": [ - "jo" - ], - "tags": [ - "flag", - "jordan" - ] - }, - { - "emojiChar": "🇯🇵", - "emoji": "\uD83C\uDDEF\uD83C\uDDF5", - "description": "regional indicator symbol letter j + regional indicator symbol letter p", - "aliases": [ - "jp" - ], - "tags": [ - "flag", - "japan" - ] - }, - { - "emojiChar": "🇰🇪", - "emoji": "\uD83C\uDDF0\uD83C\uDDEA", - "description": "regional indicator symbol letter k + regional indicator symbol letter e", - "aliases": [ - "ke" - ], - "tags": [ - "flag", - "kenya" - ] - }, - { - "emojiChar": "🇰🇬", - "emoji": "\uD83C\uDDF0\uD83C\uDDEC", - "description": "regional indicator symbol letter k + regional indicator symbol letter g", - "aliases": [ - "kg" - ], - "tags": [ - "flag", - "kyrgyzstan" - ] - }, - { - "emojiChar": "🇰🇭", - "emoji": "\uD83C\uDDF0\uD83C\uDDED", - "description": "regional indicator symbol letter k + regional indicator symbol letter h", - "aliases": [ - "kh" - ], - "tags": [ - "flag", - "cambodia" - ] - }, - { - "emojiChar": "🇰🇮", - "emoji": "\uD83C\uDDF0\uD83C\uDDEE", - "description": "regional indicator symbol letter k + regional indicator symbol letter i", - "aliases": [ - "ki" - ], - "tags": [ - "flag", - "kiribati" - ] - }, - { - "emojiChar": "🇰🇲", - "emoji": "\uD83C\uDDF0\uD83C\uDDF2", - "description": "regional indicator symbol letter k + regional indicator symbol letter m", - "aliases": [ - "km" - ], - "tags": [ - "flag", - "comoros" - ] - }, - { - "emojiChar": "🇰🇳", - "emoji": "\uD83C\uDDF0\uD83C\uDDF3", - "description": "regional indicator symbol letter k + regional indicator symbol letter n", - "aliases": [ - "kn" - ], - "tags": [ - "flag", - "st. kitts & nevis" - ] - }, - { - "emojiChar": "🇰🇵", - "emoji": "\uD83C\uDDF0\uD83C\uDDF5", - "description": "regional indicator symbol letter k + regional indicator symbol letter p", - "aliases": [ - "kp" - ], - "tags": [ - "flag", - "north korea" - ] - }, - { - "emojiChar": "🇰🇷", - "emoji": "\uD83C\uDDF0\uD83C\uDDF7", - "description": "regional indicator symbol letter k + regional indicator symbol letter r", - "aliases": [ - "kr" - ], - "tags": [ - "flag", - "south korea" - ] - }, - { - "emojiChar": "🇰🇼", - "emoji": "\uD83C\uDDF0\uD83C\uDDFC", - "description": "regional indicator symbol letter k + regional indicator symbol letter w", - "aliases": [ - "kw" - ], - "tags": [ - "flag", - "kuwait" - ] - }, - { - "emojiChar": "🇰🇾", - "emoji": "\uD83C\uDDF0\uD83C\uDDFE", - "description": "regional indicator symbol letter k + regional indicator symbol letter y", - "aliases": [ - "ky" - ], - "tags": [ - "flag", - "cayman islands" - ] - }, - { - "emojiChar": "🇰🇿", - "emoji": "\uD83C\uDDF0\uD83C\uDDFF", - "description": "regional indicator symbol letter k + regional indicator symbol letter z", - "aliases": [ - "kz" - ], - "tags": [ - "flag", - "kazakhstan" - ] - }, - { - "emojiChar": "🇱🇦", - "emoji": "\uD83C\uDDF1\uD83C\uDDE6", - "description": "regional indicator symbol letter l + regional indicator symbol letter a", - "aliases": [ - "la" - ], - "tags": [ - "flag", - "laos" - ] - }, - { - "emojiChar": "🇱🇧", - "emoji": "\uD83C\uDDF1\uD83C\uDDE7", - "description": "regional indicator symbol letter l + regional indicator symbol letter b", - "aliases": [ - "lb" - ], - "tags": [ - "flag", - "lebanon" - ] - }, - { - "emojiChar": "🇱🇨", - "emoji": "\uD83C\uDDF1\uD83C\uDDE8", - "description": "regional indicator symbol letter l + regional indicator symbol letter c", - "aliases": [ - "lc" - ], - "tags": [ - "flag", - "st. lucia" - ] - }, - { - "emojiChar": "🇱🇮", - "emoji": "\uD83C\uDDF1\uD83C\uDDEE", - "description": "regional indicator symbol letter l + regional indicator symbol letter i", - "aliases": [ - "li" - ], - "tags": [ - "flag", - "liechtenstein" - ] - }, - { - "emojiChar": "🇱🇰", - "emoji": "\uD83C\uDDF1\uD83C\uDDF0", - "description": "regional indicator symbol letter l + regional indicator symbol letter k", - "aliases": [ - "lk" - ], - "tags": [ - "flag", - "sri lanka" - ] - }, - { - "emojiChar": "🇱🇷", - "emoji": "\uD83C\uDDF1\uD83C\uDDF7", - "description": "regional indicator symbol letter l + regional indicator symbol letter r", - "aliases": [ - "lr" - ], - "tags": [ - "flag", - "liberia" - ] - }, - { - "emojiChar": "🇱🇸", - "emoji": "\uD83C\uDDF1\uD83C\uDDF8", - "description": "regional indicator symbol letter l + regional indicator symbol letter s", - "aliases": [ - "ls" - ], - "tags": [ - "flag", - "lesotho" - ] - }, - { - "emojiChar": "🇱🇹", - "emoji": "\uD83C\uDDF1\uD83C\uDDF9", - "description": "regional indicator symbol letter l + regional indicator symbol letter t", - "aliases": [ - "lt" - ], - "tags": [ - "flag", - "lithuania" - ] - }, - { - "emojiChar": "🇱🇺", - "emoji": "\uD83C\uDDF1\uD83C\uDDFA", - "description": "regional indicator symbol letter l + regional indicator symbol letter u", - "aliases": [ - "lu" - ], - "tags": [ - "flag", - "luxembourg" - ] - }, - { - "emojiChar": "🇱🇻", - "emoji": "\uD83C\uDDF1\uD83C\uDDFB", - "description": "regional indicator symbol letter l + regional indicator symbol letter v", - "aliases": [ - "lv" - ], - "tags": [ - "flag", - "latvia" - ] - }, - { - "emojiChar": "🇱🇾", - "emoji": "\uD83C\uDDF1\uD83C\uDDFE", - "description": "regional indicator symbol letter l + regional indicator symbol letter y", - "aliases": [ - "ly" - ], - "tags": [ - "flag", - "libya" - ] - }, - { - "emojiChar": "🇲🇦", - "emoji": "\uD83C\uDDF2\uD83C\uDDE6", - "description": "regional indicator symbol letter m + regional indicator symbol letter a", - "aliases": [ - "ma" - ], - "tags": [ - "flag", - "morocco" - ] - }, - { - "emojiChar": "🇲🇨", - "emoji": "\uD83C\uDDF2\uD83C\uDDE8", - "description": "regional indicator symbol letter m + regional indicator symbol letter c", - "aliases": [ - "mc" - ], - "tags": [ - "flag", - "monaco" - ] - }, - { - "emojiChar": "🇲🇩", - "emoji": "\uD83C\uDDF2\uD83C\uDDE9", - "description": "regional indicator symbol letter m + regional indicator symbol letter d", - "aliases": [ - "md" - ], - "tags": [ - "flag", - "moldova" - ] - }, - { - "emojiChar": "🇲🇪", - "emoji": "\uD83C\uDDF2\uD83C\uDDEA", - "description": "regional indicator symbol letter m + regional indicator symbol letter e", - "aliases": [ - "me" - ], - "tags": [ - "flag", - "montenegro" - ] - }, - { - "emojiChar": "🇲🇫", - "emoji": "\uD83C\uDDF2\uD83C\uDDEB", - "description": "regional indicator symbol letter m + regional indicator symbol letter f", - "aliases": [ - "mf" - ], - "tags": [ - "flag", - "st. martin" - ] - }, - { - "emojiChar": "🇲🇬", - "emoji": "\uD83C\uDDF2\uD83C\uDDEC", - "description": "regional indicator symbol letter m + regional indicator symbol letter g", - "aliases": [ - "mg" - ], - "tags": [ - "flag", - "madagascar" - ] - }, - { - "emojiChar": "🇲🇭", - "emoji": "\uD83C\uDDF2\uD83C\uDDED", - "description": "regional indicator symbol letter m + regional indicator symbol letter h", - "aliases": [ - "mh" - ], - "tags": [ - "flag", - "marshall islands" - ] - }, - { - "emojiChar": "🇲🇰", - "emoji": "\uD83C\uDDF2\uD83C\uDDF0", - "description": "regional indicator symbol letter m + regional indicator symbol letter k", - "aliases": [ - "mk" - ], - "tags": [ - "flag", - "macedonia" - ] - }, - { - "emojiChar": "🇲🇱", - "emoji": "\uD83C\uDDF2\uD83C\uDDF1", - "description": "regional indicator symbol letter m + regional indicator symbol letter l", - "aliases": [ - "ml" - ], - "tags": [ - "flag", - "mali" - ] - }, - { - "emojiChar": "🇲🇲", - "emoji": "\uD83C\uDDF2\uD83C\uDDF2", - "description": "regional indicator symbol letter m + regional indicator symbol letter m", - "aliases": [ - "mm" - ], - "tags": [ - "flag", - "myanmar" - ] - }, - { - "emojiChar": "🇲🇳", - "emoji": "\uD83C\uDDF2\uD83C\uDDF3", - "description": "regional indicator symbol letter m + regional indicator symbol letter n", - "aliases": [ - "mn" - ], - "tags": [ - "flag", - "mongolia" - ] - }, - { - "emojiChar": "🇲🇴", - "emoji": "\uD83C\uDDF2\uD83C\uDDF4", - "description": "regional indicator symbol letter m + regional indicator symbol letter o", - "aliases": [ - "mo" - ], - "tags": [ - "flag", - "macau" - ] - }, - { - "emojiChar": "🇲🇵", - "emoji": "\uD83C\uDDF2\uD83C\uDDF5", - "description": "regional indicator symbol letter m + regional indicator symbol letter p", - "aliases": [ - "mp" - ], - "tags": [ - "flag", - "northern mariana islands" - ] - }, - { - "emojiChar": "🇲🇶", - "emoji": "\uD83C\uDDF2\uD83C\uDDF6", - "description": "regional indicator symbol letter m + regional indicator symbol letter q", - "aliases": [ - "mq" - ], - "tags": [ - "flag", - "martinique" - ] - }, - { - "emojiChar": "🇲🇷", - "emoji": "\uD83C\uDDF2\uD83C\uDDF7", - "description": "regional indicator symbol letter m + regional indicator symbol letter r", - "aliases": [ - "mr" - ], - "tags": [ - "flag", - "mauritania" - ] - }, - { - "emojiChar": "🇲🇸", - "emoji": "\uD83C\uDDF2\uD83C\uDDF8", - "description": "regional indicator symbol letter m + regional indicator symbol letter s", - "aliases": [ - "ms" - ], - "tags": [ - "flag", - "montserrat" - ] - }, - { - "emojiChar": "🇲🇹", - "emoji": "\uD83C\uDDF2\uD83C\uDDF9", - "description": "regional indicator symbol letter m + regional indicator symbol letter t", - "aliases": [ - "mt" - ], - "tags": [ - "flag", - "malta" - ] - }, - { - "emojiChar": "🇲🇺", - "emoji": "\uD83C\uDDF2\uD83C\uDDFA", - "description": "regional indicator symbol letter m + regional indicator symbol letter u", - "aliases": [ - "mu" - ], - "tags": [ - "flag", - "mauritius" - ] - }, - { - "emojiChar": "🇲🇻", - "emoji": "\uD83C\uDDF2\uD83C\uDDFB", - "description": "regional indicator symbol letter m + regional indicator symbol letter v", - "aliases": [ - "mv" - ], - "tags": [ - "flag", - "maldives" - ] - }, - { - "emojiChar": "🇲🇼", - "emoji": "\uD83C\uDDF2\uD83C\uDDFC", - "description": "regional indicator symbol letter m + regional indicator symbol letter w", - "aliases": [ - "mw" - ], - "tags": [ - "flag", - "malawi" - ] - }, - { - "emojiChar": "🇲🇽", - "emoji": "\uD83C\uDDF2\uD83C\uDDFD", - "description": "regional indicator symbol letter m + regional indicator symbol letter x", - "aliases": [ - "mx" - ], - "tags": [ - "flag", - "mexico" - ] - }, - { - "emojiChar": "🇲🇾", - "emoji": "\uD83C\uDDF2\uD83C\uDDFE", - "description": "regional indicator symbol letter m + regional indicator symbol letter y", - "aliases": [ - "my" - ], - "tags": [ - "flag", - "malaysia" - ] - }, - { - "emojiChar": "🇲🇿", - "emoji": "\uD83C\uDDF2\uD83C\uDDFF", - "description": "regional indicator symbol letter m + regional indicator symbol letter z", - "aliases": [ - "mz" - ], - "tags": [ - "flag", - "mozambique" - ] - }, - { - "emojiChar": "🇳🇦", - "emoji": "\uD83C\uDDF3\uD83C\uDDE6", - "description": "regional indicator symbol letter n + regional indicator symbol letter a", - "aliases": [ - "na" - ], - "tags": [ - "flag", - "namibia" - ] - }, - { - "emojiChar": "🇳🇨", - "emoji": "\uD83C\uDDF3\uD83C\uDDE8", - "description": "regional indicator symbol letter n + regional indicator symbol letter c", - "aliases": [ - "nc" - ], - "tags": [ - "flag", - "new caledonia" - ] - }, - { - "emojiChar": "🇳🇪", - "emoji": "\uD83C\uDDF3\uD83C\uDDEA", - "description": "regional indicator symbol letter n + regional indicator symbol letter e", - "aliases": [ - "ne" - ], - "tags": [ - "flag", - "niger" - ] - }, - { - "emojiChar": "🇳🇫", - "emoji": "\uD83C\uDDF3\uD83C\uDDEB", - "description": "regional indicator symbol letter n + regional indicator symbol letter f", - "aliases": [ - "nf" - ], - "tags": [ - "flag", - "norfolk island" - ] - }, - { - "emojiChar": "🇳🇬", - "emoji": "\uD83C\uDDF3\uD83C\uDDEC", - "description": "regional indicator symbol letter n + regional indicator symbol letter g", - "aliases": [ - "ng" - ], - "tags": [ - "flag", - "nigeria" - ] - }, - { - "emojiChar": "🇳🇮", - "emoji": "\uD83C\uDDF3\uD83C\uDDEE", - "description": "regional indicator symbol letter n + regional indicator symbol letter i", - "aliases": [ - "ni" - ], - "tags": [ - "flag", - "nicaragua" - ] - }, - { - "emojiChar": "🇳🇱", - "emoji": "\uD83C\uDDF3\uD83C\uDDF1", - "description": "regional indicator symbol letter n + regional indicator symbol letter l", - "aliases": [ - "nl" - ], - "tags": [ - "flag", - "netherlands" - ] - }, - { - "emojiChar": "🇳🇴", - "emoji": "\uD83C\uDDF3\uD83C\uDDF4", - "description": "regional indicator symbol letter n + regional indicator symbol letter o", - "aliases": [ - "no" - ], - "tags": [ - "flag", - "norway" - ] - }, - { - "emojiChar": "🇳🇵", - "emoji": "\uD83C\uDDF3\uD83C\uDDF5", - "description": "regional indicator symbol letter n + regional indicator symbol letter p", - "aliases": [ - "np" - ], - "tags": [ - "flag", - "nepal" - ] - }, - { - "emojiChar": "🇳🇷", - "emoji": "\uD83C\uDDF3\uD83C\uDDF7", - "description": "regional indicator symbol letter n + regional indicator symbol letter r", - "aliases": [ - "nr" - ], - "tags": [ - "flag", - "nauru" - ] - }, - { - "emojiChar": "🇳🇺", - "emoji": "\uD83C\uDDF3\uD83C\uDDFA", - "description": "regional indicator symbol letter n + regional indicator symbol letter u", - "aliases": [ - "nu" - ], - "tags": [ - "flag", - "niue" - ] - }, - { - "emojiChar": "🇳🇿", - "emoji": "\uD83C\uDDF3\uD83C\uDDFF", - "description": "regional indicator symbol letter n + regional indicator symbol letter z", - "aliases": [ - "nz" - ], - "tags": [ - "flag", - "new zealand" - ] - }, - { - "emojiChar": "🇴🇲", - "emoji": "\uD83C\uDDF4\uD83C\uDDF2", - "description": "regional indicator symbol letter o + regional indicator symbol letter m", - "aliases": [ - "om" - ], - "tags": [ - "flag", - "oman" - ] - }, - { - "emojiChar": "🇵🇦", - "emoji": "\uD83C\uDDF5\uD83C\uDDE6", - "description": "regional indicator symbol letter p + regional indicator symbol letter a", - "aliases": [ - "pa" - ], - "tags": [ - "flag", - "panama" - ] - }, - { - "emojiChar": "🇵🇪", - "emoji": "\uD83C\uDDF5\uD83C\uDDEA", - "description": "regional indicator symbol letter p + regional indicator symbol letter e", - "aliases": [ - "pe" - ], - "tags": [ - "flag", - "peru" - ] - }, - { - "emojiChar": "🇵🇫", - "emoji": "\uD83C\uDDF5\uD83C\uDDEB", - "description": "regional indicator symbol letter p + regional indicator symbol letter f", - "aliases": [ - "pf" - ], - "tags": [ - "flag", - "french polynesia" - ] - }, - { - "emojiChar": "🇵🇬", - "emoji": "\uD83C\uDDF5\uD83C\uDDEC", - "description": "regional indicator symbol letter p + regional indicator symbol letter g", - "aliases": [ - "pg" - ], - "tags": [ - "flag", - "papua new guinea" - ] - }, - { - "emojiChar": "🇵🇭", - "emoji": "\uD83C\uDDF5\uD83C\uDDED", - "description": "regional indicator symbol letter p + regional indicator symbol letter h", - "aliases": [ - "ph" - ], - "tags": [ - "flag", - "philippines" - ] - }, - { - "emojiChar": "🇵🇰", - "emoji": "\uD83C\uDDF5\uD83C\uDDF0", - "description": "regional indicator symbol letter p + regional indicator symbol letter k", - "aliases": [ - "pk" - ], - "tags": [ - "flag", - "pakistan" - ] - }, - { - "emojiChar": "🇵🇱", - "emoji": "\uD83C\uDDF5\uD83C\uDDF1", - "description": "regional indicator symbol letter p + regional indicator symbol letter l", - "aliases": [ - "pl" - ], - "tags": [ - "flag", - "poland" - ] - }, - { - "emojiChar": "🇵🇲", - "emoji": "\uD83C\uDDF5\uD83C\uDDF2", - "description": "regional indicator symbol letter p + regional indicator symbol letter m", - "aliases": [ - "pm" - ], - "tags": [ - "flag", - "st. pierre & miquelon" - ] - }, - { - "emojiChar": "🇵🇳", - "emoji": "\uD83C\uDDF5\uD83C\uDDF3", - "description": "regional indicator symbol letter p + regional indicator symbol letter n", - "aliases": [ - "pn" - ], - "tags": [ - "flag", - "pitcairn islands" - ] - }, - { - "emojiChar": "🇵🇷", - "emoji": "\uD83C\uDDF5\uD83C\uDDF7", - "description": "regional indicator symbol letter p + regional indicator symbol letter r", - "aliases": [ - "pr" - ], - "tags": [ - "flag", - "puerto rico" - ] - }, - { - "emojiChar": "🇵🇸", - "emoji": "\uD83C\uDDF5\uD83C\uDDF8", - "description": "regional indicator symbol letter p + regional indicator symbol letter s", - "aliases": [ - "ps" - ], - "tags": [ - "flag", - "palestine" - ] - }, - { - "emojiChar": "🇵🇹", - "emoji": "\uD83C\uDDF5\uD83C\uDDF9", - "description": "regional indicator symbol letter p + regional indicator symbol letter t", - "aliases": [ - "pt" - ], - "tags": [ - "flag", - "portugal" - ] - }, - { - "emojiChar": "🇵🇼", - "emoji": "\uD83C\uDDF5\uD83C\uDDFC", - "description": "regional indicator symbol letter p + regional indicator symbol letter w", - "aliases": [ - "pw" - ], - "tags": [ - "flag", - "palau" - ] - }, - { - "emojiChar": "🇵🇾", - "emoji": "\uD83C\uDDF5\uD83C\uDDFE", - "description": "regional indicator symbol letter p + regional indicator symbol letter y", - "aliases": [ - "py" - ], - "tags": [ - "flag", - "paraguay" - ] - }, - { - "emojiChar": "🇶🇦", - "emoji": "\uD83C\uDDF6\uD83C\uDDE6", - "description": "regional indicator symbol letter q + regional indicator symbol letter a", - "aliases": [ - "qa" - ], - "tags": [ - "flag", - "qatar" - ] - }, - { - "emojiChar": "🏳️‍🌈", - "emoji": "\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08", - "description": "rainbow flag", - "aliases": [ - "rainbow_flag", - "pride_flag" - ], - "tags": [ - "flag" - ] - }, - { - "emojiChar": "🇷🇪", - "emoji": "\uD83C\uDDF7\uD83C\uDDEA", - "description": "regional indicator symbol letter r + regional indicator symbol letter e", - "aliases": [ - "re" - ], - "tags": [ - "flag", - "reunion" - ] - }, - { - "emojiChar": "🇷🇴", - "emoji": "\uD83C\uDDF7\uD83C\uDDF4", - "description": "regional indicator symbol letter r + regional indicator symbol letter o", - "aliases": [ - "ro" - ], - "tags": [ - "flag", - "romania" - ] - }, - { - "emojiChar": "🇷🇸", - "emoji": "\uD83C\uDDF7\uD83C\uDDF8", - "description": "regional indicator symbol letter r + regional indicator symbol letter s", - "aliases": [ - "rs" - ], - "tags": [ - "flag", - "serbia" - ] - }, - { - "emojiChar": "🇷🇺", - "emoji": "\uD83C\uDDF7\uD83C\uDDFA", - "description": "regional indicator symbol letter r + regional indicator symbol letter u", - "aliases": [ - "ru" - ], - "tags": [ - "flag", - "russia" - ] - }, - { - "emojiChar": "🇷🇼", - "emoji": "\uD83C\uDDF7\uD83C\uDDFC", - "description": "regional indicator symbol letter r + regional indicator symbol letter w", - "aliases": [ - "rw" - ], - "tags": [ - "flag", - "rwanda" - ] - }, - { - "emojiChar": "🇸🇦", - "emoji": "\uD83C\uDDF8\uD83C\uDDE6", - "description": "regional indicator symbol letter s + regional indicator symbol letter a", - "aliases": [ - "sa_flag" - ], - "tags": [ - "flag", - "saudi arabia" - ] - }, - { - "emojiChar": "🇸🇧", - "emoji": "\uD83C\uDDF8\uD83C\uDDE7", - "description": "regional indicator symbol letter s + regional indicator symbol letter b", - "aliases": [ - "sb" - ], - "tags": [ - "flag", - "solomon islands" - ] - }, - { - "emojiChar": "🇸🇨", - "emoji": "\uD83C\uDDF8\uD83C\uDDE8", - "description": "regional indicator symbol letter s + regional indicator symbol letter c", - "aliases": [ - "sc" - ], - "tags": [ - "flag", - "seychelles" - ] - }, - { - "emojiChar": "🇸🇩", - "emoji": "\uD83C\uDDF8\uD83C\uDDE9", - "description": "regional indicator symbol letter s + regional indicator symbol letter d", - "aliases": [ - "sd" - ], - "tags": [ - "flag", - "sudan" - ] - }, - { - "emojiChar": "🇸🇪", - "emoji": "\uD83C\uDDF8\uD83C\uDDEA", - "description": "regional indicator symbol letter s + regional indicator symbol letter e", - "aliases": [ - "se" - ], - "tags": [ - "flag", - "sweden" - ] - }, - { - "emojiChar": "🇸🇬", - "emoji": "\uD83C\uDDF8\uD83C\uDDEC", - "description": "regional indicator symbol letter s + regional indicator symbol letter g", - "aliases": [ - "sg" - ], - "tags": [ - "flag", - "singapore" - ] - }, - { - "emojiChar": "🇸🇭", - "emoji": "\uD83C\uDDF8\uD83C\uDDED", - "description": "regional indicator symbol letter s + regional indicator symbol letter h", - "aliases": [ - "sh" - ], - "tags": [ - "flag", - "st. helena" - ] - }, - { - "emojiChar": "🇸🇮", - "emoji": "\uD83C\uDDF8\uD83C\uDDEE", - "description": "regional indicator symbol letter s + regional indicator symbol letter i", - "aliases": [ - "si" - ], - "tags": [ - "flag", - "slovenia" - ] - }, - { - "emojiChar": "🇸🇯", - "emoji": "\uD83C\uDDF8\uD83C\uDDEF", - "description": "regional indicator symbol letter s + regional indicator symbol letter j", - "aliases": [ - "sj" - ], - "tags": [ - "flag", - "svalbard & jan mayen" - ] - }, - { - "emojiChar": "🇸🇰", - "emoji": "\uD83C\uDDF8\uD83C\uDDF0", - "description": "regional indicator symbol letter s + regional indicator symbol letter k", - "aliases": [ - "sk" - ], - "tags": [ - "flag", - "slovakia" - ] - }, - { - "emojiChar": "🇸🇱", - "emoji": "\uD83C\uDDF8\uD83C\uDDF1", - "description": "regional indicator symbol letter s + regional indicator symbol letter l", - "aliases": [ - "sl" - ], - "tags": [ - "flag", - "sierra leone" - ] - }, - { - "emojiChar": "🇸🇲", - "emoji": "\uD83C\uDDF8\uD83C\uDDF2", - "description": "regional indicator symbol letter s + regional indicator symbol letter m", - "aliases": [ - "sm" - ], - "tags": [ - "flag", - "san marino" - ] - }, - { - "emojiChar": "🇸🇳", - "emoji": "\uD83C\uDDF8\uD83C\uDDF3", - "description": "regional indicator symbol letter s + regional indicator symbol letter n", - "aliases": [ - "sn" - ], - "tags": [ - "flag", - "senegal" - ] - }, - { - "emojiChar": "🇸🇴", - "emoji": "\uD83C\uDDF8\uD83C\uDDF4", - "description": "regional indicator symbol letter s + regional indicator symbol letter o", - "aliases": [ - "so" - ], - "tags": [ - "flag", - "somalia" - ] - }, - { - "emojiChar": "🇸🇷", - "emoji": "\uD83C\uDDF8\uD83C\uDDF7", - "description": "regional indicator symbol letter s + regional indicator symbol letter r", - "aliases": [ - "sr" - ], - "tags": [ - "flag", - "suriname" - ] - }, - { - "emojiChar": "🇸🇸", - "emoji": "\uD83C\uDDF8\uD83C\uDDF8", - "description": "regional indicator symbol letter s + regional indicator symbol letter s", - "aliases": [ - "ss" - ], - "tags": [ - "flag", - "south sudan" - ] - }, - { - "emojiChar": "🇸🇹", - "emoji": "\uD83C\uDDF8\uD83C\uDDF9", - "description": "regional indicator symbol letter s + regional indicator symbol letter t", - "aliases": [ - "st" - ], - "tags": [ - "flag", - "sao tome and principe" - ] - }, - { - "emojiChar": "🇸🇻", - "emoji": "\uD83C\uDDF8\uD83C\uDDFB", - "description": "regional indicator symbol letter s + regional indicator symbol letter v", - "aliases": [ - "sv" - ], - "tags": [ - "flag", - "el salvador" - ] - }, - { - "emojiChar": "🇸🇽", - "emoji": "\uD83C\uDDF8\uD83C\uDDFD", - "description": "regional indicator symbol letter s + regional indicator symbol letter x", - "aliases": [ - "sx" - ], - "tags": [ - "flag", - "sint maarten" - ] - }, - { - "emojiChar": "🇸🇾", - "emoji": "\uD83C\uDDF8\uD83C\uDDFE", - "description": "regional indicator symbol letter s + regional indicator symbol letter y", - "aliases": [ - "sy" - ], - "tags": [ - "flag", - "syria" - ] - }, - { - "emojiChar": "🇸🇿", - "emoji": "\uD83C\uDDF8\uD83C\uDDFF", - "description": "regional indicator symbol letter s + regional indicator symbol letter z", - "aliases": [ - "sz" - ], - "tags": [ - "flag", - "swaziland" - ] - }, - { - "emojiChar": "🇹🇦", - "emoji": "\uD83C\uDDF9\uD83C\uDDE6", - "description": "regional indicator symbol letter t + regional indicator symbol letter a", - "aliases": [ - "ta" - ], - "tags": [ - "flag", - "tristan da cunha" - ] - }, - { - "emojiChar": "🇹🇨", - "emoji": "\uD83C\uDDF9\uD83C\uDDE8", - "description": "regional indicator symbol letter t + regional indicator symbol letter c", - "aliases": [ - "tc" - ], - "tags": [ - "flag", - "turks and caicos islands" - ] - }, - { - "emojiChar": "🇹🇩", - "emoji": "\uD83C\uDDF9\uD83C\uDDE9", - "description": "regional indicator symbol letter t + regional indicator symbol letter d", - "aliases": [ - "td" - ], - "tags": [ - "flag", - "chad" - ] - }, - { - "emojiChar": "🇹🇫", - "emoji": "\uD83C\uDDF9\uD83C\uDDEB", - "description": "regional indicator symbol letter t + regional indicator symbol letter f", - "aliases": [ - "tf" - ], - "tags": [ - "flag", - "french southern territories" - ] - }, - { - "emojiChar": "🇹🇬", - "emoji": "\uD83C\uDDF9\uD83C\uDDEC", - "description": "regional indicator symbol letter t + regional indicator symbol letter g", - "aliases": [ - "tg" - ], - "tags": [ - "flag", - "togo" - ] - }, - { - "emojiChar": "🇹🇭", - "emoji": "\uD83C\uDDF9\uD83C\uDDED", - "description": "regional indicator symbol letter t + regional indicator symbol letter h", - "aliases": [ - "th" - ], - "tags": [ - "flag", - "thailand" - ] - }, - { - "emojiChar": "🇹🇯", - "emoji": "\uD83C\uDDF9\uD83C\uDDEF", - "description": "regional indicator symbol letter t + regional indicator symbol letter j", - "aliases": [ - "tj" - ], - "tags": [ - "flag", - "tajikistan" - ] - }, - { - "emojiChar": "🇹🇰", - "emoji": "\uD83C\uDDF9\uD83C\uDDF0", - "description": "regional indicator symbol letter t + regional indicator symbol letter k", - "aliases": [ - "tk" - ], - "tags": [ - "flag", - "tokelau" - ] - }, - { - "emojiChar": "🇹🇱", - "emoji": "\uD83C\uDDF9\uD83C\uDDF1", - "description": "regional indicator symbol letter t + regional indicator symbol letter l", - "aliases": [ - "tl" - ], - "tags": [ - "flag", - "east timor" - ] - }, - { - "emojiChar": "🇹🇲", - "emoji": "\uD83C\uDDF9\uD83C\uDDF2", - "description": "regional indicator symbol letter t + regional indicator symbol letter m", - "aliases": [ - "tm_flag" - ], - "tags": [ - "flag", - "turkmenistan" - ] - }, - { - "emojiChar": "🇹🇳", - "emoji": "\uD83C\uDDF9\uD83C\uDDF3", - "description": "regional indicator symbol letter t + regional indicator symbol letter n", - "aliases": [ - "tn" - ], - "tags": [ - "flag", - "tunisia" - ] - }, - { - "emojiChar": "🇹🇴", - "emoji": "\uD83C\uDDF9\uD83C\uDDF4", - "description": "regional indicator symbol letter t + regional indicator symbol letter o", - "aliases": [ - "to" - ], - "tags": [ - "flag", - "tonga" - ] - }, - { - "emojiChar": "🇹🇷", - "emoji": "\uD83C\uDDF9\uD83C\uDDF7", - "description": "regional indicator symbol letter t + regional indicator symbol letter r", - "aliases": [ - "tr" - ], - "tags": [ - "flag", - "turkey" - ] - }, - { - "emojiChar": "🇹🇹", - "emoji": "\uD83C\uDDF9\uD83C\uDDF9", - "description": "regional indicator symbol letter t + regional indicator symbol letter t", - "aliases": [ - "tt" - ], - "tags": [ - "flag", - "trinidad and tobago" - ] - }, - { - "emojiChar": "🇹🇻", - "emoji": "\uD83C\uDDF9\uD83C\uDDFB", - "description": "regional indicator symbol letter t + regional indicator symbol letter v", - "aliases": [ - "tv_flag" - ], - "tags": [ - "flag", - "tuvalu" - ] - }, - { - "emojiChar": "🇹🇼", - "emoji": "\uD83C\uDDF9\uD83C\uDDFC", - "description": "regional indicator symbol letter t + regional indicator symbol letter w", - "aliases": [ - "tw" - ], - "tags": [ - "flag", - "taiwan" - ] - }, - { - "emojiChar": "🇹🇿", - "emoji": "\uD83C\uDDF9\uD83C\uDDFF", - "description": "regional indicator symbol letter t + regional indicator symbol letter z", - "aliases": [ - "tz" - ], - "tags": [ - "flag", - "tanzania" - ] - }, - { - "emojiChar": "🇺🇦", - "emoji": "\uD83C\uDDFA\uD83C\uDDE6", - "description": "regional indicator symbol letter u + regional indicator symbol letter a", - "aliases": [ - "ua" - ], - "tags": [ - "flag", - "ukraine" - ] - }, - { - "emojiChar": "🇺🇬", - "emoji": "\uD83C\uDDFA\uD83C\uDDEC", - "description": "regional indicator symbol letter u + regional indicator symbol letter g", - "aliases": [ - "ug" - ], - "tags": [ - "flag", - "uganda" - ] - }, - { - "emojiChar": "🇺🇲", - "emoji": "\uD83C\uDDFA\uD83C\uDDF2", - "description": "regional indicator symbol letter u + regional indicator symbol letter m", - "aliases": [ - "um" - ], - "tags": [ - "flag", - "u.s. outlying islands" - ] - }, - { - "emojiChar": "🇺🇳", - "emoji": "\uD83C\uDDFA\uD83C\uDDF3", - "description": "regional indicator symbol letter u + regional indicator symbol letter n", - "aliases": [ - "un" - ], - "tags": [ - "flag", - "united nations" - ] - }, - { - "emojiChar": "🇺🇸", - "emoji": "\uD83C\uDDFA\uD83C\uDDF8", - "description": "regional indicator symbol letter u + regional indicator symbol letter s", - "aliases": [ - "us" - ], - "tags": [ - "flag", - "united states of america" - ] - }, - { - "emojiChar": "🏴󠁵󠁳󠁴󠁸󠁿", - "emoji": "\uD83C\uDFF4\uDB40\uDC75\uDB40\uDC73\uDB40\uDC74\uDB40\uDC78\uDB40\uDC7F", - "description": "waving black flag + regional indicator symbol letter u + regional indicator symbol letter s + regional indicator symbol letter t + regional indicator symbol letter x + cancel tag", - "aliases": [ - "ustx" - ], - "tags": [ - "flag", - "texas" - ] - }, - { - "emojiChar": "🇺🇾", - "emoji": "\uD83C\uDDFA\uD83C\uDDFE", - "description": "regional indicator symbol letter u + regional indicator symbol letter y", - "aliases": [ - "uy" - ], - "tags": [ - "flag", - "uruguay" - ] - }, - { - "emojiChar": "🇺🇿", - "emoji": "\uD83C\uDDFA\uD83C\uDDFF", - "description": "regional indicator symbol letter u + regional indicator symbol letter z", - "aliases": [ - "uz" - ], - "tags": [ - "flag", - "uzbekistan" - ] - }, - { - "emojiChar": "🇻🇦", - "emoji": "\uD83C\uDDFB\uD83C\uDDE6", - "description": "regional indicator symbol letter v + regional indicator symbol letter a", - "aliases": [ - "va" - ], - "tags": [ - "flag", - "vatican city" - ] - }, - { - "emojiChar": "🇻🇨", - "emoji": "\uD83C\uDDFB\uD83C\uDDE8", - "description": "regional indicator symbol letter v + regional indicator symbol letter c", - "aliases": [ - "vc" - ], - "tags": [ - "flag", - "st vincent grenadines" - ] - }, - { - "emojiChar": "🇻🇪", - "emoji": "\uD83C\uDDFB\uD83C\uDDEA", - "description": "regional indicator symbol letter v + regional indicator symbol letter e", - "aliases": [ - "ve" - ], - "tags": [ - "flag", - "venezuela" - ] - }, - { - "emojiChar": "🇻🇬", - "emoji": "\uD83C\uDDFB\uD83C\uDDEC", - "description": "regional indicator symbol letter v + regional indicator symbol letter g", - "aliases": [ - "vg" - ], - "tags": [ - "flag", - "british virgin islands" - ] - }, - { - "emojiChar": "🇻🇮", - "emoji": "\uD83C\uDDFB\uD83C\uDDEE", - "description": "regional indicator symbol letter v + regional indicator symbol letter i", - "aliases": [ - "vi" - ], - "tags": [ - "flag", - "us virgin islands" - ] - }, - { - "emojiChar": "🇻🇳", - "emoji": "\uD83C\uDDFB\uD83C\uDDF3", - "description": "regional indicator symbol letter v + regional indicator symbol letter n", - "aliases": [ - "vn" - ], - "tags": [ - "flag", - "vietnam" - ] - }, - { - "emojiChar": "🇻🇺", - "emoji": "\uD83C\uDDFB\uD83C\uDDFA", - "description": "regional indicator symbol letter v + regional indicator symbol letter u", - "aliases": [ - "vu" - ], - "tags": [ - "flag", - "vanuatu" - ] - }, - { - "emojiChar": "🇼🇫", - "emoji": "\uD83C\uDDFC\uD83C\uDDEB", - "description": "regional indicator symbol letter w + regional indicator symbol letter f", - "aliases": [ - "wf" - ], - "tags": [ - "flag", - "wallis & futuna" - ] - }, - { - "emojiChar": "🇼🇸", - "emoji": "\uD83C\uDDFC\uD83C\uDDF8", - "description": "regional indicator symbol letter w + regional indicator symbol letter s", - "aliases": [ - "ws" - ], - "tags": [ - "flag", - "samoa" - ] - }, - { - "emojiChar": "🇽🇰", - "emoji": "\uD83C\uDDFD\uD83C\uDDF0", - "description": "regional indicator symbol letter x + regional indicator symbol letter k", - "aliases": [ - "xk" - ], - "tags": [ - "flag", - "kosovo" - ] - }, - { - "emojiChar": "🇾🇪", - "emoji": "\uD83C\uDDFE\uD83C\uDDEA", - "description": "regional indicator symbol letter y + regional indicator symbol letter e", - "aliases": [ - "ye" - ], - "tags": [ - "flag", - "yemen" - ] - }, - { - "emojiChar": "🇾🇹", - "emoji": "\uD83C\uDDFE\uD83C\uDDF9", - "description": "regional indicator symbol letter y + regional indicator symbol letter t", - "aliases": [ - "yt" - ], - "tags": [ - "flag", - "mayotte" - ] - }, - { - "emojiChar": "🇿🇦", - "emoji": "\uD83C\uDDFF\uD83C\uDDE6", - "description": "regional indicator symbol letter z + regional indicator symbol letter a", - "aliases": [ - "za" - ], - "tags": [ - "flag", - "south africa" - ] - }, - { - "emojiChar": "🇿🇲", - "emoji": "\uD83C\uDDFF\uD83C\uDDF2", - "description": "regional indicator symbol letter z + regional indicator symbol letter m", - "aliases": [ - "zm" - ], - "tags": [ - "flag", - "zambia" - ] - }, - { - "emojiChar": "🇿🇼", - "emoji": "\uD83C\uDDFF\uD83C\uDDFC", - "description": "regional indicator symbol letter z + regional indicator symbol letter w", - "aliases": [ - "zw" - ], - "tags": [ - "flag", - "zimbabwe" - ] - } -] diff --git a/serializer/gson/src/main/kotlin/io/wax911/emojify/serializer/gson/GsonDeserializer.kt b/serializer/gson/src/main/kotlin/io/wax911/emojify/serializer/gson/GsonDeserializer.kt index b4120875..272ee747 100644 --- a/serializer/gson/src/main/kotlin/io/wax911/emojify/serializer/gson/GsonDeserializer.kt +++ b/serializer/gson/src/main/kotlin/io/wax911/emojify/serializer/gson/GsonDeserializer.kt @@ -18,7 +18,7 @@ package io.wax911.emojify.serializer.gson import com.google.gson.Gson import com.google.gson.reflect.TypeToken -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.contract.serializer.IEmojiDeserializer import java.io.InputStream @@ -28,7 +28,7 @@ import java.io.InputStream class GsonDeserializer : IEmojiDeserializer { private val gson = Gson() - override fun decodeFromStream(inputStream: InputStream): List { + override fun decodeFromStream(inputStream: InputStream): List { val myType = TypeToken.getParameterized(List::class.java, GsonEmoji::class.java).type return gson.fromJson(inputStream.reader(), myType) } diff --git a/serializer/gson/src/main/kotlin/io/wax911/emojify/serializer/gson/GsonEmoji.kt b/serializer/gson/src/main/kotlin/io/wax911/emojify/serializer/gson/GsonEmoji.kt index 093c5a6f..aefa0a72 100644 --- a/serializer/gson/src/main/kotlin/io/wax911/emojify/serializer/gson/GsonEmoji.kt +++ b/serializer/gson/src/main/kotlin/io/wax911/emojify/serializer/gson/GsonEmoji.kt @@ -17,10 +17,10 @@ package io.wax911.emojify.serializer.gson import com.google.gson.annotations.SerializedName -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji /** - * Default implementation of AbstractEmoji for gson + * Default implementation of IEmoji for gson */ data class GsonEmoji( @SerializedName(value = "aliases") override val aliases: List?, @@ -30,4 +30,7 @@ data class GsonEmoji( @SerializedName(value = "supports_fitzpatrick") override val supportsFitzpatrick: Boolean, @SerializedName(value = "supports_gender") override val supportsGender: Boolean, @SerializedName(value = "tags") override val tags: List?, -) : AbstractEmoji() + @SerializedName(value = "unicode") override val unicode: String, + @SerializedName(value = "htmlDec") override val htmlDec: String, + @SerializedName(value = "htmlHex") override val htmlHex: String, +) : IEmoji diff --git a/serializer/kotlinx/src/main/kotlin/io/wax911/emojify/serializer/kotlinx/KotlinxDeserializer.kt b/serializer/kotlinx/src/main/kotlin/io/wax911/emojify/serializer/kotlinx/KotlinxDeserializer.kt index a8e091ee..03ba65d9 100644 --- a/serializer/kotlinx/src/main/kotlin/io/wax911/emojify/serializer/kotlinx/KotlinxDeserializer.kt +++ b/serializer/kotlinx/src/main/kotlin/io/wax911/emojify/serializer/kotlinx/KotlinxDeserializer.kt @@ -16,7 +16,7 @@ package io.wax911.emojify.serializer.kotlinx -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.contract.serializer.IEmojiDeserializer import kotlinx.serialization.SerializationException import kotlinx.serialization.builtins.ListSerializer @@ -32,7 +32,7 @@ class KotlinxDeserializer : IEmojiDeserializer { @OptIn(kotlinx.serialization.ExperimentalSerializationApi::class) @Throws(SerializationException::class) - override fun decodeFromStream(inputStream: InputStream): List { + override fun decodeFromStream(inputStream: InputStream): List { val deserializer = ListSerializer(KotlinxEmoji.serializer()) return json.decodeFromStream(deserializer, inputStream) } diff --git a/serializer/kotlinx/src/main/kotlin/io/wax911/emojify/serializer/kotlinx/KotlinxEmoji.kt b/serializer/kotlinx/src/main/kotlin/io/wax911/emojify/serializer/kotlinx/KotlinxEmoji.kt index 217f47c3..57a517fe 100644 --- a/serializer/kotlinx/src/main/kotlin/io/wax911/emojify/serializer/kotlinx/KotlinxEmoji.kt +++ b/serializer/kotlinx/src/main/kotlin/io/wax911/emojify/serializer/kotlinx/KotlinxEmoji.kt @@ -16,20 +16,23 @@ package io.wax911.emojify.serializer.kotlinx -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import kotlinx.serialization.SerialName import kotlinx.serialization.Serializable /** - * Default implementation of AbstractEmoji for kotlinx-serialization + * Default implementation of IEmoji for kotlinx-serialization */ @Serializable data class KotlinxEmoji( - @SerialName("aliases") override val aliases: List? = null, - @SerialName("description") override val description: String? = null, - @SerialName("emoji") override val emoji: String, - @SerialName("emojiChar") override val emojiChar: String, - @SerialName("supports_fitzpatrick") override val supportsFitzpatrick: Boolean = false, - @SerialName("supports_gender") override val supportsGender: Boolean = false, - @SerialName("tags") override val tags: List? = null, -) : AbstractEmoji() + @SerialName(value = "aliases") override val aliases: List? = null, + @SerialName(value = "description") override val description: String? = null, + @SerialName(value = "emoji") override val emoji: String, + @SerialName(value = "emojiChar") override val emojiChar: String, + @SerialName(value = "supports_fitzpatrick") override val supportsFitzpatrick: Boolean = false, + @SerialName(value = "supports_gender") override val supportsGender: Boolean = false, + @SerialName(value = "tags") override val tags: List? = null, + @SerialName(value = "unicode") override val unicode: String, + @SerialName(value = "htmlDec") override val htmlDec: String, + @SerialName(value = "htmlHex") override val htmlHex: String, +) : IEmoji diff --git a/serializer/moshi/src/main/kotlin/io/wax911/emojify/serializer/moshi/MoshiDeserializer.kt b/serializer/moshi/src/main/kotlin/io/wax911/emojify/serializer/moshi/MoshiDeserializer.kt index d69948fd..93645ad6 100644 --- a/serializer/moshi/src/main/kotlin/io/wax911/emojify/serializer/moshi/MoshiDeserializer.kt +++ b/serializer/moshi/src/main/kotlin/io/wax911/emojify/serializer/moshi/MoshiDeserializer.kt @@ -19,7 +19,7 @@ package io.wax911.emojify.serializer.moshi import com.squareup.moshi.Moshi import com.squareup.moshi.Types import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji import io.wax911.emojify.contract.serializer.IEmojiDeserializer import okio.buffer import okio.source @@ -31,7 +31,7 @@ import java.io.InputStream class MoshiDeserializer : IEmojiDeserializer { private val moshi = Moshi.Builder().addLast(KotlinJsonAdapterFactory()).build() - override fun decodeFromStream(inputStream: InputStream): List { + override fun decodeFromStream(inputStream: InputStream): List { val myType = Types.newParameterizedType(List::class.java, MoshiEmoji::class.java) return moshi.adapter>(myType).fromJson(inputStream.source().buffer()) ?: listOf() } diff --git a/serializer/moshi/src/main/kotlin/io/wax911/emojify/serializer/moshi/MoshiEmoji.kt b/serializer/moshi/src/main/kotlin/io/wax911/emojify/serializer/moshi/MoshiEmoji.kt index 3bdadf97..e24e3034 100644 --- a/serializer/moshi/src/main/kotlin/io/wax911/emojify/serializer/moshi/MoshiEmoji.kt +++ b/serializer/moshi/src/main/kotlin/io/wax911/emojify/serializer/moshi/MoshiEmoji.kt @@ -18,10 +18,10 @@ package io.wax911.emojify.serializer.moshi import com.squareup.moshi.Json import com.squareup.moshi.JsonClass -import io.wax911.emojify.contract.model.AbstractEmoji +import io.wax911.emojify.contract.model.IEmoji /** - * Default implementation of AbstractEmoji for moshi + * Default implementation of IEmoji for moshi */ @JsonClass(generateAdapter = true) data class MoshiEmoji( @@ -32,4 +32,7 @@ data class MoshiEmoji( @Json(name = "supports_fitzpatrick") override val supportsFitzpatrick: Boolean = false, @Json(name = "supports_gender") override val supportsGender: Boolean = false, @Json(name = "tags") override val tags: List? = null, -) : AbstractEmoji() + @Json(name = "unicode") override val unicode: String, + @Json(name = "htmlDec") override val htmlDec: String, + @Json(name = "htmlHex") override val htmlHex: String, +) : IEmoji From 88f5bd9cf2fd84aba68fdb4fc05eb1e73ad49179 Mon Sep 17 00:00:00 2001 From: Maxwell Date: Thu, 23 May 2024 21:34:30 +0200 Subject: [PATCH 2/2] chore: add initial minimal consumer-rules.pro --- contract/consumer-rules.pro | 3 +++ emojify/consumer-rules.pro | 4 ++++ emojify/proguard-rules.pro | 34 --------------------------- serializer/gson/consumer-rules.pro | 5 ++++ serializer/kotlinx/consumer-rules.pro | 7 ++++++ serializer/moshi/consumer-rules.pro | 2 ++ 6 files changed, 21 insertions(+), 34 deletions(-) create mode 100644 contract/consumer-rules.pro create mode 100644 emojify/consumer-rules.pro delete mode 100644 emojify/proguard-rules.pro create mode 100644 serializer/gson/consumer-rules.pro create mode 100644 serializer/kotlinx/consumer-rules.pro create mode 100644 serializer/moshi/consumer-rules.pro diff --git a/contract/consumer-rules.pro b/contract/consumer-rules.pro new file mode 100644 index 00000000..56c8891e --- /dev/null +++ b/contract/consumer-rules.pro @@ -0,0 +1,3 @@ +-keep interface io.wax911.emojify.contract.serializer.IEmojiDeserializer +-keep interface io.wax911.emojify.contract.model.IEmoji +-keep class io.wax911.emojify.contract.util.trie.Matches diff --git a/emojify/consumer-rules.pro b/emojify/consumer-rules.pro new file mode 100644 index 00000000..384b7c40 --- /dev/null +++ b/emojify/consumer-rules.pro @@ -0,0 +1,4 @@ +-keepattributes *Annotation*, InnerClasses +-keepclassmembers class io.wax911.emojify.** { + *** Companion; +} diff --git a/emojify/proguard-rules.pro b/emojify/proguard-rules.pro deleted file mode 100644 index 2e5f140f..00000000 --- a/emojify/proguard-rules.pro +++ /dev/null @@ -1,34 +0,0 @@ -# Add project specific ProGuard rules here. -# By default, the flags in this file are appended to flags specified -# in /home/max/Android/Sdk/tools/proguard/proguard-android.txt -# You can edit the include path and order by changing the proguardFiles -# directive in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# Add any project specific keep options here: - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile --keepattributes *Annotation*, InnerClasses --dontnote kotlinx.serialization.SerializationKt --keep,includedescriptorclasses class io.wax911.emojify.**$$serializer { *; } --keepclassmembers class io.wax911.emojify.** { - *** Companion; -} --keepclasseswithmembers class io.wax911.emojify.** { - kotlinx.serialization.KSerializer serializer(...); -} \ No newline at end of file diff --git a/serializer/gson/consumer-rules.pro b/serializer/gson/consumer-rules.pro new file mode 100644 index 00000000..68f650b0 --- /dev/null +++ b/serializer/gson/consumer-rules.pro @@ -0,0 +1,5 @@ +-keepattributes *Annotation*, InnerClasses +-dontwarn com.google.gson.Gson +-dontwarn com.google.gson.annotations.SerializedName +-dontwarn com.google.gson.reflect.TypeToken +-keep class io.wax911.emojify.serializer.gson.GsonEmoji { *;} diff --git a/serializer/kotlinx/consumer-rules.pro b/serializer/kotlinx/consumer-rules.pro new file mode 100644 index 00000000..e9f2f6ab --- /dev/null +++ b/serializer/kotlinx/consumer-rules.pro @@ -0,0 +1,7 @@ +-keepattributes *Annotation*, InnerClasses +-dontnote kotlinx.serialization.SerializationKt +-keep,includedescriptorclasses class io.wax911.emojify.serializer.kotlinx.**$$serializer { *; } +-keepclasseswithmembers class io.wax911.emojify.serializer.kotlinx.** { + kotlinx.serialization.KSerializer serializer(...); +} +-keep class io.wax911.emojify.serializer.kotlinx.KotlinxDeserializer { *;} diff --git a/serializer/moshi/consumer-rules.pro b/serializer/moshi/consumer-rules.pro new file mode 100644 index 00000000..15419caf --- /dev/null +++ b/serializer/moshi/consumer-rules.pro @@ -0,0 +1,2 @@ +-keepattributes *Annotation*, InnerClasses +-keep class io.wax911.emojify.serializer.moshi.MoshiDeserializer { *;}