# Emoji Mart
> Modern emoji picker component with custom emojis, themes, and extensive customization options.
---
.. toc::
.. llms_copy::Emoji Mart
`dash-emoji-mart` is a Dash component library that provides a modern, feature-rich emoji picker for your Dash applications. Based on the popular Emoji Mart library, it features native emoji support, multiple emoji sets (Apple, Google, Twitter, Facebook), custom emojis with GIF/SVG support, theme customization, internationalization in 20+ languages, and extensive configuration options for appearance and behavior.
### Installation
[Visit GitHub Repo](https://github.com/pip-install-python/dash_emoji_mart)
โญ๏ธ Star this component on GitHub! Stay up to date on new releases and browse the codebase.
```bash
pip install dash-emoji-mart
```
---
### Quick Start
Display a basic emoji picker with default settings. Click an emoji to select it.
.. exec::docs.dash_emoji_mart.introduction
:code: false
```python
# File: docs/dash_emoji_mart/introduction.py
from dash import *
from dash_emoji_mart import DashEmojiMart
from urllib.parse import urlparse
custom = [
{
'id': 'custom',
'name': 'Custom',
'emojis': [
{
'id': 'party_parrot',
'name': 'Party Parrot',
'short_names': ['party_parrot'],
'keywords': ['dance', 'dancing'],
'skins': [{'src': 'https://missiveapp.com/open/emoji-mart/parrot.6a845cb2.gif'}],
'native': '',
'unified': 'custom',
},
{
'id': 'plotly',
'name': 'Plotly',
'short_names': ['plotly'],
'keywords': ['plotly', 'dash'],
'skins': [{'src': 'https://store-images.s-microsoft.com/image/apps.36868.bfb0e2ee-be9e-4c73-807f-e0a7b805b1be.712aff5d-5800-47e0-97be-58d17ada3fb8.a46845e6-ce94-44cf-892b-54637c6fcf06'}],
'native': '',
'unified': 'custom',
},
],
},
]
component = html.Div([
DashEmojiMart(
id='dash-emoji-intro-input',
custom=custom,
autoFocus=False,
categories=['frequent', 'people', 'nature', 'foods', 'activity', 'places', 'objects', 'symbols', 'flags', 'custom'],
categoryIcons={'activity': {'svg': '', 'people': 'https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fstatic.vecteezy.com%2Fsystem%2Fresources%2Fpreviews%2F000%2F379%2F228%2Foriginal%2Fcool-emoji-vector-icon.jpg'}, 'custom': {'svg': ''},
'custom': {'svg': ''}},
dynamicWidth=False,
emojiButtonColors=[],
emojiButtonRadius="100%",
emojiButtonSize=36,
emojiSize=24,
emojiVersion=14,
exceptEmojis=[],
icons="auto",
locale="en",
maxFrequentRows=4,
navPosition="top",
noCountryFlags=False,
noResultsEmoji="cry",
perLine=9,
previewEmoji="point_up",
previewPosition="bottom",
searchPosition="sticky",
set="native",
skin=1,
skinTonePosition="preview",
theme="light",
),
html.Div(id='dash-emoji-intro-output', style={'marginTop': '20px'}),
], style={'width': '100%', 'overflow':'auto', 'display': 'flex', 'flexDirection': 'column', 'alignItems': 'center'})
@callback(
Output('dash-emoji-intro-output', 'children'),
Input('dash-emoji-intro-input', 'value')
)
def update_output(value):
# Check if value is a URL
try:
result = urlparse(value)
if all([result.scheme, result.netloc]):
# If value is a URL, return it as an image
return html.Img(src=value, style={'width': '40px'})
except ValueError:
pass
# If value is not a URL, return it as is
return html.H1(value)
```
---
### Custom Emojis
Add custom emojis to the picker by providing an array of emoji configurations. Custom emojis support multiple skin tones and can use GIFs or SVGs as sources.
```python
from dash import Dash, html, callback, Input, Output
import dash_mantine_components as dmc
from dash_emoji_mart import DashEmojiMart
custom_emojis = [
{
'id': 'custom',
'name': 'Custom',
'emojis': [
{
'id': 'party_parrot',
'name': 'Party Parrot',
'short_names': ['party_parrot'],
'keywords': ['dance', 'dancing'],
'skins': [{'src': '/assets/party_parrot.gif'}],
'native': '',
'unified': 'custom',
},
{
'id': 'plotly',
'name': 'Plotly',
'short_names': ['plotly'],
'keywords': ['plotly', 'dash'],
'skins': [{'src': 'https://example.com/plotly-logo.png'}],
'native': '',
'unified': 'custom',
},
],
},
]
app = Dash(__name__)
app.layout = dmc.Container([
DashEmojiMart(
id='emoji-picker',
custom=custom_emojis,
),
html.Div(id='selected-emoji')
])
@callback(
Output('selected-emoji', 'children'),
Input('emoji-picker', 'value')
)
def display_emoji(emoji_data):
if emoji_data:
return f"Selected: {emoji_data.get('native', emoji_data.get('src', ''))}"
return "No emoji selected"
```
**Custom Emoji Structure:**
- **`id`**: Unique identifier for the emoji
- **`name`**: Display name
- **`short_names`**: Array of shortcode names
- **`keywords`**: Array of search keywords
- **`skins`**: Array of skin tone variations with `src` URL
- **`native`**: Native emoji character (empty string for custom)
- **`unified`**: Unicode representation (use 'custom' for custom emojis)
---
### Custom Category Icons
Customize category icons by providing an object with category names as keys and icon definitions as values. Icons can be SVG strings or image URLs.
```python
from dash_emoji_mart import DashEmojiMart
DashEmojiMart(
id='emoji-picker',
categoryIcons={
'activity': {
'svg': ''
},
'people': {
'src': 'https://example.com/people-icon.png'
},
'custom': {
'svg': ''
}
}
)
```
**Supported Icon Formats:**
- **SVG String**: Provide raw SVG markup via the `svg` key
- **Image URL**: Provide image URL via the `src` key
Icons are displayed in the category navigation bar and adapt to the current theme.
---
### Interactive Props Explorer
Explore all available properties with live controls. Adjust settings to see how they affect the emoji picker's appearance and behavior.
.. exec::docs.dash_emoji_mart.props
:code: false
```python
# File: docs/dash_emoji_mart/props.py
from dash import *
import dash_mantine_components as dmc
from dash_emoji_mart import DashEmojiMart
# people, nature, foods, activity, places, objects, symbols, flags
data_grouped = [
{
"group": "people",
"items": [
{"value": "grinning", "label": "๐ Grinning"},
{"value": "smiley", "label": "๐ Smiley"},
{"value": "smile", "label": "๐ Smile"},
{"value": "grin", "label": "๐ Grin"},
{"value": "laughing", "label": "๐ Laughing"},
{"value": "sweat_smile", "label": "๐
Sweat Smile"},
{"value": "rolling_on_the_floor_laughing", "label": "๐คฃ Rolling on the Floor Laughing"},
{"value": "joy", "label": "๐ Joy"},
{"value": "slightly_smiling_face", "label": "๐ Slightly Smiling Face"},
{"value": "upside_down_face", "label": "๐ Upside Down Face"},
{"value": "melting_face", "label": "๐ซ Melting Face"},
{"value": "wink", "label": "๐ Wink"},
{"value": "blush", "label": "๐ Blush"},
{"value": "innocent", "label": "๐ Innocent"},
{"value": "smiling_face_with_3_hearts", "label": "๐ฅฐ Smiling Face with 3 Hearts"},
{"value": "heart_eyes", "label": "๐ Heart Eyes"},
{"value": "star-struck", "label": "๐คฉ Star-Struck"},
{"value": "kissing_heart", "label": "๐ Kissing Heart"},
{"value": "kissing", "label": "๐ Kissing"},
{"value": "relaxed", "label": "โบ๏ธ Relaxed"},
{"value": "kissing_closed_eyes", "label": "๐ Kissing Closed Eyes"},
{"value": "kissing_smiling_eyes", "label": "๐ Kissing Smiling Eyes"},
{"value": "smiling_face_with_tear", "label": "๐ฅฒ Smiling Face with Tear"},
{"value": "yum", "label": "๐ Yum"},
{"value": "stuck_out_tongue", "label": "๐ Stuck Out Tongue"},
{"value": "stuck_out_tongue_winking_eye", "label": "๐ Stuck Out Tongue Winking Eye"},
{"value": "zany_face", "label": "๐คช Zany Face"},
{"value": "stuck_out_tongue_closed_eyes", "label": "๐ Stuck Out Tongue Closed Eyes"},
{"value": "money_mouth_face", "label": "๐ค Money Mouth Face"},
{"value": "hugging_face", "label": "๐ค Hugging Face"},
{"value": "face_with_hand_over_mouth", "label": "๐คญ Face with Hand Over Mouth"},
{"value": "face_with_open_eyes_and_hand_over_mouth",
"label": "๐ซข Face with Open Eyes and Hand Over Mouth"},
{"value": "face_with_peeking_eye", "label": "๐ซฃ Face with Peeking Eye"},
{"value": "shushing_face", "label": "๐คซ Shushing Face"},
{"value": "thinking_face", "label": "๐ค Thinking Face"},
{"value": "saluting_face", "label": "๐ซก Saluting Face"},
{"value": "zipper_mouth_face", "label": "๐ค Zipper Mouth Face"},
{"value": "face_with_raised_eyebrow", "label": "๐คจ Face with Raised Eyebrow"},
{"value": "neutral_face", "label": "๐ Neutral Face"},
{"value": "expressionless", "label": "๐ Expressionless"},
{"value": "no_mouth", "label": "๐ถ No Mouth"},
{"value": "dotted_line_face", "label": "๐ซฅ Dotted Line Face"},
{"value": "face_in_clouds", "label": "๐ถโ๐ซ๏ธ Face in Clouds"},
{"value": "smirk", "label": "๐ Smirk"},
{"value": "unamused", "label": "๐ Unamused"},
{"value": "face_with_rolling_eyes", "label": "๐ Face with Rolling Eyes"},
{"value": "grimacing", "label": "๐ฌ Grimacing"},
{"value": "face_exhaling", "label": "๐ฎโ๐จ Face Exhaling"},
{"value": "lying_face", "label": "๐คฅ Lying Face"},
{"value": "relieved", "label": "๐ Relieved"},
{"value": "pensive", "label": "๐ Pensive"},
{"value": "sleepy", "label": "๐ช Sleepy"},
{"value": "drooling_face", "label": "๐คค Drooling Face"},
{"value": "sleeping", "label": "๐ด Sleeping"},
{"value": "mask", "label": "๐ท Mask"},
{"value": "face_with_thermometer", "label": "๐ค Face with Thermometer"},
{"value": "face_with_head_bandage", "label": "๐ค Face with Head Bandage"},
{"value": "nauseated_face", "label": "๐คข Nauseated Face"},
{"value": "face_vomiting", "label": "๐คฎ Face Vomiting"},
{"value": "sneezing_face", "label": "๐คง Sneezing Face"},
{"value": "hot_face", "label": "๐ฅต Hot Face"},
{"value": "cold_face", "label": "๐ฅถ Cold Face"},
{"value": "woozy_face", "label": "๐ฅด Woozy Face"},
{"value": "dizzy_face", "label": "๐ต Dizzy Face"},
{"value": "face_with_spiral_eyes", "label": "๐ตโ๐ซ Face with Spiral Eyes"},
{"value": "exploding_head", "label": "๐คฏ Exploding Head"},
{"value": "face_with_cowboy_hat", "label": "๐ค Face with Cowboy Hat"},
{"value": "partying_face", "label": "๐ฅณ Partying Face"},
{"value": "disguised_face", "label": "๐ฅธ Disguised Face"},
{"value": "sunglasses", "label": "๐ Sunglasses"},
{"value": "nerd_face", "label": "๐ค Nerd Face"},
{"value": "face_with_monocle", "label": "๐ง Face with Monocle"},
{"value": "confused", "label": "๐ Confused"},
{"value": "face_with_diagonal_mouth", "label": "๐ซค Face with Diagonal Mouth"},
{"value": "worried", "label": "๐ Worried"},
{"value": "slightly_frowning_face", "label": "๐ Slightly Frowning Face"},
{"value": "white_frowning_face", "label": "โน๏ธ White Frowning Face"},
{"value": "open_mouth", "label": "๐ฎ Open Mouth"},
{"value": "hushed", "label": "๐ฏ Hushed"},
{"value": "astonished", "label": "๐ฒ Astonished"},
{"value": "flushed", "label": "๐ณ Flushed"},
{"value": "pleading_face", "label": "๐ฅบ Pleading Face"},
{"value": "face_holding_back_tears", "label": "๐ฅน Face Holding Back Tears"},
{"value": "frowning", "label": "๐ฆ Frowning"},
{"value": "anguished", "label": "๐ง Anguished"},
{"value": "fearful", "label": "๐จ Fearful"},
{"value": "cold_sweat", "label": "๐ฐ Cold Sweat"},
{"value": "disappointed_relieved", "label": "๐ฅ Disappointed Relieved"},
{"value": "cry", "label": "๐ข Cry"},
{"value": "sob", "label": "๐ญ Sob"},
{"value": "scream", "label": "๐ฑ Scream"},
{"value": "confounded", "label": "๐ Confounded"},
{"value": "persevere", "label": "๐ฃ Persevere"},
{"value": "disappointed", "label": "๐ Disappointed"},
{"value": "sweat", "label": "๐ Sweat"},
{"value": "weary", "label": "๐ฉ Weary"},
{"value": "tired_face", "label": "๐ซ Tired Face"},
{"value": "yawning_face", "label": "๐ฅฑ Yawning Face"},
{"value": "triumph", "label": "๐ค Triumph"},
{"value": "rage", "label": "๐ก Rage"},
{"value": "angry", "label": "๐ Angry"},
{"value": "face_with_symbols_on_mouth", "label": "๐คฌ Face with Symbols on Mouth"},
{"value": "smiling_imp", "label": "๐ Smiling Imp"},
{"value": "imp", "label": "๐ฟ Imp"},
{"value": "skull", "label": "๐ Skull"},
{"value": "skull_and_crossbones", "label": "โ ๏ธ Skull and Crossbones"},
{"value": "hankey", "label": "๐ฉ Hankey"},
{"value": "clown_face", "label": "๐คก Clown Face"},
{"value": "japanese_ogre", "label": "๐น Japanese Ogre"},
{"value": "japanese_goblin", "label": "๐บ Japanese Goblin"},
{"value": "ghost", "label": "๐ป Ghost"},
{"value": "alien", "label": "๐ฝ Alien"},
{"value": "space_invader", "label": "๐พ Space Invader"},
{"value": "robot_face", "label": "๐ค Robot Face"},
{"value": "wave", "label": "๐ Wave"},
{"value": "raised_back_of_hand", "label": "๐ค Raised Back of Hand"},
{"value": "raised_hand_with_fingers_splayed", "label": "๐ Raised Hand with Fingers Splayed"},
{"value": "hand", "label": "โ Hand"},
{"value": "spock-hand", "label": "๐ Spock Hand"},
{"value": "rightwards_hand", "label": "๐ซฑ Rightwards Hand"},
{"value": "leftwards_hand", "label": "๐ซฒ Leftwards Hand"},
{"value": "palm_down_hand", "label": "๐ซณ Palm Down Hand"},
{"value": "palm_up_hand", "label": "๐ซด Palm Up Hand"},
{"value": "ok_hand", "label": "๐ Ok Hand"},
{"value": "pinched_fingers", "label": "๐ค Pinched Fingers"},
{"value": "pinching_hand", "label": "๐ค Pinching Hand"},
{"value": "v", "label": "โ๏ธ V"},
{"value": "crossed_fingers", "label": "๐ค Crossed Fingers"},
{"value": "hand_with_index_finger_and_thumb_crossed",
"label": "๐ซฐ Hand with Index Finger and Thumb Crossed"},
{"value": "i_love_you_hand_sign", "label": "๐ค I Love You Hand Sign"},
{"value": "the_horns", "label": "๐ค The Horns"},
{"value": "call_me_hand", "label": "๐ค Call Me Hand"},
{"value": "point_left", "label": "๐ Point Left"},
{"value": "point_right", "label": "๐ Point Right"},
{"value": "point_up_2", "label": "๐ Point Up 2"},
{"value": "middle_finger", "label": "๐ Middle Finger"},
{"value": "point_down", "label": "๐ Point Down"},
{"value": "point_up", "label": "โ๏ธ Point Up"},
{"value": "index_pointing_at_the_viewer", "label": "๐ซต Index Pointing at the Viewer"},
{"value": "+1", "label": "๐ +1"},
{"value": "-1", "label": "๐ -1"},
{"value": "fist", "label": "โ Fist"},
{"value": "facepunch", "label": "๐ Facepunch"},
{"value": "left-facing_fist", "label": "๐ค Left-Facing Fist"},
{"value": "right-facing_fist", "label": "๐ค Right-Facing Fist"},
{"value": "clap", "label": "๐ Clap"},
{"value": "raised_hands", "label": "๐ Raised Hands"},
{"value": "heart_hands", "label": "๐ซถ Heart Hands"},
{"value": "open_hands", "label": "๐ Open Hands"},
{"value": "palms_up_together", "label": "๐คฒ Palms Up Together"},
{"value": "handshake", "label": "๐ค Handshake"},
{"value": "pray", "label": "๐ Pray"},
{"value": "writing_hand", "label": "โ๏ธ Writing Hand"},
{"value": "nail_care", "label": "๐
Nail Care"},
{"value": "selfie", "label": "๐คณ Selfie"},
{"value": "muscle", "label": "๐ช Muscle"},
{"value": "mechanical_arm", "label": "๐ฆพ Mechanical Arm"},
{"value": "mechanical_leg", "label": "๐ฆฟ Mechanical Leg"},
{"value": "leg", "label": "๐ฆต Leg"},
{"value": "foot", "label": "๐ฆถ Foot"},
{"value": "ear", "label": "๐ Ear"},
{"value": "ear_with_hearing_aid", "label": "๐ฆป Ear with Hearing Aid"},
{"value": "nose", "label": "๐ Nose"},
{"value": "brain", "label": "๐ง Brain"},
{"value": "anatomical_heart", "label": "๐ซ Anatomical Heart"},
{"value": "lungs", "label": "๐ซ Lungs"},
{"value": "tooth", "label": "๐ฆท Tooth"},
{"value": "bone", "label": "๐ฆด Bone"},
{"value": "eyes", "label": "๐ Eyes"},
{"value": "eye", "label": "๐ Eye"},
{"value": "tongue", "label": "๐
Tongue"},
{"value": "lips", "label": "๐ Lips"},
{"value": "biting_lip", "label": "๐ซฆ Biting Lip"},
{"value": "baby", "label": "๐ถ Baby"},
{"value": "child", "label": "๐ง Child"},
{"value": "boy", "label": "๐ฆ Boy"},
{"value": "girl", "label": "๐ง Girl"},
{"value": "adult", "label": "๐ง Adult"},
{"value": "person_with_blond_hair", "label": "๐ฑ Person with Blond Hair"},
{"value": "man", "label": "๐จ Man"},
{"value": "bearded_person", "label": "๐ง Bearded Person"},
{"value": "man_with_beard", "label": "๐งโโ๏ธ Man with Beard"},
{"value": "woman_with_beard", "label": "๐งโโ๏ธ Woman with Beard"},
{"value": "red_haired_man", "label": "๐จโ๐ฆฐ Red-Haired Man"},
{"value": "curly_haired_man", "label": "๐จโ๐ฆฑ Curly-Haired Man"},
{"value": "white_haired_man", "label": "๐จโ๐ฆณ White-Haired Man"},
{"value": "bald_man", "label": "๐จโ๐ฆฒ Bald Man"},
{"value": "woman", "label": "๐ฉ Woman"},
{"value": "red_haired_woman", "label": "๐ฉโ๐ฆฐ Red-Haired Woman"},
{"value": "red_haired_person", "label": "๐งโ๐ฆฐ Red-Haired Person"},
{"value": "curly_haired_woman", "label": "๐ฉโ๐ฆฑ Curly-Haired Woman"},
{"value": "curly_haired_person", "label": "๐งโ๐ฆฑ Curly-Haired Person"},
{"value": "white_haired_woman", "label": "๐ฉโ๐ฆณ White-Haired Woman"},
{"value": "white_haired_person", "label": "๐งโ๐ฆณ White-Haired Person"},
{"value": "bald_woman", "label": "๐ฉโ๐ฆฒ Bald Woman"},
{"value": "bald_person", "label": "๐งโ๐ฆฒ Bald Person"},
{"value": "blond-haired-woman", "label": "๐ฑโโ๏ธ Blond-Haired Woman"},
{"value": "blond-haired-man", "label": "๐ฑโโ๏ธ Blond-Haired Man"},
{"value": "older_adult", "label": "๐ง Older Adult"},
{"value": "older_man", "label": "๐ด Older Man"},
{"value": "older_woman", "label": "๐ต Older Woman"},
{"value": "person_frowning", "label": "๐ Person Frowning"},
{"value": "man-frowning", "label": "๐โโ๏ธ Man Frowning"},
{"value": "woman-frowning", "label": "๐โโ๏ธ Woman Frowning"},
{"value": "person_with_pouting_face", "label": "๐ Person with Pouting Face"},
{"value": "man-pouting", "label": "๐โโ๏ธ Man Pouting"},
{"value": "woman-pouting", "label": "๐โโ๏ธ Woman Pouting"},
{"value": "no_good", "label": "๐
No Good"},
{"value": "man-gesturing-no", "label": "๐
โโ๏ธ Man Gesturing No"},
{"value": "woman-gesturing-no", "label": "๐
โโ๏ธ Woman Gesturing No"},
{"value": "ok_woman", "label": "๐ Ok Woman"},
{"value": "man-gesturing-ok", "label": "๐โโ๏ธ Man Gesturing Ok"},
{"value": "woman-gesturing-ok", "label": "๐โโ๏ธ Woman Gesturing Ok"},
{"value": "information_desk_person", "label": "๐ Information Desk Person"},
{"value": "man-tipping-hand", "label": "๐โโ๏ธ Man Tipping Hand"},
{"value": "woman-tipping-hand", "label": "๐โโ๏ธ Woman Tipping Hand"},
{"value": "raising_hand", "label": "๐ Raising Hand"},
{"value": "man-raising-hand", "label": "๐โโ๏ธ Man Raising Hand"},
{"value": "woman-raising-hand", "label": "๐โโ๏ธ Woman Raising Hand"},
{"value": "deaf_person", "label": "๐ง Deaf Person"},
{"value": "deaf_man", "label": "๐งโโ๏ธ Deaf Man"},
{"value": "deaf_woman", "label": "๐งโโ๏ธ Deaf Woman"},
{"value": "bow", "label": "๐ Bow"},
{"value": "man-bowing", "label": "๐โโ๏ธ Man Bowing"},
{"value": "woman-bowing", "label": "๐โโ๏ธ Woman Bowing"},
{"value": "face_palm", "label": "๐คฆ Face Palm"},
{"value": "man-facepalming", "label": "๐คฆโโ๏ธ Man Facepalming"},
{"value": "woman-facepalming", "label": "๐คฆโโ๏ธ Woman Facepalming"},
{"value": "shrug", "label": "๐คท Shrug"},
{"value": "man-shrugging", "label": "๐คทโโ๏ธ Man Shrugging"},
{"value": "woman-shrugging", "label": "๐คทโโ๏ธ Woman Shrugging"},
{"value": "health_worker", "label": "๐งโโ๏ธ Health Worker"},
{"value": "male-doctor", "label": "๐จโโ๏ธ Male Doctor"},
{"value": "female-doctor", "label": "๐ฉโโ๏ธ Female Doctor"},
{"value": "student", "label": "๐งโ๐ Student"},
{"value": "male-student", "label": "๐จโ๐ Male Student"},
{"value": "female-student", "label": "๐ฉโ๐ Female Student"},
{"value": "teacher", "label": "๐งโ๐ซ Teacher"},
{"value": "male-teacher", "label": "๐จโ๐ซ Male Teacher"},
{"value": "female-teacher", "label": "๐ฉโ๐ซ Female Teacher"},
{"value": "judge", "label": "๐งโโ๏ธ Judge"},
{"value": "male-judge", "label": "๐จโโ๏ธ Male Judge"},
{"value": "female-judge", "label": "๐ฉโโ๏ธ Female Judge"},
{"value": "farmer", "label": "๐งโ๐พ Farmer"},
{"value": "male-farmer", "label": "๐จโ๐พ Male Farmer"},
{"value": "female-farmer", "label": "๐ฉโ๐พ Female Farmer"},
{"value": "cook", "label": "๐งโ๐ณ Cook"},
{"value": "male-cook", "label": "๐จโ๐ณ Male Cook"},
{"value": "female-cook", "label": "๐ฉโ๐ณ Female Cook"},
{"value": "mechanic", "label": "๐งโ๐ง Mechanic"},
{"value": "male-mechanic", "label": "๐จโ๐ง Male Mechanic"},
{"value": "female-mechanic", "label": "๐ฉโ๐ง Female Mechanic"},
{"value": "factory_worker", "label": "๐งโ๐ญ Factory Worker"},
{"value": "male-factory-worker", "label": "๐จโ๐ญ Male Factory Worker"},
{"value": "female-factory-worker", "label": "๐ฉโ๐ญ Female Factory Worker"},
{"value": "office_worker", "label": "๐งโ๐ผ Office Worker"},
{"value": "male-office-worker", "label": "๐จโ๐ผ Male Office Worker"},
{"value": "female-office-worker", "label": "๐ฉโ๐ผ Female Office Worker"},
{"value": "scientist", "label": "๐งโ๐ฌ Scientist"},
{"value": "male-scientist", "label": "๐จโ๐ฌ Male Scientist"},
{"value": "female-scientist", "label": "๐ฉโ๐ฌ Female Scientist"},
{"value": "technologist", "label": "๐งโ๐ป Technologist"},
{"value": "male-technologist", "label": "๐จโ๐ป Male Technologist"},
{"value": "female-technologist", "label": "๐ฉโ๐ป Female Technologist"},
{"value": "singer", "label": "๐งโ๐ค Singer"},
{"value": "male-singer", "label": "๐จโ๐ค Male Singer"},
{"value": "female-singer", "label": "๐ฉโ๐ค Female Singer"},
{"value": "artist", "label": "๐งโ๐จ Artist"},
{"value": "male-artist", "label": "๐จโ๐จ Male Artist"},
{"value": "female-artist", "label": "๐ฉโ๐จ Female Artist"},
{"value": "pilot", "label": "๐งโโ๏ธ Pilot"},
{"value": "male-pilot", "label": "๐จโโ๏ธ Male Pilot"},
{"value": "female-pilot", "label": "๐ฉโโ๏ธ Female Pilot"},
{"value": "astronaut", "label": "๐งโ๐ Astronaut"},
{"value": "male-astronaut", "label": "๐จโ๐ Male Astronaut"},
{"value": "female-astronaut", "label": "๐ฉโ๐ Female Astronaut"},
{"value": "firefighter", "label": "๐งโ๐ Firefighter"},
{"value": "male-firefighter", "label": "๐จโ๐ Male Firefighter"},
{"value": "female-firefighter", "label": "๐ฉโ๐ Female Firefighter"},
{"value": "cop", "label": "๐ฎ Cop"},
{"value": "male-police-officer", "label": "๐ฎโโ๏ธ Male Police Officer"},
{"value": "female-police-officer", "label": "๐ฎโโ๏ธ Female Police Officer"},
{"value": "sleuth_or_spy", "label": "๐ต๏ธ Sleuth or Spy"},
{"value": "male-detective", "label": "๐ต๏ธโโ๏ธ Male Detective"},
{"value": "female-detective", "label": "๐ต๏ธโโ๏ธ Female Detective"},
{"value": "guardsman", "label": "๐ Guardsman"},
{"value": "male-guard", "label": "๐โโ๏ธ Male Guard"},
{"value": "female-guard", "label": "๐โโ๏ธ Female Guard"},
{"value": "ninja", "label": "๐ฅท Ninja"},
{"value": "construction_worker", "label": "๐ท Construction Worker"},
{"value": "male-construction-worker", "label": "๐ทโโ๏ธ Male Construction Worker"},
{"value": "female-construction-worker", "label": "๐ทโโ๏ธ Female Construction Worker"},
{"value": "person_with_crown", "label": "๐ซ
Person with Crown"},
{"value": "prince", "label": "๐คด Prince"},
{"value": "princess", "label": "๐ธ Princess"},
{"value": "man_with_turban", "label": "๐ณ Man with Turban"},
{"value": "man-wearing-turban", "label": "๐ณโโ๏ธ Man Wearing Turban"},
{"value": "woman-wearing-turban", "label": "๐ณโโ๏ธ Woman Wearing Turban"},
{"value": "man_with_gua_pi_mao", "label": "๐ฒ Man with Gua Pi Mao"},
{"value": "person_with_headscarf", "label": "๐ง Person with Headscarf"},
{"value": "person_in_tuxedo", "label": "๐คต Person in Tuxedo"},
{"value": "man_in_tuxedo", "label": "๐คตโโ๏ธ Man in Tuxedo"},
{"value": "woman_in_tuxedo", "label": "๐คตโโ๏ธ Woman in Tuxedo"},
{"value": "bride_with_veil", "label": "๐ฐ Bride with Veil"},
{"value": "man_with_veil", "label": "๐ฐโโ๏ธ Man with Veil"},
{"value": "woman_with_veil", "label": "๐ฐโโ๏ธ Woman with Veil"},
{"value": "pregnant_woman", "label": "๐คฐ Pregnant Woman"},
{"value": "pregnant_man", "label": "๐คฐโโ๏ธ Pregnant Man"},
{"value": "pregnant_person", "label": "๐คฐโโ๏ธ Pregnant Person"},
{"value": "breast-feeding", "label": "๐คฑ Breast-Feeding"},
{"value": "woman_feeding_baby", "label": "๐ฉโ๐ผ Woman Feeding Baby"},
{"value": "man_feeding_baby", "label": "๐จโ๐ผ Man Feeding Baby"},
{"value": "person_feeding_baby", "label": "๐งโ๐ผ Person Feeding Baby"},
{"value": "angel", "label": "๐ผ Angel"},
{"value": "santa", "label": "๐
Santa"},
{"value": "mrs_claus", "label": "๐คถ Mrs. Claus"},
{"value": "mx_claus", "label": "๐งโ๐ Mx Claus"},
{"value": "superhero", "label": "๐ฆธ Superhero"},
{"value": "male_superhero", "label": "๐ฆธโโ๏ธ Male Superhero"},
{"value": "female_superhero", "label": "๐ฆธโโ๏ธ Female Superhero"},
{"value": "supervillain", "label": "๐ฆน Supervillain"},
{"value": "male_supervillain", "label": "๐ฆนโโ๏ธ Male Supervillain"},
{"value": "female_supervillain", "label": "๐ฆนโโ๏ธ Female Supervillain"},
{"value": "mage", "label": "๐ง Mage"},
{"value": "male_mage", "label": "๐งโโ๏ธ Male Mage"},
{"value": "female_mage", "label": "๐งโโ๏ธ Female Mage"},
{"value": "fairy", "label": "๐ง Fairy"},
{"value": "male_fairy", "label": "๐งโโ๏ธ Male Fairy"},
{"value": "female_fairy", "label": "๐งโโ๏ธ Female Fairy"},
{"value": "vampire", "label": "๐ง Vampire"},
{"value": "male_vampire", "label": "๐งโโ๏ธ Male Vampire"},
{"value": "female_vampire", "label": "๐งโโ๏ธ Female Vampire"},
{"value": "merperson", "label": "๐ง Merperson"},
{"value": "merman", "label": "๐งโโ๏ธ Merman"},
{"value": "mermaid", "label": "๐งโโ๏ธ Mermaid"},
{"value": "elf", "label": "๐ง Elf"},
{"value": "male_elf", "label": "๐งโโ๏ธ Male Elf"},
{"value": "female_elf", "label": "๐งโโ๏ธ Female Elf"},
{"value": "genie", "label": "๐ง Genie"},
{"value": "male_genie", "label": "๐งโโ๏ธ Male Genie"},
{"value": "female_genie", "label": "๐งโโ๏ธ Female Genie"},
{"value": "zombie", "label": "๐ง Zombie"},
{"value": "male_zombie", "label": "๐งโโ๏ธ Male Zombie"},
{"value": "female_zombie", "label": "๐งโโ๏ธ Female Zombie"},
{"value": "troll", "label": "๐ง Troll"},
{"value": "massage", "label": "๐ Massage"},
{"value": "man-getting-massage", "label": "๐โโ๏ธ Man Getting Massage"},
{"value": "woman-getting-massage", "label": "๐โโ๏ธ Woman Getting Massage"},
{"value": "haircut", "label": "๐ Haircut"},
{"value": "man-getting-haircut", "label": "๐โโ๏ธ Man Getting Haircut"},
{"value": "woman-getting-haircut", "label": "๐โโ๏ธ Woman Getting Haircut"},
{"value": "walking", "label": "๐ถ Walking"},
{"value": "man-walking", "label": "๐ถโโ๏ธ Man Walking"},
{"value": "woman-walking", "label": "๐ถโโ๏ธ Woman Walking"},
{"value": "standing_person", "label": "๐ง Standing Person"},
{"value": "man_standing", "label": "๐งโโ๏ธ Man Standing"},
{"value": "woman_standing", "label": "๐งโโ๏ธ Woman Standing"},
{"value": "kneeling_person", "label": "๐ง Kneeling Person"},
{"value": "man_kneeling", "label": "๐งโโ๏ธ Man Kneeling"},
{"value": "woman_kneeling", "label": "๐งโโ๏ธ Woman Kneeling"},
{"value": "person_with_probing_cane", "label": "๐งโ๐ฆฏ Person with Probing Cane"},
{"value": "man_with_probing_cane", "label": "๐จโ๐ฆฏ Man with Probing Cane"},
{"value": "woman_with_probing_cane", "label": "๐ฉโ๐ฆฏ Woman with Probing Cane"},
{"value": "person_in_motorized_wheelchair", "label": "๐งโ๐ฆผ Person in Motorized Wheelchair"},
{"value": "man_in_motorized_wheelchair", "label": "๐จโ๐ฆผ Man in Motorized Wheelchair"},
{"value": "woman_in_motorized_wheelchair", "label": "๐ฉโ๐ฆผ Woman in Motorized Wheelchair"},
{"value": "person_in_manual_wheelchair", "label": "๐งโ๐ฆฝ Person in Manual Wheelchair"},
{"value": "man_in_manual_wheelchair", "label": "๐จโ๐ฆฝ Man in Manual Wheelchair"},
{"value": "woman_in_manual_wheelchair", "label": "๐ฉโ๐ฆฝ Woman in Manual Wheelchair"},
{"value": "runner", "label": "๐ Runner"},
{"value": "man-running", "label": "๐โโ๏ธ Man Running"},
{"value": "woman-running", "label": "๐โโ๏ธ Woman Running"},
{"value": "dancer", "label": "๐ Dancer"},
{"value": "man_dancing", "label": "๐บ Man Dancing"},
{"value": "man_in_business_suit_levitating", "label": "๐ด Man in Business Suit Levitating"},
{"value": "dancers", "label": "๐ฏ Dancers"},
{"value": "men-with-bunny-ears-partying", "label": "๐ฏโโ๏ธ Men with Bunny Ears Partying"},
{"value": "women-with-bunny-ears-partying", "label": "๐ฏโโ๏ธ Women with Bunny Ears Partying"},
{"value": "person_in_steamy_room", "label": "๐ง Person in Steamy Room"},
{"value": "man_in_steamy_room", "label": "๐งโโ๏ธ Man in Steamy Room"},
{"value": "woman_in_steamy_room", "label": "๐งโโ๏ธ Woman in Steamy Room"},
{"value": "person_climbing", "label": "๐ง Person Climbing"},
{"value": "man_climbing", "label": "๐งโโ๏ธ Man Climbing"},
{"value": "woman_climbing", "label": "๐งโโ๏ธ Woman Climbing"},
{"value": "fencer", "label": "๐คบ Fencer"},
{"value": "horse_racing", "label": "๐ Horse Racing"},
{"value": "skier", "label": "โท Skier"},
{"value": "snowboarder", "label": "๐ Snowboarder"},
{"value": "golfer", "label": "๐๏ธ Golfer"},
{"value": "man-golfing", "label": "๐๏ธโโ๏ธ Man Golfing"},
{"value": "woman-golfing", "label": "๐๏ธโโ๏ธ Woman Golfing"},
{"value": "surfer", "label": "๐ Surfer"},
{"value": "man-surfing", "label": "๐โโ๏ธ Man Surfing"},
{"value": "woman-surfing", "label": "๐โโ๏ธ Woman Surfing"},
{"value": "rowboat", "label": "๐ฃ Rowboat"},
{"value": "man-rowing-boat", "label": "๐ฃโโ๏ธ Man Rowing Boat"},
{"value": "woman-rowing-boat", "label": "๐ฃโโ๏ธ Woman Rowing Boat"},
{"value": "swimmer", "label": "๐ Swimmer"},
{"value": "man-swimming", "label": "๐โโ๏ธ Man Swimming"},
{"value": "woman-swimming", "label": "๐โโ๏ธ Woman Swimming"},
{"value": "person_with_ball", "label": "โน๏ธ Person with Ball"},
{"value": "man-bouncing-ball", "label": "โน๏ธโโ๏ธ Man Bouncing Ball"},
{"value": "woman-bouncing-ball", "label": "โน๏ธโโ๏ธ Woman Bouncing Ball"},
{"value": "weight_lifter", "label": "๐๏ธ Weight Lifter"},
{"value": "man-lifting-weights", "label": "๐๏ธโโ๏ธ Man Lifting Weights"},
{"value": "woman-lifting-weights", "label": "๐๏ธโโ๏ธ Woman Lifting Weights"},
{"value": "bicyclist", "label": "๐ด Bicyclist"},
{"value": "man-biking", "label": "๐ดโโ๏ธ Man Biking"},
{"value": "woman-biking", "label": "๐ดโโ๏ธ Woman Biking"},
{"value": "mountain_bicyclist", "label": "๐ต Mountain Bicyclist"},
{"value": "man-mountain-biking", "label": "๐ตโโ๏ธ Man Mountain Biking"},
{"value": "woman-mountain-biking", "label": "๐ตโโ๏ธ Woman Mountain Biking"},
{"value": "person_doing_cartwheel", "label": "๐คธ Person Doing Cartwheel"},
{"value": "man-cartwheeling", "label": "๐คธโโ๏ธ Man Cartwheeling"},
{"value": "woman-cartwheeling", "label": "๐คธโโ๏ธ Woman Cartwheeling"},
{"value": "wrestlers", "label": "๐คผ Wrestlers"},
{"value": "man-wrestling", "label": "๐คผโโ๏ธ Man Wrestling"},
{"value": "woman-wrestling", "label": "๐คผโโ๏ธ Woman Wrestling"},
{"value": "water_polo", "label": "๐คฝ Water Polo"},
{"value": "man-playing-water-polo", "label": "๐คฝโโ๏ธ Man Playing Water Polo"},
{"value": "woman-playing-water-polo", "label": "๐คฝโโ๏ธ Woman Playing Water Polo"},
{"value": "handball", "label": "๐คพ Handball"},
{"value": "man-playing-handball", "label": "๐คพโโ๏ธ Man Playing Handball"},
{"value": "woman-playing-handball", "label": "๐คพโโ๏ธ Woman Playing Handball"},
{"value": "juggling", "label": "๐คน Juggling"},
{"value": "man-juggling", "label": "๐คนโโ๏ธ Man Juggling"},
{"value": "woman-juggling", "label": "๐คนโโ๏ธ Woman Juggling"},
{"value": "person_in_lotus_position", "label": "๐ง Person in Lotus Position"},
{"value": "man_in_lotus_position", "label": "๐งโโ๏ธ Man in Lotus Position"},
{"value": "woman_in_lotus_position", "label": "๐งโโ๏ธ Woman in Lotus Position"},
{"value": "bath", "label": "๐ Bath"},
{"value": "sleeping_accommodation", "label": "๐ Sleeping Accommodation"},
{"value": "people_holding_hands", "label": "๐งโ๐คโ๐ง People Holding Hands"},
{"value": "two_women_holding_hands", "label": "๐ญ Two Women Holding Hands"},
{"value": "man_and_woman_holding_hands", "label": "๐ซ Man and Woman Holding Hands"},
{"value": "two_men_holding_hands", "label": "๐ฌ Two Men Holding Hands"},
{"value": "couplekiss", "label": "๐ Couple Kiss"},
{"value": "woman-kiss-man", "label": "๐ฉโโค๏ธโ๐โ๐จ Woman Kiss Man"},
{"value": "man-kiss-man", "label": "๐จโโค๏ธโ๐โ๐จ Man Kiss Man"},
{"value": "woman-kiss-woman", "label": "๐ฉโโค๏ธโ๐โ๐ฉ Woman Kiss Woman"},
{"value": "couple_with_heart", "label": "๐ Couple with Heart"},
{"value": "woman-heart-man", "label": "๐ฉโโค๏ธโ๐จ Woman Heart Man"},
{"value": "man-heart-man", "label": "๐จโโค๏ธโ๐จ Man Heart Man"},
{"value": "woman-heart-woman", "label": "๐ฉโโค๏ธโ๐ฉ Woman Heart Woman"},
{"value": "family", "label": "๐ช Family"},
{"value": "man-woman-boy", "label": "๐จโ๐ฉโ๐ฆ Man Woman Boy"},
{"value": "man-woman-girl", "label": "๐จโ๐ฉโ๐ง Man Woman Girl"},
{"value": "man-woman-girl-boy", "label": "๐จโ๐ฉโ๐งโ๐ฆ Man Woman Girl Boy"},
{"value": "man-woman-boy-boy", "label": "๐จโ๐ฉโ๐ฆโ๐ฆ Man Woman Boy Boy"},
{"value": "man-woman-girl-girl", "label": "๐จโ๐ฉโ๐งโ๐ง Man Woman Girl Girl"},
{"value": "man-man-boy", "label": "๐จโ๐จโ๐ฆ Man Man Boy"},
{"value": "man-man-girl", "label": "๐จโ๐จโ๐ง Man Man Girl"},
{"value": "man-man-girl-boy", "label": "๐จโ๐จโ๐งโ๐ฆ Man Man Girl Boy"},
{"value": "man-man-boy-boy", "label": "๐จโ๐จโ๐ฆโ๐ฆ Man Man Boy Boy"},
{"value": "man-man-girl-girl", "label": "๐จโ๐จโ๐งโ๐ง Man Man Girl Girl"},
{"value": "woman-woman-boy", "label": "๐ฉโ๐ฉโ๐ฆ Woman Woman Boy"},
{"value": "woman-woman-girl", "label": "๐ฉโ๐ฉโ๐ง Woman Woman Girl"},
{"value": "woman-woman-girl-boy", "label": "๐ฉโ๐ฉโ๐งโ๐ฆ Woman Woman Girl Boy"},
{"value": "woman-woman-boy-boy", "label": "๐ฉโ๐ฉโ๐ฆโ๐ฆ Woman Woman Boy Boy"},
{"value": "woman-woman-girl-girl", "label": "๐ฉโ๐ฉโ๐งโ๐ง Woman Woman Girl Girl"},
{"value": "man-boy", "label": "๐จโ๐ฆ Man Boy"},
{"value": "man-boy-boy", "label": "๐จโ๐ฆโ๐ฆ Man Boy Boy"},
{"value": "man-girl", "label": "๐จโ๐ง Man Girl"},
{"value": "man-girl-boy", "label": "๐จโ๐งโ๐ฆ Man Girl Boy"},
{"value": "man-girl-girl", "label": "๐จโ๐งโ๐ง Man Girl Girl"},
{"value": "woman-boy", "label": "๐ฉโ๐ฆ Woman Boy"},
{"value": "woman-boy-boy", "label": "๐ฉโ๐ฆโ๐ฆ Woman Boy Boy"},
{"value": "woman-girl", "label": "๐ฉโ๐ง Woman Girl"},
{"value": "woman-girl-boy", "label": "๐ฉโ๐งโ๐ฆ Woman Girl Boy"},
{"value": "woman-girl-girl", "label": "๐ฉโ๐งโ๐ง Woman Girl Girl"},
{"value": "speaking_head_in_silhouette", "label": "๐ฃ Speaking Head in Silhouette"},
{"value": "bust_in_silhouette", "label": "๐ค Bust in Silhouette"},
{"value": "busts_in_silhouette", "label": "๐ฅ Busts in Silhouette"},
{"value": "people_hugging", "label": "๐ซ People Hugging"},
{"value": "footprints", "label": "๐ฃ Footprints"},
{"value": "smiley_cat", "label": "๐บ Smiley Cat"},
{"value": "smile_cat", "label": "๐ธ Smile Cat"},
{"value": "joy_cat", "label": "๐น Joy Cat"},
{"value": "heart_eyes_cat", "label": "๐ป Heart Eyes Cat"},
{"value": "smirk_cat", "label": "๐ผ Smirk Cat"},
{"value": "kissing_cat", "label": "๐ฝ Kissing Cat"},
{"value": "scream_cat", "label": "๐ Scream Cat"},
{"value": "crying_cat_face", "label": "๐ฟ Crying Cat Face"},
{"value": "pouting_cat", "label": "๐พ Pouting Cat"},
{"value": "see_no_evil", "label": "๐ See No Evil"},
{"value": "hear_no_evil", "label": "๐ Hear No Evil"},
{"value": "speak_no_evil", "label": "๐ Speak No Evil"},
{"value": "love_letter", "label": "๐ Love Letter"},
{"value": "cupid", "label": "๐ Cupid"},
{"value": "gift_heart", "label": "๐ Gift Heart"},
{"value": "sparkling_heart", "label": "๐ Sparkling Heart"},
{"value": "heartpulse", "label": "๐ Heartpulse"},
{"value": "heartbeat", "label": "๐ Heartbeat"},
{"value": "revolving_hearts", "label": "๐ Revolving Hearts"},
{"value": "two_hearts", "label": "๐ Two Hearts"},
{"value": "heart_decoration", "label": "๐ Heart Decoration"},
{"value": "heavy_heart_exclamation_mark_ornament",
"label": "โฃ๏ธ Heavy Heart Exclamation Mark Ornament"},
{"value": "broken_heart", "label": "๐ Broken Heart"},
{"value": "heart_on_fire", "label": "โค๏ธโ๐ฅ Heart on Fire"},
{"value": "mending_heart", "label": "โค๏ธโ๐ฉน Mending Heart"},
{"value": "heart", "label": "โค๏ธ Heart"},
{"value": "orange_heart", "label": "๐งก Orange Heart"},
{"value": "yellow_heart", "label": "๐ Yellow Heart"},
{"value": "green_heart", "label": "๐ Green Heart"},
{"value": "blue_heart", "label": "๐ Blue Heart"},
{"value": "purple_heart", "label": "๐ Purple Heart"},
{"value": "brown_heart", "label": "๐ค Brown Heart"},
{"value": "black_heart", "label": "๐ค Black Heart"},
{"value": "white_heart", "label": "๐ค White Heart"},
{"value": "kiss", "label": "๐ Kiss"},
{"value": "100", "label": "๐ฏ 100"},
{"value": "anger", "label": "๐ข Anger"},
{"value": "boom", "label": "๐ฅ Boom"},
{"value": "dizzy", "label": "๐ซ Dizzy"},
{"value": "sweat_drops", "label": "๐ฆ Sweat Drops"},
{"value": "dash", "label": "๐จ Dash"},
{"value": "hole", "label": "๐ณ Hole"},
{"value": "speech_balloon", "label": "๐ฌ Speech Balloon"},
{"value": "eye-in-speech-bubble", "label": "๐๏ธโ๐จ๏ธ Eye in Speech Bubble"},
{"value": "left_speech_bubble", "label": "๐จ Left Speech Bubble"},
{"value": "right_anger_bubble", "label": "๐ฏ Right Anger Bubble"},
{"value": "thought_balloon", "label": "๐ญ Thought Balloon"},
{"value": "zzz", "label": "๐ค ZZZ"},
],
},
{
"group": "nature",
"items": [
{"value": "monkey_face", "label": "๐ต Monkey Face"},
{"value": "monkey", "label": "๐ Monkey"},
{"value": "gorilla", "label": "๐ฆ Gorilla"},
{"value": "orangutan", "label": "๐ฆง Orangutan"},
{"value": "dog", "label": "๐ถ Dog"},
{"value": "dog2", "label": "๐ Dog 2"},
{"value": "guide_dog", "label": "๐ฆฎ Guide Dog"},
{"value": "service_dog", "label": "๐โ๐ฆบ Service Dog"},
{"value": "poodle", "label": "๐ฉ Poodle"},
{"value": "wolf", "label": "๐บ Wolf"},
{"value": "fox_face", "label": "๐ฆ Fox Face"},
{"value": "raccoon", "label": "๐ฆ Raccoon"},
{"value": "cat", "label": "๐ฑ Cat"},
{"value": "cat2", "label": "๐ Cat 2"},
{"value": "black_cat", "label": "๐โโฌ Black Cat"},
{"value": "lion_face", "label": "๐ฆ Lion Face"},
{"value": "tiger", "label": "๐ฏ Tiger"},
{"value": "tiger2", "label": "๐
Tiger 2"},
{"value": "leopard", "label": "๐ Leopard"},
{"value": "horse", "label": "๐ด Horse"},
{"value": "racehorse", "label": "๐ Racehorse"},
{"value": "unicorn_face", "label": "๐ฆ Unicorn Face"},
{"value": "zebra_face", "label": "๐ฆ Zebra Face"},
{"value": "deer", "label": "๐ฆ Deer"},
{"value": "bison", "label": "๐ฆฌ Bison"},
{"value": "cow", "label": "๐ฎ Cow"},
{"value": "ox", "label": "๐ Ox"},
{"value": "water_buffalo", "label": "๐ Water Buffalo"},
{"value": "cow2", "label": "๐ Cow 2"},
{"value": "pig", "label": "๐ท Pig"},
{"value": "pig2", "label": "๐ Pig 2"},
{"value": "boar", "label": "๐ Boar"},
{"value": "pig_nose", "label": "๐ฝ Pig Nose"},
{"value": "ram", "label": "๐ Ram"},
{"value": "sheep", "label": "๐ Sheep"},
{"value": "goat", "label": "๐ Goat"},
{"value": "dromedary_camel", "label": "๐ช Dromedary Camel"},
{"value": "camel", "label": "๐ซ Camel"},
{"value": "llama", "label": "๐ฆ Llama"},
{"value": "giraffe_face", "label": "๐ฆ Giraffe Face"},
{"value": "elephant", "label": "๐ Elephant"},
{"value": "mammoth", "label": "๐ฆฃ Mammoth"},
{"value": "rhinoceros", "label": "๐ฆ Rhinoceros"},
{"value": "hippopotamus", "label": "๐ฆ Hippopotamus"},
{"value": "mouse", "label": "๐ญ Mouse"},
{"value": "mouse2", "label": "๐ Mouse 2"},
{"value": "rat", "label": "๐ Rat"},
{"value": "hamster", "label": "๐น Hamster"},
{"value": "rabbit", "label": "๐ฐ Rabbit"},
{"value": "rabbit2", "label": "๐ Rabbit 2"},
{"value": "chipmunk", "label": "๐ฟ Chipmunk"},
{"value": "beaver", "label": "๐ฆซ Beaver"},
{"value": "hedgehog", "label": "๐ฆ Hedgehog"},
{"value": "bat", "label": "๐ฆ Bat"},
{"value": "bear", "label": "๐ป Bear"},
{"value": "polar_bear", "label": "๐ปโโ๏ธ Polar Bear"},
{"value": "koala", "label": "๐จ Koala"},
{"value": "panda_face", "label": "๐ผ Panda Face"},
{"value": "sloth", "label": "๐ฆฅ Sloth"},
{"value": "otter", "label": "๐ฆฆ Otter"},
{"value": "skunk", "label": "๐ฆจ Skunk"},
{"value": "kangaroo", "label": "๐ฆ Kangaroo"},
{"value": "badger", "label": "๐ฆก Badger"},
{"value": "feet", "label": "๐พ Feet"},
{"value": "turkey", "label": "๐ฆ Turkey"},
{"value": "chicken", "label": "๐ Chicken"},
{"value": "rooster", "label": "๐ Rooster"},
{"value": "hatching_chick", "label": "๐ฃ Hatching Chick"},
{"value": "baby_chick", "label": "๐ค Baby Chick"},
{"value": "hatched_chick", "label": "๐ฅ Hatched Chick"},
{"value": "bird", "label": "๐ฆ Bird"},
{"value": "penguin", "label": "๐ง Penguin"},
{"value": "dove_of_peace", "label": "๐ Dove of Peace"},
{"value": "eagle", "label": "๐ฆ
Eagle"},
{"value": "duck", "label": "๐ฆ Duck"},
{"value": "swan", "label": "๐ฆข Swan"},
{"value": "owl", "label": "๐ฆ Owl"},
{"value": "dodo", "label": "๐ฆค Dodo"},
{"value": "feather", "label": "๐ชถ Feather"},
{"value": "flamingo", "label": "๐ฆฉ Flamingo"},
{"value": "peacock", "label": "๐ฆ Peacock"},
{"value": "parrot", "label": "๐ฆ Parrot"},
{"value": "frog", "label": "๐ธ Frog"},
{"value": "crocodile", "label": "๐ Crocodile"},
{"value": "turtle", "label": "๐ข Turtle"},
{"value": "lizard", "label": "๐ฆ Lizard"},
{"value": "snake", "label": "๐ Snake"},
{"value": "dragon_face", "label": "๐ฒ Dragon Face"},
{"value": "dragon", "label": "๐ Dragon"},
{"value": "sauropod", "label": "๐ฆ Sauropod"},
{"value": "t-rex", "label": "๐ฆ T-Rex"},
{"value": "whale", "label": "๐ Whale"},
{"value": "whale2", "label": "๐ Whale 2"},
{"value": "dolphin", "label": "๐ฌ Dolphin"},
{"value": "seal", "label": "๐ฆญ Seal"},
{"value": "fish", "label": "๐ Fish"},
{"value": "tropical_fish", "label": "๐ Tropical Fish"},
{"value": "blowfish", "label": "๐ก Blowfish"},
{"value": "shark", "label": "๐ฆ Shark"},
{"value": "octopus", "label": "๐ Octopus"},
{"value": "shell", "label": "๐ Shell"},
{"value": "coral", "label": "๐ชธ Coral"},
{"value": "snail", "label": "๐ Snail"},
{"value": "butterfly", "label": "๐ฆ Butterfly"},
{"value": "bug", "label": "๐ Bug"},
{"value": "ant", "label": "๐ Ant"},
{"value": "bee", "label": "๐ Bee"},
{"value": "beetle", "label": "๐ Beetle"},
{"value": "ladybug", "label": "๐ Ladybug"},
{"value": "cricket", "label": "๐ฆ Cricket"},
{"value": "cockroach", "label": "๐ชณ Cockroach"},
{"value": "spider", "label": "๐ท Spider"},
{"value": "spider_web", "label": "๐ธ Spider Web"},
{"value": "scorpion", "label": "๐ฆ Scorpion"},
{"value": "mosquito", "label": "๐ฆ Mosquito"},
{"value": "fly", "label": "๐ชฐ Fly"},
{"value": "worm", "label": "๐ชฑ Worm"},
{"value": "microbe", "label": "๐ฆ Microbe"},
{"value": "bouquet", "label": "๐ Bouquet"},
{"value": "cherry_blossom", "label": "๐ธ Cherry Blossom"},
{"value": "white_flower", "label": "๐ฎ White Flower"},
{"value": "lotus", "label": "๐ชท Lotus"},
{"value": "rosette", "label": "๐ต Rosette"},
{"value": "rose", "label": "๐น Rose"},
{"value": "wilted_flower", "label": "๐ฅ Wilted Flower"},
{"value": "hibiscus", "label": "๐บ Hibiscus"},
{"value": "sunflower", "label": "๐ป Sunflower"},
{"value": "blossom", "label": "๐ผ Blossom"},
{"value": "tulip", "label": "๐ท Tulip"},
{"value": "seedling", "label": "๐ฑ Seedling"},
{"value": "potted_plant", "label": "๐ชด Potted Plant"},
{"value": "evergreen_tree", "label": "๐ฒ Evergreen Tree"},
{"value": "deciduous_tree", "label": "๐ณ Deciduous Tree"},
{"value": "palm_tree", "label": "๐ด Palm Tree"},
{"value": "cactus", "label": "๐ต Cactus"},
{"value": "ear_of_rice", "label": "๐พ Ear of Rice"},
{"value": "herb", "label": "๐ฟ Herb"},
{"value": "shamrock", "label": "โ๏ธ Shamrock"},
{"value": "four_leaf_clover", "label": "๐ Four Leaf Clover"},
{"value": "maple_leaf", "label": "๐ Maple Leaf"},
{"value": "fallen_leaf", "label": "๐ Fallen Leaf"},
{"value": "leaves", "label": "๐ Leaves"},
{"value": "empty_nest", "label": "๐ชน Empty Nest"},
{"value": "nest_with_eggs", "label": "๐ชบ Nest with Eggs"},
{"value": "mushroom", "label": "๐ Mushroom"},
],
},
{
"group": "food",
"items": [
{"value": "grapes", "label": "๐ Grapes"},
{"value": "melon", "label": "๐ Melon"},
{"value": "watermelon", "label": "๐ Watermelon"},
{"value": "tangerine", "label": "๐ Tangerine"},
{"value": "lemon", "label": "๐ Lemon"},
{"value": "banana", "label": "๐ Banana"},
{"value": "pineapple", "label": "๐ Pineapple"},
{"value": "mango", "label": "๐ฅญ Mango"},
{"value": "apple", "label": "๐ Apple"},
{"value": "green_apple", "label": "๐ Green Apple"},
{"value": "pear", "label": "๐ Pear"},
{"value": "peach", "label": "๐ Peach"},
{"value": "cherries", "label": "๐ Cherries"},
{"value": "strawberry", "label": "๐ Strawberry"},
{"value": "blueberries", "label": "๐ซ Blueberries"},
{"value": "kiwifruit", "label": "๐ฅ Kiwifruit"},
{"value": "tomato", "label": "๐
Tomato"},
{"value": "olive", "label": "๐ซ Olive"},
{"value": "coconut", "label": "๐ฅฅ Coconut"},
{"value": "avocado", "label": "๐ฅ Avocado"},
{"value": "eggplant", "label": "๐ Eggplant"},
{"value": "potato", "label": "๐ฅ Potato"},
{"value": "carrot", "label": "๐ฅ Carrot"},
{"value": "corn", "label": "๐ฝ Corn"},
{"value": "hot_pepper", "label": "๐ถ Hot Pepper"},
{"value": "bell_pepper", "label": "๐ซ Bell Pepper"},
{"value": "cucumber", "label": "๐ฅ Cucumber"},
{"value": "leafy_green", "label": "๐ฅฌ Leafy Green"},
{"value": "broccoli", "label": "๐ฅฆ Broccoli"},
{"value": "garlic", "label": "๐ง Garlic"},
{"value": "onion", "label": "๐ง
Onion"},
{"value": "peanuts", "label": "๐ฅ Peanuts"},
{"value": "beans", "label": "๐ซ Beans"},
{"value": "chestnut", "label": "๐ฐ Chestnut"},
{"value": "bread", "label": "๐ Bread"},
{"value": "croissant", "label": "๐ฅ Croissant"},
{"value": "baguette_bread", "label": "๐ฅ Baguette Bread"},
{"value": "flatbread", "label": "๐ซ Flatbread"},
{"value": "pretzel", "label": "๐ฅจ Pretzel"},
{"value": "bagel", "label": "๐ฅฏ Bagel"},
{"value": "pancakes", "label": "๐ฅ Pancakes"},
{"value": "waffle", "label": "๐ง Waffle"},
{"value": "cheese_wedge", "label": "๐ง Cheese Wedge"},
{"value": "meat_on_bone", "label": "๐ Meat on Bone"},
{"value": "poultry_leg", "label": "๐ Poultry Leg"},
{"value": "cut_of_meat", "label": "๐ฅฉ Cut of Meat"},
{"value": "bacon", "label": "๐ฅ Bacon"},
{"value": "hamburger", "label": "๐ Hamburger"},
{"value": "fries", "label": "๐ Fries"},
{"value": "pizza", "label": "๐ Pizza"},
{"value": "hotdog", "label": "๐ญ Hotdog"},
{"value": "sandwich", "label": "๐ฅช Sandwich"},
{"value": "taco", "label": "๐ฎ Taco"},
{"value": "burrito", "label": "๐ฏ Burrito"},
{"value": "tamale", "label": "๐ซ Tamale"},
{"value": "stuffed_flatbread", "label": "๐ฅ Stuffed Flatbread"},
{"value": "falafel", "label": "๐ง Falafel"},
{"value": "egg", "label": "๐ฅ Egg"},
{"value": "fried_egg", "label": "๐ณ Fried Egg"},
{"value": "shallow_pan_of_food", "label": "๐ฅ Shallow Pan of Food"},
{"value": "stew", "label": "๐ฒ Stew"},
{"value": "fondue", "label": "๐ซ Fondue"},
{"value": "bowl_with_spoon", "label": "๐ฅฃ Bowl with Spoon"},
{"value": "green_salad", "label": "๐ฅ Green Salad"},
{"value": "popcorn", "label": "๐ฟ Popcorn"},
{"value": "butter", "label": "๐ง Butter"},
{"value": "salt", "label": "๐ง Salt"},
{"value": "canned_food", "label": "๐ฅซ Canned Food"},
{"value": "bento", "label": "๐ฑ Bento"},
{"value": "rice_cracker", "label": "๐ Rice Cracker"},
{"value": "rice_ball", "label": "๐ Rice Ball"},
{"value": "rice", "label": "๐ Rice"},
{"value": "curry", "label": "๐ Curry"},
{"value": "ramen", "label": "๐ Ramen"},
{"value": "spaghetti", "label": "๐ Spaghetti"},
{"value": "sweet_potato", "label": "๐ Sweet Potato"},
{"value": "oden", "label": "๐ข Oden"},
{"value": "sushi", "label": "๐ฃ Sushi"},
{"value": "fried_shrimp", "label": "๐ค Fried Shrimp"},
{"value": "fish_cake", "label": "๐ฅ Fish Cake"},
{"value": "moon_cake", "label": "๐ฅฎ Moon Cake"},
{"value": "dango", "label": "๐ก Dango"},
{"value": "dumpling", "label": "๐ฅ Dumpling"},
{"value": "fortune_cookie", "label": "๐ฅ Fortune Cookie"},
{"value": "takeout_box", "label": "๐ฅก Takeout Box"},
{"value": "crab", "label": "๐ฆ Crab"},
{"value": "lobster", "label": "๐ฆ Lobster"},
{"value": "shrimp", "label": "๐ฆ Shrimp"},
{"value": "squid", "label": "๐ฆ Squid"},
{"value": "oyster", "label": "๐ฆช Oyster"},
{"value": "icecream", "label": "๐ฆ Ice Cream"},
{"value": "shaved_ice", "label": "๐ง Shaved Ice"},
{"value": "ice_cream", "label": "๐จ Ice Cream"},
{"value": "doughnut", "label": "๐ฉ Doughnut"},
{"value": "cookie", "label": "๐ช Cookie"},
{"value": "birthday", "label": "๐ Birthday"},
{"value": "cake", "label": "๐ฐ Cake"},
{"value": "cupcake", "label": "๐ง Cupcake"},
{"value": "pie", "label": "๐ฅง Pie"},
{"value": "chocolate_bar", "label": "๐ซ Chocolate Bar"},
{"value": "candy", "label": "๐ฌ Candy"},
{"value": "lollipop", "label": "๐ญ Lollipop"},
{"value": "custard", "label": "๐ฎ Custard"},
{"value": "honey_pot", "label": "๐ฏ Honey Pot"},
{"value": "baby_bottle", "label": "๐ผ Baby Bottle"},
{"value": "glass_of_milk", "label": "๐ฅ Glass of Milk"},
{"value": "coffee", "label": "โ Coffee"},
{"value": "teapot", "label": "๐ซ Teapot"},
{"value": "tea", "label": "๐ต Tea"},
{"value": "sake", "label": "๐ถ Sake"},
{"value": "champagne", "label": "๐พ Champagne"},
{"value": "wine_glass", "label": "๐ท Wine Glass"},
{"value": "cocktail", "label": "๐ธ Cocktail"},
{"value": "tropical_drink", "label": "๐น Tropical Drink"},
{"value": "beer", "label": "๐บ Beer"},
{"value": "beers", "label": "๐ป Beers"},
{"value": "clinking_glasses", "label": "๐ฅ Clinking Glasses"},
{"value": "tumbler_glass", "label": "๐ฅ Tumbler Glass"},
{"value": "pouring_liquid", "label": "๐ซ Pouring Liquid"},
{"value": "cup_with_straw", "label": "๐ฅค Cup with Straw"},
{"value": "bubble_tea", "label": "๐ง Bubble Tea"},
{"value": "beverage_box", "label": "๐ง Beverage Box"},
{"value": "mate_drink", "label": "๐ง Mate Drink"},
{"value": "ice_cube", "label": "๐ง Ice Cube"},
{"value": "chopsticks", "label": "๐ฅข Chopsticks"},
{"value": "knife_fork_plate", "label": "๐ฝ Knife Fork Plate"},
{"value": "fork_and_knife", "label": "๐ด Fork and Knife"},
{"value": "spoon", "label": "๐ฅ Spoon"},
{"value": "hocho", "label": "๐ช Hocho"},
{"value": "jar", "label": "๐ซ Jar"},
{"value": "amphora", "label": "๐บ Amphora"},
],
},
{
"group": "activity",
"items": [
{"value": "jack_o_lantern", "label": "๐ Jack O Lantern"},
{"value": "christmas_tree", "label": "๐ Christmas Tree"},
{"value": "fireworks", "label": "๐ Fireworks"},
{"value": "sparkler", "label": "๐ Sparkler"},
{"value": "firecracker", "label": "๐งจ Firecracker"},
{"value": "sparkles", "label": "โจ Sparkles"},
{"value": "balloon", "label": "๐ Balloon"},
{"value": "tada", "label": "๐ Tada"},
{"value": "confetti_ball", "label": "๐ Confetti Ball"},
{"value": "tanabata_tree", "label": "๐ Tanabata Tree"},
{"value": "bamboo", "label": "๐ Bamboo"},
{"value": "dolls", "label": "๐ Dolls"},
{"value": "flags", "label": "๐ Flags"},
{"value": "wind_chime", "label": "๐ Wind Chime"},
{"value": "rice_scene", "label": "๐ Rice Scene"},
{"value": "red_envelope", "label": "๐งง Red Envelope"},
{"value": "ribbon", "label": "๐ Ribbon"},
{"value": "gift", "label": "๐ Gift"},
{"value": "reminder_ribbon", "label": "๐ Reminder Ribbon"},
{"value": "admission_tickets", "label": "๐ Admission Tickets"},
{"value": "ticket", "label": "๐ซ Ticket"},
{"value": "medal", "label": "๐
Medal"},
{"value": "trophy", "label": "๐ Trophy"},
{"value": "sports_medal", "label": "๐ Sports Medal"},
{"value": "first_place_medal", "label": "๐ฅ First Place Medal"},
{"value": "second_place_medal", "label": "๐ฅ Second Place Medal"},
{"value": "third_place_medal", "label": "๐ฅ Third Place Medal"},
{"value": "soccer", "label": "โฝ Soccer"},
{"value": "baseball", "label": "โพ Baseball"},
{"value": "softball", "label": "๐ฅ Softball"},
{"value": "basketball", "label": "๐ Basketball"},
{"value": "volleyball", "label": "๐ Volleyball"},
{"value": "football", "label": "๐ Football"},
{"value": "rugby_football", "label": "๐ Rugby Football"},
{"value": "tennis", "label": "๐พ Tennis"},
{"value": "flying_disc", "label": "๐ฅ Flying Disc"},
{"value": "bowling", "label": "๐ณ Bowling"},
{"value": "cricket_bat_and_ball", "label": "๐ Cricket Bat and Ball"},
{"value": "field_hockey_stick_and_ball", "label": "๐ Field Hockey Stick and Ball"},
{"value": "ice_hockey_stick_and_puck", "label": "๐ Ice Hockey Stick and Puck"},
{"value": "lacrosse", "label": "๐ฅ Lacrosse"},
{"value": "table_tennis_paddle_and_ball", "label": "๐ Table Tennis Paddle and Ball"},
{"value": "badminton_racquet_and_shuttlecock", "label": "๐ธ Badminton Racquet and Shuttlecock"},
{"value": "boxing_glove", "label": "๐ฅ Boxing Glove"},
{"value": "martial_arts_uniform", "label": "๐ฅ Martial Arts Uniform"},
{"value": "goal_net", "label": "๐ฅ
Goal Net"},
{"value": "golf", "label": "โณ Golf"},
{"value": "ice_skate", "label": "โธ Ice Skate"},
{"value": "fishing_pole_and_fish", "label": "๐ฃ Fishing Pole and Fish"},
{"value": "diving_mask", "label": "๐คฟ Diving Mask"},
{"value": "running_shirt_with_sash", "label": "๐ฝ Running Shirt with Sash"},
{"value": "ski", "label": "๐ฟ Ski"},
{"value": "sled", "label": "๐ท Sled"},
{"value": "curling_stone", "label": "๐ฅ Curling Stone"},
{"value": "dart", "label": "๐ฏ Dart"},
{"value": "yo-yo", "label": "๐ช Yo-Yo"},
{"value": "kite", "label": "๐ช Kite"},
{"value": "gun", "label": "๐ซ Gun"},
{"value": "8ball", "label": "๐ฑ 8ball"},
{"value": "crystal_ball", "label": "๐ฎ Crystal Ball"},
{"value": "magic_wand", "label": "๐ช Magic Wand"},
{"value": "video_game", "label": "๐ฎ Video Game"},
{"value": "joystick", "label": "๐น Joystick"},
{"value": "slot_machine", "label": "๐ฐ Slot Machine"},
{"value": "game_die", "label": "๐ฒ Game Die"},
{"value": "jigsaw", "label": "๐งฉ Jigsaw"},
{"value": "teddy_bear", "label": "๐งธ Teddy Bear"},
{"value": "pinata", "label": "๐ช
Pinata"},
{"value": "mirror_ball", "label": "๐ชฉ Mirror Ball"},
{"value": "nesting_dolls", "label": "๐ช Nesting Dolls"},
{"value": "spades", "label": "โ ๏ธ Spades"},
{"value": "hearts", "label": "โฅ๏ธ Hearts"},
{"value": "diamonds", "label": "โฆ๏ธ Diamonds"},
{"value": "clubs", "label": "โฃ๏ธ Clubs"},
{"value": "chess_pawn", "label": "โ Chess Pawn"},
{"value": "black_joker", "label": "๐ Black Joker"},
{"value": "mahjong", "label": "๐ Mahjong"},
{"value": "flower_playing_cards", "label": "๐ด Flower Playing Cards"},
{"value": "performing_arts", "label": "๐ญ Performing Arts"},
{"value": "frame_with_picture", "label": "๐ผ Frame with Picture"},
{"value": "art", "label": "๐จ Art"},
{"value": "thread", "label": "๐งต Thread"},
{"value": "sewing_needle", "label": "๐ชก Sewing Needle"},
{"value": "yarn", "label": "๐งถ Yarn"},
{"value": "knot", "label": "๐ชข Knot"},
],
},
{
"group": "places",
"items": [
{"value": "earth_africa", "label": "๐ Earth Africa"},
{"value": "earth_americas", "label": "๐ Earth Americas"},
{"value": "earth_asia", "label": "๐ Earth Asia"},
{"value": "globe_with_meridians", "label": "๐ Globe with Meridians"},
{"value": "world_map", "label": "๐บ World Map"},
{"value": "japan", "label": "๐พ Japan"},
{"value": "compass", "label": "๐งญ Compass"},
{"value": "snow_capped_mountain", "label": "๐ Snow-Capped Mountain"},
{"value": "mountain", "label": "โฐ Mountain"},
{"value": "volcano", "label": "๐ Volcano"},
{"value": "mount_fuji", "label": "๐ป Mount Fuji"},
{"value": "camping", "label": "๐ Camping"},
{"value": "beach_with_umbrella", "label": "๐ Beach with Umbrella"},
{"value": "desert", "label": "๐ Desert"},
{"value": "desert_island", "label": "๐ Desert Island"},
{"value": "national_park", "label": "๐ National Park"},
{"value": "stadium", "label": "๐ Stadium"},
{"value": "classical_building", "label": "๐ Classical Building"},
{"value": "building_construction", "label": "๐ Building Construction"},
{"value": "bricks", "label": "๐งฑ Bricks"},
{"value": "rock", "label": "๐ชจ Rock"},
{"value": "wood", "label": "๐ชต Wood"},
{"value": "hut", "label": "๐ Hut"},
{"value": "house_buildings", "label": "๐ House Buildings"},
{"value": "derelict_house_building", "label": "๐ Derelict House Building"},
{"value": "house", "label": "๐ House"},
{"value": "house_with_garden", "label": "๐ก House with Garden"},
{"value": "office", "label": "๐ข Office"},
{"value": "post_office", "label": "๐ฃ Post Office"},
{"value": "european_post_office", "label": "๐ค European Post Office"},
{"value": "hospital", "label": "๐ฅ Hospital"},
{"value": "bank", "label": "๐ฆ Bank"},
{"value": "hotel", "label": "๐จ Hotel"},
{"value": "love_hotel", "label": "๐ฉ Love Hotel"},
{"value": "convenience_store", "label": "๐ช Convenience Store"},
{"value": "school", "label": "๐ซ School"},
{"value": "department_store", "label": "๐ฌ Department Store"},
{"value": "factory", "label": "๐ญ Factory"},
{"value": "japanese_castle", "label": "๐ฏ Japanese Castle"},
{"value": "european_castle", "label": "๐ฐ European Castle"},
{"value": "wedding", "label": "๐ Wedding"},
{"value": "tokyo_tower", "label": "๐ผ Tokyo Tower"},
{"value": "statue_of_liberty", "label": "๐ฝ Statue of Liberty"},
{"value": "church", "label": "โช Church"},
{"value": "mosque", "label": "๐ Mosque"},
{"value": "hindu_temple", "label": "๐ Hindu Temple"},
{"value": "synagogue", "label": "๐ Synagogue"},
{"value": "shinto_shrine", "label": "โฉ Shinto Shrine"},
{"value": "kaaba", "label": "๐ Kaaba"},
{"value": "fountain", "label": "โฒ Fountain"},
{"value": "tent", "label": "โบ Tent"},
{"value": "foggy", "label": "๐ Foggy"},
{"value": "night_with_stars", "label": "๐ Night with Stars"},
{"value": "cityscape", "label": "๐ Cityscape"},
{"value": "sunrise_over_mountains", "label": "๐ Sunrise over Mountains"},
{"value": "sunrise", "label": "๐
Sunrise"},
{"value": "city_sunset", "label": "๐ City Sunset"},
{"value": "city_sunrise", "label": "๐ City Sunrise"},
{"value": "bridge_at_night", "label": "๐ Bridge at Night"},
{"value": "hotsprings", "label": "โจ๏ธ Hotsprings"},
{"value": "carousel_horse", "label": "๐ Carousel Horse"},
{"value": "playground_slide", "label": "๐ Playground Slide"},
{"value": "ferris_wheel", "label": "๐ก Ferris Wheel"},
{"value": "roller_coaster", "label": "๐ข Roller Coaster"},
{"value": "barber", "label": "๐ Barber"},
{"value": "circus_tent", "label": "๐ช Circus Tent"},
{"value": "steam_locomotive", "label": "๐ Steam Locomotive"},
{"value": "railway_car", "label": "๐ Railway Car"},
{"value": "bullettrain_side", "label": "๐ Bullettrain Side"},
{"value": "bullettrain_front", "label": "๐
Bullettrain Front"},
{"value": "train2", "label": "๐ Train 2"},
{"value": "metro", "label": "๐ Metro"},
{"value": "light_rail", "label": "๐ Light Rail"},
{"value": "station", "label": "๐ Station"},
{"value": "tram", "label": "๐ Tram"},
{"value": "monorail", "label": "๐ Monorail"},
{"value": "mountain_railway", "label": "๐ Mountain Railway"},
{"value": "train", "label": "๐ Train"},
{"value": "bus", "label": "๐ Bus"},
{"value": "oncoming_bus", "label": "๐ Oncoming Bus"},
{"value": "trolleybus", "label": "๐ Trolleybus"},
{"value": "minibus", "label": "๐ Minibus"},
{"value": "ambulance", "label": "๐ Ambulance"},
{"value": "fire_engine", "label": "๐ Fire Engine"},
{"value": "police_car", "label": "๐ Police Car"},
{"value": "oncoming_police_car", "label": "๐ Oncoming Police Car"},
{"value": "taxi", "label": "๐ Taxi"},
{"value": "oncoming_taxi", "label": "๐ Oncoming Taxi"},
{"value": "car", "label": "๐ Car"},
{"value": "oncoming_automobile", "label": "๐ Oncoming Automobile"},
{"value": "blue_car", "label": "๐ Blue Car"},
{"value": "pickup_truck", "label": "๐ป Pickup Truck"},
{"value": "truck", "label": "๐ Truck"},
{"value": "articulated_lorry", "label": "๐ Articulated Lorry"},
{"value": "tractor", "label": "๐ Tractor"},
{"value": "racing_car", "label": "๐ Racing Car"},
{"value": "racing_motorcycle", "label": "๐ Racing Motorcycle"},
{"value": "motor_scooter", "label": "๐ต Motor Scooter"},
{"value": "manual_wheelchair", "label": "๐ฆฝ Manual Wheelchair"},
{"value": "motorized_wheelchair", "label": "๐ฆผ Motorized Wheelchair"},
{"value": "auto_rickshaw", "label": "๐บ Auto Rickshaw"},
{"value": "bike", "label": "๐ฒ Bike"},
{"value": "scooter", "label": "๐ด Scooter"},
{"value": "skateboard", "label": "๐น Skateboard"},
{"value": "roller_skate", "label": "๐ผ Roller Skate"},
{"value": "busstop", "label": "๐ Bus Stop"},
{"value": "motorway", "label": "๐ฃ Motorway"},
{"value": "railway_track", "label": "๐ค Railway Track"},
{"value": "oil_drum", "label": "๐ข Oil Drum"},
{"value": "fuelpump", "label": "โฝ Fuel Pump"},
{"value": "wheel", "label": "๐ Wheel"},
{"value": "rotating_light", "label": "๐จ Rotating Light"},
{"value": "traffic_light", "label": "๐ฅ Traffic Light"},
{"value": "vertical_traffic_light", "label": "๐ฆ Vertical Traffic Light"},
{"value": "octagonal_sign", "label": "๐ Octagonal Sign"},
{"value": "construction", "label": "๐ง Construction"},
{"value": "anchor", "label": "โ Anchor"},
{"value": "ring_buoy", "label": "๐ Ring Buoy"},
{"value": "boat", "label": "โต Boat"},
{"value": "canoe", "label": "๐ถ Canoe"},
{"value": "speedboat", "label": "๐ค Speedboat"},
{"value": "passenger_ship", "label": "๐ณ Passenger Ship"},
{"value": "ferry", "label": "โด Ferry"},
{"value": "motor_boat", "label": "๐ฅ Motor Boat"},
{"value": "ship", "label": "๐ข Ship"},
{"value": "airplane", "label": "โ๏ธ Airplane"},
{"value": "small_airplane", "label": "๐ฉ Small Airplane"},
{"value": "airplane_departure", "label": "๐ซ Airplane Departure"},
{"value": "airplane_arriving", "label": "๐ฌ Airplane Arriving"},
{"value": "parachute", "label": "๐ช Parachute"},
{"value": "seat", "label": "๐บ Seat"},
{"value": "helicopter", "label": "๐ Helicopter"},
{"value": "suspension_railway", "label": "๐ Suspension Railway"},
{"value": "mountain_cableway", "label": "๐ Mountain Cableway"},
{"value": "aerial_tramway", "label": "๐ก Aerial Tramway"},
{"value": "satellite", "label": "๐ฐ Satellite"},
{"value": "rocket", "label": "๐ Rocket"},
{"value": "flying_saucer", "label": "๐ธ Flying Saucer"},
{"value": "bellhop_bell", "label": "๐ Bellhop Bell"},
{"value": "luggage", "label": "๐งณ Luggage"},
{"value": "hourglass", "label": "โ Hourglass"},
{"value": "hourglass_flowing_sand", "label": "โณ Hourglass Flowing Sand"},
{"value": "watch", "label": "โ Watch"},
{"value": "alarm_clock", "label": "โฐ Alarm Clock"},
{"value": "stopwatch", "label": "โฑ Stopwatch"},
{"value": "timer_clock", "label": "โฒ Timer Clock"},
{"value": "mantelpiece_clock", "label": "๐ฐ Mantelpiece Clock"},
{"value": "clock12", "label": "๐ Clock 12"},
{"value": "clock1230", "label": "๐ง Clock 1230"},
{"value": "clock1", "label": "๐ Clock 1"},
{"value": "clock130", "label": "๐ Clock 130"},
{"value": "clock2", "label": "๐ Clock 2"},
{"value": "clock230", "label": "๐ Clock 230"},
{"value": "clock3", "label": "๐ Clock 3"},
{"value": "clock330", "label": "๐ Clock 330"},
{"value": "clock4", "label": "๐ Clock 4"},
{"value": "clock430", "label": "๐ Clock 430"},
{"value": "clock5", "label": "๐ Clock 5"},
{"value": "clock530", "label": "๐ Clock 530"},
{"value": "clock6", "label": "๐ Clock 6"},
{"value": "clock630", "label": "๐ก Clock 630"},
{"value": "clock7", "label": "๐ Clock 7"},
{"value": "clock730", "label": "๐ข Clock 730"},
{"value": "clock8", "label": "๐ Clock 8"},
{"value": "clock830", "label": "๐ฃ Clock 830"},
{"value": "clock9", "label": "๐ Clock 9"},
{"value": "clock930", "label": "๐ค Clock 930"},
{"value": "clock10", "label": "๐ Clock 10"},
{"value": "clock1030", "label": "๐ฅ Clock 1030"},
{"value": "clock11", "label": "๐ Clock 11"},
{"value": "clock1130", "label": "๐ฆ Clock 1130"},
{"value": "new_moon", "label": "๐ New Moon"},
{"value": "waxing_crescent_moon", "label": "๐ Waxing Crescent Moon"},
{"value": "first_quarter_moon", "label": "๐ First Quarter Moon"},
{"value": "moon", "label": "๐ Moon"},
{"value": "full_moon", "label": "๐ Full Moon"},
{"value": "waning_gibbous_moon", "label": "๐ Waning Gibbous Moon"},
{"value": "last_quarter_moon", "label": "๐ Last Quarter Moon"},
{"value": "waning_crescent_moon", "label": "๐ Waning Crescent Moon"},
{"value": "crescent_moon", "label": "๐ Crescent Moon"},
{"value": "new_moon_with_face", "label": "๐ New Moon with Face"},
{"value": "first_quarter_moon_with_face", "label": "๐ First Quarter Moon with Face"},
{"value": "last_quarter_moon_with_face", "label": "๐ Last Quarter Moon with Face"},
{"value": "thermometer", "label": "๐ก Thermometer"},
{"value": "sunny", "label": "โ๏ธ Sunny"},
{"value": "full_moon_with_face", "label": "๐ Full Moon with Face"},
{"value": "sun_with_face", "label": "๐ Sun with Face"},
{"value": "ringed_planet", "label": "๐ช Ringed Planet"},
{"value": "star", "label": "โญ Star"},
{"value": "star2", "label": "๐ Star 2"},
{"value": "stars", "label": "๐ Stars"},
{"value": "milky_way", "label": "๐ Milky Way"},
{"value": "cloud", "label": "โ๏ธ Cloud"},
{"value": "partly_sunny", "label": "โ
Partly Sunny"},
{"value": "thunder_cloud_and_rain", "label": "โ Thunder Cloud and Rain"},
{"value": "mostly_sunny", "label": "๐ค Mostly Sunny"},
{"value": "barely_sunny", "label": "๐ฅ Barely Sunny"},
{"value": "partly_sunny_rain", "label": "๐ฆ Partly Sunny Rain"},
{"value": "rain_cloud", "label": "๐ง Rain Cloud"},
{"value": "snow_cloud", "label": "๐จ Snow Cloud"},
{"value": "lightning", "label": "๐ฉ Lightning"},
{"value": "tornado", "label": "๐ช Tornado"},
{"value": "fog", "label": "๐ซ Fog"},
{"value": "wind_blowing_face", "label": "๐ฌ Wind Blowing Face"},
{"value": "cyclone", "label": "๐ Cyclone"},
{"value": "rainbow", "label": "๐ Rainbow"},
{"value": "closed_umbrella", "label": "๐ Closed Umbrella"},
{"value": "umbrella", "label": "โ๏ธ Umbrella"},
{"value": "umbrella_with_rain_drops", "label": "โ Umbrella with Rain Drops"},
{"value": "umbrella_on_ground", "label": "โฑ Umbrella on Ground"},
{"value": "zap", "label": "โก Zap"},
{"value": "snowflake", "label": "โ๏ธ Snowflake"},
{"value": "snowman", "label": "โ๏ธ Snowman"},
{"value": "snowman_without_snow", "label": "โ Snowman without Snow"},
{"value": "comet", "label": "โ๏ธ Comet"},
{"value": "fire", "label": "๐ฅ Fire"},
{"value": "droplet", "label": "๐ง Droplet"},
{"value": "ocean", "label": "๐ Ocean"},
],
},
{
"group": "objects",
"items": [
{"value": "eyeglasses", "label": "๐ Eyeglasses"},
{"value": "dark_sunglasses", "label": "๐ถ Dark Sunglasses"},
{"value": "goggles", "label": "๐ฅฝ Goggles"},
{"value": "lab_coat", "label": "๐ฅผ Lab Coat"},
{"value": "safety_vest", "label": "๐ฆบ Safety Vest"},
{"value": "necktie", "label": "๐ Necktie"},
{"value": "shirt", "label": "๐ Shirt"},
{"value": "jeans", "label": "๐ Jeans"},
{"value": "scarf", "label": "๐งฃ Scarf"},
{"value": "gloves", "label": "๐งค Gloves"},
{"value": "coat", "label": "๐งฅ Coat"},
{"value": "socks", "label": "๐งฆ Socks"},
{"value": "dress", "label": "๐ Dress"},
{"value": "kimono", "label": "๐ Kimono"},
{"value": "sari", "label": "๐ฅป Sari"},
{"value": "one-piece_swimsuit", "label": "๐ฉฑ One-Piece Swimsuit"},
{"value": "briefs", "label": "๐ฉฒ Briefs"},
{"value": "shorts", "label": "๐ฉณ Shorts"},
{"value": "bikini", "label": "๐ Bikini"},
{"value": "womans_clothes", "label": "๐ Woman's Clothes"},
{"value": "purse", "label": "๐ Purse"},
{"value": "handbag", "label": "๐ Handbag"},
{"value": "pouch", "label": "๐ Pouch"},
{"value": "shopping_bags", "label": "๐ Shopping Bags"},
{"value": "school_satchel", "label": "๐ School Satchel"},
{"value": "thong_sandal", "label": "๐ฉด Thong Sandal"},
{"value": "mans_shoe", "label": "๐ Man's Shoe"},
{"value": "athletic_shoe", "label": "๐ Athletic Shoe"},
{"value": "hiking_boot", "label": "๐ฅพ Hiking Boot"},
{"value": "womans_flat_shoe", "label": "๐ฅฟ Woman's Flat Shoe"},
{"value": "high_heel", "label": "๐ High Heel"},
{"value": "sandal", "label": "๐ก Sandal"},
{"value": "ballet_shoes", "label": "๐ฉฐ Ballet Shoes"},
{"value": "boot", "label": "๐ข Boot"},
{"value": "crown", "label": "๐ Crown"},
{"value": "womans_hat", "label": "๐ Woman's Hat"},
{"value": "tophat", "label": "๐ฉ Tophat"},
{"value": "mortar_board", "label": "๐ Mortar Board"},
{"value": "billed_cap", "label": "๐งข Billed Cap"},
{"value": "military_helmet", "label": "๐ช Military Helmet"},
{"value": "helmet_with_white_cross", "label": "โ Helmet with White Cross"},
{"value": "prayer_beads", "label": "๐ฟ Prayer Beads"},
{"value": "lipstick", "label": "๐ Lipstick"},
{"value": "ring", "label": "๐ Ring"},
{"value": "gem", "label": "๐ Gem"},
{"value": "mute", "label": "๐ Mute"},
{"value": "speaker", "label": "๐ Speaker"},
{"value": "sound", "label": "๐ Sound"},
{"value": "loud_sound", "label": "๐ Loud Sound"},
{"value": "loudspeaker", "label": "๐ข Loudspeaker"},
{"value": "mega", "label": "๐ฃ Mega"},
{"value": "postal_horn", "label": "๐ฏ Postal Horn"},
{"value": "bell", "label": "๐ Bell"},
{"value": "no_bell", "label": "๐ No Bell"},
{"value": "musical_score", "label": "๐ผ Musical Score"},
{"value": "musical_note", "label": "๐ต Musical Note"},
{"value": "notes", "label": "๐ถ Notes"},
{"value": "studio_microphone", "label": "๐ Studio Microphone"},
{"value": "level_slider", "label": "๐ Level Slider"},
{"value": "control_knobs", "label": "๐ Control Knobs"},
{"value": "microphone", "label": "๐ค Microphone"},
{"value": "headphones", "label": "๐ง Headphones"},
{"value": "radio", "label": "๐ป Radio"},
{"value": "saxophone", "label": "๐ท Saxophone"},
{"value": "accordion", "label": "๐ช Accordion"},
{"value": "guitar", "label": "๐ธ Guitar"},
{"value": "musical_keyboard", "label": "๐น Musical Keyboard"},
{"value": "trumpet", "label": "๐บ Trumpet"},
{"value": "violin", "label": "๐ป Violin"},
{"value": "banjo", "label": "๐ช Banjo"},
{"value": "drum_with_drumsticks", "label": "๐ฅ Drum with Drumsticks"},
{"value": "long_drum", "label": "๐ช Long Drum"},
{"value": "iphone", "label": "๐ฑ iPhone"},
{"value": "calling", "label": "๐ฒ Calling"},
{"value": "phone", "label": "โ๏ธ Phone"},
{"value": "telephone_receiver", "label": "๐ Telephone Receiver"},
{"value": "pager", "label": "๐ Pager"},
{"value": "fax", "label": "๐ Fax"},
{"value": "battery", "label": "๐ Battery"},
{"value": "low_battery", "label": "๐ชซ Low Battery"},
{"value": "electric_plug", "label": "๐ Electric Plug"},
{"value": "computer", "label": "๐ป Computer"},
{"value": "desktop_computer", "label": "๐ฅ Desktop Computer"},
{"value": "printer", "label": "๐จ Printer"},
{"value": "keyboard", "label": "โจ๏ธ Keyboard"},
{"value": "three_button_mouse", "label": "๐ฑ Three-Button Mouse"},
{"value": "trackball", "label": "๐ฒ Trackball"},
{"value": "minidisc", "label": "๐ฝ Minidisc"},
{"value": "floppy_disk", "label": "๐พ Floppy Disk"},
{"value": "cd", "label": "๐ฟ CD"},
{"value": "dvd", "label": "๐ DVD"},
{"value": "abacus", "label": "๐งฎ Abacus"},
{"value": "movie_camera", "label": "๐ฅ Movie Camera"},
{"value": "film_frames", "label": "๐ Film Frames"},
{"value": "film_projector", "label": "๐ฝ Film Projector"},
{"value": "clapper", "label": "๐ฌ Clapper"},
{"value": "tv", "label": "๐บ TV"},
{"value": "camera", "label": "๐ท Camera"},
{"value": "camera_with_flash", "label": "๐ธ Camera with Flash"},
{"value": "video_camera", "label": "๐น Video Camera"},
{"value": "vhs", "label": "๐ผ VHS"},
{"value": "mag", "label": "๐ Mag"},
{"value": "mag_right", "label": "๐ Mag Right"},
{"value": "candle", "label": "๐ฏ Candle"},
{"value": "bulb", "label": "๐ก Bulb"},
{"value": "flashlight", "label": "๐ฆ Flashlight"},
{"value": "izakaya_lantern", "label": "๐ฎ Izakaya Lantern"},
{"value": "diya_lamp", "label": "๐ช Diya Lamp"},
{"value": "notebook_with_decorative_cover", "label": "๐ Notebook with Decorative Cover"},
{"value": "closed_book", "label": "๐ Closed Book"},
{"value": "book", "label": "๐ Book"},
{"value": "green_book", "label": "๐ Green Book"},
{"value": "blue_book", "label": "๐ Blue Book"},
{"value": "orange_book", "label": "๐ Orange Book"},
{"value": "books", "label": "๐ Books"},
{"value": "notebook", "label": "๐ Notebook"},
{"value": "ledger", "label": "๐ Ledger"},
{"value": "page_with_curl", "label": "๐ Page with Curl"},
{"value": "scroll", "label": "๐ Scroll"},
{"value": "page_facing_up", "label": "๐ Page Facing Up"},
{"value": "newspaper", "label": "๐ฐ Newspaper"},
{"value": "rolled_up_newspaper", "label": "๐ Rolled Up Newspaper"},
{"value": "bookmark_tabs", "label": "๐ Bookmark Tabs"},
{"value": "bookmark", "label": "๐ Bookmark"},
{"value": "label", "label": "๐ท Label"},
{"value": "moneybag", "label": "๐ฐ Moneybag"},
{"value": "coin", "label": "๐ช Coin"},
{"value": "yen", "label": "๐ด Yen"},
{"value": "dollar", "label": "๐ต Dollar"},
{"value": "euro", "label": "๐ถ Euro"},
{"value": "pound", "label": "๐ท Pound"},
{"value": "money_with_wings", "label": "๐ธ Money with Wings"},
{"value": "credit_card", "label": "๐ณ Credit Card"},
{"value": "receipt", "label": "๐งพ Receipt"},
{"value": "chart", "label": "๐น Chart"},
{"value": "email", "label": "๐ง Email"},
{"value": "e-mail", "label": "๐ง E-mail"},
{"value": "incoming_envelope", "label": "๐จ Incoming Envelope"},
{"value": "envelope_with_arrow", "label": "๐ฉ Envelope with Arrow"},
{"value": "outbox_tray", "label": "๐ค Outbox Tray"},
{"value": "inbox_tray", "label": "๐ฅ Inbox Tray"},
{"value": "package", "label": "๐ฆ Package"},
{"value": "mailbox", "label": "๐ซ Mailbox"},
{"value": "mailbox_closed", "label": "๐ช Mailbox Closed"},
{"value": "mailbox_with_mail", "label": "๐ฌ Mailbox with Mail"},
{"value": "mailbox_with_no_mail", "label": "๐ญ Mailbox with No Mail"},
{"value": "postbox", "label": "๐ฎ Postbox"},
{"value": "ballot_box_with_ballot", "label": "๐ณ Ballot Box with Ballot"},
{"value": "pencil2", "label": "โ๏ธ Pencil 2"},
{"value": "black_nib", "label": "โ๏ธ Black Nib"},
{"value": "lower_left_fountain_pen", "label": "๐ Lower Left Fountain Pen"},
{"value": "lower_left_ballpoint_pen", "label": "๐ Lower Left Ballpoint Pen"},
{"value": "lower_left_paintbrush", "label": "๐ Lower Left Paintbrush"},
{"value": "lower_left_crayon", "label": "๐ Lower Left Crayon"},
{"value": "memo", "label": "๐ Memo"},
{"value": "briefcase", "label": "๐ผ Briefcase"},
{"value": "file_folder", "label": "๐ File Folder"},
{"value": "open_file_folder", "label": "๐ Open File Folder"},
{"value": "card_index_dividers", "label": "๐ Card Index Dividers"},
{"value": "date", "label": "๐
Date"},
{"value": "calendar", "label": "๐ Calendar"},
{"value": "spiral_note_pad", "label": "๐ Spiral Note Pad"},
{"value": "spiral_calendar_pad", "label": "๐ Spiral Calendar Pad"},
{"value": "card_index", "label": "๐ Card Index"},
{"value": "chart_with_upwards_trend", "label": "๐ Chart with Upwards Trend"},
{"value": "chart_with_downwards_trend", "label": "๐ Chart with Downwards Trend"},
{"value": "bar_chart", "label": "๐ Bar Chart"},
{"value": "clipboard", "label": "๐ Clipboard"},
{"value": "pushpin", "label": "๐ Pushpin"},
{"value": "round_pushpin", "label": "๐ Round Pushpin"},
{"value": "paperclip", "label": "๐ Paperclip"},
{"value": "linked_paperclips", "label": "๐ Linked Paperclips"},
{"value": "straight_ruler", "label": "๐ Straight Ruler"},
{"value": "triangular_ruler", "label": "๐ Triangular Ruler"},
{"value": "scissors", "label": "โ๏ธ Scissors"},
{"value": "card_file_box", "label": "๐ Card File Box"},
{"value": "file_cabinet", "label": "๐ File Cabinet"},
{"value": "wastebasket", "label": "๐ Wastebasket"},
{"value": "lock", "label": "๐ Lock"},
{"value": "unlock", "label": "๐ Unlock"},
{"value": "lock_with_ink_pen", "label": "๐ Lock with Ink Pen"},
{"value": "closed_lock_with_key", "label": "๐ Closed Lock with Key"},
{"value": "key", "label": "๐ Key"},
{"value": "old_key", "label": "๐ Old Key"},
{"value": "hammer", "label": "๐จ Hammer"},
{"value": "axe", "label": "๐ช Axe"},
{"value": "pick", "label": "โ Pick"},
{"value": "hammer_and_pick", "label": "โ Hammer and Pick"},
{"value": "hammer_and_wrench", "label": "๐ Hammer and Wrench"},
{"value": "dagger_knife", "label": "๐ก Dagger Knife"},
{"value": "crossed_swords", "label": "โ๏ธ Crossed Swords"},
{"value": "bomb", "label": "๐ฃ Bomb"},
{"value": "boomerang", "label": "๐ช Boomerang"},
{"value": "bow_and_arrow", "label": "๐น Bow and Arrow"},
{"value": "shield", "label": "๐ก Shield"},
{"value": "carpentry_saw", "label": "๐ช Carpentry Saw"},
{"value": "wrench", "label": "๐ง Wrench"},
{"value": "screwdriver", "label": "๐ช Screwdriver"},
{"value": "nut_and_bolt", "label": "๐ฉ Nut and Bolt"},
{"value": "gear", "label": "โ๏ธ Gear"},
{"value": "compression", "label": "๐ Compression"},
{"value": "scales", "label": "โ๏ธ Scales"},
{"value": "probing_cane", "label": "๐ฆฏ Probing Cane"},
{"value": "link", "label": "๐ Link"},
{"value": "chains", "label": "โ Chains"},
{"value": "hook", "label": "๐ช Hook"},
{"value": "toolbox", "label": "๐งฐ Toolbox"},
{"value": "magnet", "label": "๐งฒ Magnet"},
{"value": "ladder", "label": "๐ช Ladder"},
{"value": "alembic", "label": "โ๏ธ Alembic"},
{"value": "test_tube", "label": "๐งช Test Tube"},
{"value": "petri_dish", "label": "๐งซ Petri Dish"},
{"value": "dna", "label": "๐งฌ DNA"},
{"value": "microscope", "label": "๐ฌ Microscope"},
{"value": "telescope", "label": "๐ญ Telescope"},
{"value": "satellite_antenna", "label": "๐ก Satellite Antenna"},
{"value": "syringe", "label": "๐ Syringe"},
{"value": "drop_of_blood", "label": "๐ฉธ Drop of Blood"},
{"value": "pill", "label": "๐ Pill"},
{"value": "adhesive_bandage", "label": "๐ฉน Adhesive Bandage"},
{"value": "crutch", "label": "๐ฉผ Crutch"},
{"value": "stethoscope", "label": "๐ฉบ Stethoscope"},
{"value": "x-ray", "label": "๐ฉป X-Ray"},
{"value": "door", "label": "๐ช Door"},
{"value": "elevator", "label": "๐ Elevator"},
{"value": "mirror", "label": "๐ช Mirror"},
{"value": "window", "label": "๐ช Window"},
{"value": "bed", "label": "๐ Bed"},
{"value": "couch_and_lamp", "label": "๐ Couch and Lamp"},
{"value": "chair", "label": "๐ช Chair"},
{"value": "toilet", "label": "๐ฝ Toilet"},
{"value": "plunger", "label": "๐ช Plunger"},
{"value": "shower", "label": "๐ฟ Shower"},
{"value": "bathtub", "label": "๐ Bathtub"},
{"value": "mouse_trap", "label": "๐ชค Mouse Trap"},
{"value": "razor", "label": "๐ช Razor"},
{"value": "lotion_bottle", "label": "๐งด Lotion Bottle"},
{"value": "safety_pin", "label": "๐งท Safety Pin"},
{"value": "broom", "label": "๐งน Broom"},
{"value": "basket", "label": "๐งบ Basket"},
{"value": "roll_of_paper", "label": "๐งป Roll of Paper"},
{"value": "bucket", "label": "๐ชฃ Bucket"},
{"value": "soap", "label": "๐งผ Soap"},
{"value": "bubbles", "label": "๐ซง Bubbles"},
{"value": "toothbrush", "label": "๐ชฅ Toothbrush"},
{"value": "sponge", "label": "๐งฝ Sponge"},
{"value": "fire_extinguisher", "label": "๐งฏ Fire Extinguisher"},
{"value": "shopping_trolley", "label": "๐ Shopping Trolley"},
{"value": "smoking", "label": "๐ฌ Smoking"},
{"value": "coffin", "label": "โฐ๏ธ Coffin"},
{"value": "headstone", "label": "๐ชฆ Headstone"},
{"value": "funeral_urn", "label": "โฑ๏ธ Funeral Urn"},
{"value": "nazar_amulet", "label": "๐งฟ Nazar Amulet"},
{"value": "hamsa", "label": "๐ชฌ Hamsa"},
{"value": "moyai", "label": "๐ฟ Moyai"},
{"value": "placard", "label": "๐ชง Placard"},
{"value": "identification_card", "label": "๐ชช Identification Card"},
],
},
{
"group": "symbols",
"items": [
{"value": "atm", "label": "๐ง ATM"},
{"value": "put_litter_in_its_place", "label": "๐ฎ Put Litter in Its Place"},
{"value": "potable_water", "label": "๐ฐ Potable Water"},
{"value": "wheelchair", "label": "โฟ Wheelchair"},
{"value": "mens", "label": "๐น Mens"},
{"value": "womens", "label": "๐บ Womens"},
{"value": "restroom", "label": "๐ป Restroom"},
{"value": "baby_symbol", "label": "๐ผ Baby Symbol"},
{"value": "wc", "label": "๐พ WC"},
{"value": "passport_control", "label": "๐ Passport Control"},
{"value": "customs", "label": "๐ Customs"},
{"value": "baggage_claim", "label": "๐ Baggage Claim"},
{"value": "left_luggage", "label": "๐
Left Luggage"},
{"value": "warning", "label": "โ ๏ธ Warning"},
{"value": "children_crossing", "label": "๐ธ Children Crossing"},
{"value": "no_entry", "label": "โ No Entry"},
{"value": "no_entry_sign", "label": "๐ซ No Entry Sign"},
{"value": "no_bicycles", "label": "๐ณ No Bicycles"},
{"value": "no_smoking", "label": "๐ญ No Smoking"},
{"value": "do_not_litter", "label": "๐ฏ Do Not Litter"},
{"value": "non-potable_water", "label": "๐ฑ Non-Potable Water"},
{"value": "no_pedestrians", "label": "๐ท No Pedestrians"},
{"value": "no_mobile_phones", "label": "๐ต No Mobile Phones"},
{"value": "underage", "label": "๐ Underage"},
{"value": "radioactive_sign", "label": "โข๏ธ Radioactive Sign"},
{"value": "biohazard_sign", "label": "โฃ๏ธ Biohazard Sign"},
{"value": "arrow_up", "label": "โฌ๏ธ Arrow Up"},
{"value": "arrow_upper_right", "label": "โ๏ธ Arrow Upper Right"},
{"value": "arrow_right", "label": "โก๏ธ Arrow Right"},
{"value": "arrow_lower_right", "label": "โ๏ธ Arrow Lower Right"},
{"value": "arrow_down", "label": "โฌ๏ธ Arrow Down"},
{"value": "arrow_lower_left", "label": "โ๏ธ Arrow Lower Left"},
{"value": "arrow_left", "label": "โฌ
๏ธ Arrow Left"},
{"value": "arrow_upper_left", "label": "โ๏ธ Arrow Upper Left"},
{"value": "arrow_up_down", "label": "โ๏ธ Arrow Up Down"},
{"value": "left_right_arrow", "label": "โ๏ธ Left Right Arrow"},
{"value": "leftwards_arrow_with_hook", "label": "โฉ๏ธ Leftwards Arrow with Hook"},
{"value": "arrow_right_hook", "label": "โช๏ธ Arrow Right Hook"},
{"value": "arrow_heading_up", "label": "โคด๏ธ Arrow Heading Up"},
{"value": "arrow_heading_down", "label": "โคต๏ธ Arrow Heading Down"},
{"value": "arrows_clockwise", "label": "๐ Arrows Clockwise"},
{"value": "arrows_counterclockwise", "label": "๐ Arrows Counterclockwise"},
{"value": "back", "label": "๐ Back"},
{"value": "end", "label": "๐ End"},
{"value": "on", "label": "๐ On"},
{"value": "soon", "label": "๐ Soon"},
{"value": "top", "label": "๐ Top"},
{"value": "place_of_worship", "label": "๐ Place of Worship"},
{"value": "atom_symbol", "label": "โ๏ธ Atom Symbol"},
{"value": "om_symbol", "label": "๐๏ธ Om Symbol"},
{"value": "star_of_david", "label": "โก๏ธ Star of David"},
{"value": "wheel_of_dharma", "label": "โธ๏ธ Wheel of Dharma"},
{"value": "yin_yang", "label": "โฏ๏ธ Yin Yang"},
{"value": "latin_cross", "label": "โ๏ธ Latin Cross"},
{"value": "orthodox_cross", "label": "โฆ๏ธ Orthodox Cross"},
{"value": "star_and_crescent", "label": "โช๏ธ Star and Crescent"},
{"value": "peace_symbol", "label": "โฎ๏ธ Peace Symbol"},
{"value": "menorah_with_nine_branches", "label": "๐ Menorah with Nine Branches"},
{"value": "six_pointed_star", "label": "๐ฏ Six Pointed Star"},
{"value": "aries", "label": "โ Aries"},
{"value": "taurus", "label": "โ Taurus"},
{"value": "gemini", "label": "โ Gemini"},
{"value": "cancer", "label": "โ Cancer"},
{"value": "leo", "label": "โ Leo"},
{"value": "virgo", "label": "โ Virgo"},
{"value": "libra", "label": "โ Libra"},
{"value": "scorpius", "label": "โ Scorpius"},
{"value": "sagittarius", "label": "โ Sagittarius"},
{"value": "capricorn", "label": "โ Capricorn"},
{"value": "aquarius", "label": "โ Aquarius"},
{"value": "pisces", "label": "โ Pisces"},
{"value": "ophiuchus", "label": "โ Ophiuchus"},
{"value": "twisted_rightwards_arrows", "label": "๐ Twisted Rightwards Arrows"},
{"value": "repeat", "label": "๐ Repeat"},
{"value": "repeat_one", "label": "๐ Repeat One"},
{"value": "arrow_forward", "label": "โถ๏ธ Arrow Forward"},
{"value": "fast_forward", "label": "โฉ Fast Forward"},
{"value": "black_right_pointing_double_triangle_with_vertical_bar",
"label": "โฏ Black Right Pointing Double Triangle with Vertical Bar"},
{"value": "black_right_pointing_triangle_with_double_vertical_bar",
"label": "โญ Black Right Pointing Triangle with Double Vertical Bar"},
{"value": "arrow_backward", "label": "โ๏ธ Arrow Backward"},
{"value": "rewind", "label": "โช Rewind"},
{"value": "black_left_pointing_double_triangle_with_vertical_bar",
"label": "โฎ Black Left Pointing Double Triangle with Vertical Bar"},
{"value": "arrow_up_small", "label": "๐ผ Arrow Up Small"},
{"value": "arrow_double_up", "label": "โซ Arrow Double Up"},
{"value": "arrow_down_small", "label": "๐ฝ Arrow Down Small"},
{"value": "arrow_double_down", "label": "โฌ Arrow Double Down"},
{"value": "double_vertical_bar", "label": "โธ Double Vertical Bar"},
{"value": "black_square_for_stop", "label": "โน Black Square for Stop"},
{"value": "black_circle_for_record", "label": "โบ Black Circle for Record"},
{"value": "eject", "label": "โ๏ธ Eject"},
{"value": "cinema", "label": "๐ฆ Cinema"},
{"value": "low_brightness", "label": "๐
Low Brightness"},
{"value": "high_brightness", "label": "๐ High Brightness"},
{"value": "signal_strength", "label": "๐ถ Signal Strength"},
{"value": "vibration_mode", "label": "๐ณ Vibration Mode"},
{"value": "mobile_phone_off", "label": "๐ด Mobile Phone Off"},
{"value": "female_sign", "label": "โ๏ธ Female Sign"},
{"value": "male_sign", "label": "โ๏ธ Male Sign"},
{"value": "transgender_symbol", "label": "โง Transgender Symbol"},
{"value": "heavy_multiplication_x", "label": "โ๏ธ Heavy Multiplication X"},
{"value": "heavy_plus_sign", "label": "โ Heavy Plus Sign"},
{"value": "heavy_minus_sign", "label": "โ Heavy Minus Sign"},
{"value": "heavy_division_sign", "label": "โ Heavy Division Sign"},
{"value": "heavy_equals_sign", "label": "๐ฐ Heavy Equals Sign"},
{"value": "infinity", "label": "โพ Infinity"},
{"value": "bangbang", "label": "โผ๏ธ Bangbang"},
{"value": "interrobang", "label": "โ๏ธ Interrobang"},
{"value": "question", "label": "โ Question"},
{"value": "grey_question", "label": "โ Grey Question"},
{"value": "grey_exclamation", "label": "โ Grey Exclamation"},
{"value": "exclamation", "label": "โ Exclamation"},
{"value": "wavy_dash", "label": "ใฐ๏ธ Wavy Dash"},
{"value": "currency_exchange", "label": "๐ฑ Currency Exchange"},
{"value": "heavy_dollar_sign", "label": "๐ฒ Heavy Dollar Sign"},
{"value": "medical_symbol", "label": "โ๏ธ Medical Symbol"},
{"value": "recycle", "label": "โป๏ธ Recycle"},
{"value": "fleur_de_lis", "label": "โ๏ธ Fleur de Lis"},
{"value": "trident", "label": "๐ฑ Trident"},
{"value": "name_badge", "label": "๐ Name Badge"},
{"value": "beginner", "label": "๐ฐ Beginner"},
{"value": "o", "label": "โญ O"},
{"value": "white_check_mark", "label": "โ
White Check Mark"},
{"value": "ballot_box_with_check", "label": "โ๏ธ Ballot Box with Check"},
{"value": "heavy_check_mark", "label": "โ๏ธ Heavy Check Mark"},
{"value": "x", "label": "โ X"},
{"value": "negative_squared_cross_mark", "label": "โ Negative Squared Cross Mark"},
{"value": "curly_loop", "label": "โฐ Curly Loop"},
{"value": "loop", "label": "โฟ Loop"},
{"value": "part_alternation_mark", "label": "ใฝ๏ธ Part Alternation Mark"},
{"value": "eight_spoked_asterisk", "label": "โณ๏ธ Eight Spoked Asterisk"},
{"value": "eight_pointed_black_star", "label": "โด๏ธ Eight Pointed Black Star"},
{"value": "sparkle", "label": "โ๏ธ Sparkle"},
{"value": "copyright", "label": "ยฉ๏ธ Copyright"},
{"value": "registered", "label": "ยฎ๏ธ Registered"},
{"value": "tm", "label": "โข๏ธ TM"},
{"value": "hash", "label": "#๏ธโฃ Hash"},
{"value": "keycap_star", "label": "*๏ธโฃ Keycap Star"},
{"value": "zero", "label": "0๏ธโฃ Zero"},
{"value": "one", "label": "1๏ธโฃ One"},
{"value": "two", "label": "2๏ธโฃ Two"},
{"value": "three", "label": "3๏ธโฃ Three"},
{"value": "four", "label": "4๏ธโฃ Four"},
{"value": "five", "label": "5๏ธโฃ Five"},
{"value": "six", "label": "6๏ธโฃ Six"},
{"value": "seven", "label": "7๏ธโฃ Seven"},
{"value": "eight", "label": "8๏ธโฃ Eight"},
{"value": "nine", "label": "9๏ธโฃ Nine"},
{"value": "keycap_ten", "label": "๐ Keycap Ten"},
{"value": "capital_abcd", "label": "๐ Capital ABCD"},
{"value": "abcd", "label": "๐ก ABCD"},
{"value": "1234", "label": "๐ข 1234"},
{"value": "symbols", "label": "๐ฃ Symbols"},
{"value": "abc", "label": "๐ค ABC"},
{"value": "a", "label": "๐
ฐ๏ธ A"},
{"value": "ab", "label": "๐ AB"},
{"value": "b", "label": "๐
ฑ๏ธ B"},
{"value": "cl", "label": "๐ CL"},
{"value": "cool", "label": "๐ Cool"},
{"value": "free", "label": "๐ Free"},
{"value": "information_source", "label": "โน๏ธ Information Source"},
{"value": "id", "label": "๐ ID"},
{"value": "m", "label": "โ๏ธ M"},
{"value": "new", "label": "๐ New"},
{"value": "ng", "label": "๐ NG"},
{"value": "o2", "label": "๐
พ๏ธ O2"},
{"value": "ok", "label": "๐ OK"},
{"value": "parking", "label": "๐
ฟ๏ธ Parking"},
{"value": "sos", "label": "๐ SOS"},
{"value": "up", "label": "๐ UP"},
{"value": "vs", "label": "๐ VS"},
{"value": "koko", "label": "๐ KOKO"},
{"value": "sa", "label": "๐๏ธ SA"},
{"value": "u6708", "label": "๐ท๏ธ U6708"},
{"value": "u6709", "label": "๐ถ U6709"},
{"value": "u6307", "label": "๐ฏ U6307"},
{"value": "ideograph_advantage", "label": "๐ Ideograph Advantage"},
{"value": "u5272", "label": "๐น U5272"},
{"value": "u7121", "label": "๐ U7121"},
{"value": "u7981", "label": "๐ฒ U7981"},
{"value": "accept", "label": "๐ Accept"},
{"value": "u7533", "label": "๐ธ U7533"},
{"value": "u5408", "label": "๐ด U5408"},
{"value": "u7a7a", "label": "๐ณ U7A7A"},
{"value": "congratulations", "label": "ใ๏ธ Congratulations"},
{"value": "secret", "label": "ใ๏ธ Secret"},
{"value": "u55b6", "label": "๐บ U55B6"},
{"value": "u6e80", "label": "๐ต U6E80"},
{"value": "red_circle", "label": "๐ด Red Circle"},
{"value": "large_orange_circle", "label": "๐ Large Orange Circle"},
{"value": "large_yellow_circle", "label": "๐ก Large Yellow Circle"},
{"value": "large_green_circle", "label": "๐ข Large Green Circle"},
{"value": "large_blue_circle", "label": "๐ต Large Blue Circle"},
{"value": "large_purple_circle", "label": "๐ฃ Large Purple Circle"},
{"value": "large_brown_circle", "label": "๐ค Large Brown Circle"},
{"value": "black_circle", "label": "โซ Black Circle"},
{"value": "white_circle", "label": "โช White Circle"},
{"value": "large_red_square", "label": "๐ฅ Large Red Square"},
{"value": "large_orange_square", "label": "๐ง Large Orange Square"},
{"value": "large_yellow_square", "label": "๐จ Large Yellow Square"},
{"value": "large_green_square", "label": "๐ฉ Large Green Square"},
{"value": "large_blue_square", "label": "๐ฆ Large Blue Square"},
{"value": "large_purple_square", "label": "๐ช Large Purple Square"},
{"value": "large_brown_square", "label": "๐ซ Large Brown Square"},
{"value": "black_large_square", "label": "โฌ Black Large Square"},
{"value": "white_large_square", "label": "โฌ White Large Square"},
{"value": "black_medium_square", "label": "โผ๏ธ Black Medium Square"},
{"value": "white_medium_square", "label": "โป๏ธ White Medium Square"},
{"value": "black_medium_small_square", "label": "โพ Black Medium Small Square"},
{"value": "white_medium_small_square", "label": "โฝ White Medium Small Square"},
{"value": "black_small_square", "label": "โช๏ธ Black Small Square"},
{"value": "white_small_square", "label": "โซ๏ธ White Small Square"},
{"value": "large_orange_diamond", "label": "๐ถ Large Orange Diamond"},
{"value": "large_blue_diamond", "label": "๐ท Large Blue Diamond"},
{"value": "small_orange_diamond", "label": "๐ธ Small Orange Diamond"},
{"value": "small_blue_diamond", "label": "๐น Small Blue Diamond"},
{"value": "small_red_triangle", "label": "๐บ Small Red Triangle"},
{"value": "small_red_triangle_down", "label": "๐ป Small Red Triangle Down"},
{"value": "diamond_shape_with_a_dot_inside", "label": "๐ Diamond Shape with a Dot Inside"},
{"value": "radio_button", "label": "๐ Radio Button"},
{"value": "white_square_button", "label": "๐ณ White Square Button"},
{"value": "black_square_button", "label": "๐ฒ Black Square Button"},
],
},
{
"group": "flags",
"items": [
{"value": "checkered_flag", "label": "๐ Checkered Flag"},
{"value": "cn", "label": "๐จ๐ณ CN"},
{"value": "crossed_flags", "label": "๐ Crossed Flags"},
{"value": "de", "label": "๐ฉ๐ช DE"},
{"value": "es", "label": "๐ช๐ธ ES"},
{"value": "flag-ac", "label": "๐ฆ๐จ Flag AC"},
{"value": "flag-ad", "label": "๐ฆ๐ฉ Flag AD"},
{"value": "flag-ae", "label": "๐ฆ๐ช Flag AE"},
{"value": "flag-af", "label": "๐ฆ๐ซ Flag AF"},
{"value": "flag-ag", "label": "๐ฆ๐ฌ Flag AG"},
{"value": "flag-ai", "label": "๐ฆ๐ฎ Flag AI"},
{"value": "flag-al", "label": "๐ฆ๐ฑ Flag AL"},
{"value": "flag-am", "label": "๐ฆ๐ฒ Flag AM"},
{"value": "flag-ao", "label": "๐ฆ๐ด Flag AO"},
{"value": "flag-aq", "label": "๐ฆ๐ถ Flag AQ"},
{"value": "flag-ar", "label": "๐ฆ๐ท Flag AR"},
{"value": "flag-as", "label": "๐ฆ๐ธ Flag AS"},
{"value": "flag-at", "label": "๐ฆ๐น Flag AT"},
{"value": "flag-au", "label": "๐ฆ๐บ Flag AU"},
{"value": "flag-aw", "label": "๐ฆ๐ผ Flag AW"},
{"value": "flag-ax", "label": "๐ฆ๐ฝ Flag AX"},
{"value": "flag-az", "label": "๐ฆ๐ฟ Flag AZ"},
{"value": "flag-ba", "label": "๐ง๐ฆ Flag BA"},
{"value": "flag-bb", "label": "๐ง๐ง Flag BB"},
{"value": "flag-bd", "label": "๐ง๐ฉ Flag BD"},
{"value": "flag-be", "label": "๐ง๐ช Flag BE"},
{"value": "flag-bf", "label": "๐ง๐ซ Flag BF"},
{"value": "flag-bg", "label": "๐ง๐ฌ Flag BG"},
{"value": "flag-bh", "label": "๐ง๐ญ Flag BH"},
{"value": "flag-bi", "label": "๐ง๐ฎ Flag BI"},
{"value": "flag-bj", "label": "๐ง๐ฏ Flag BJ"},
{"value": "flag-bl", "label": "๐ง๐ฑ Flag BL"},
{"value": "flag-bm", "label": "๐ง๐ฒ Flag BM"},
{"value": "flag-bn", "label": "๐ง๐ณ Flag BN"},
{"value": "flag-bo", "label": "๐ง๐ด Flag BO"},
{"value": "flag-bq", "label": "๐ง๐ถ Flag BQ"},
{"value": "flag-br", "label": "๐ง๐ท Flag BR"},
{"value": "flag-bs", "label": "๐ง๐ธ Flag BS"},
{"value": "flag-bt", "label": "๐ง๐น Flag BT"},
{"value": "flag-bv", "label": "๐ง๐ป Flag BV"},
{"value": "flag-bw", "label": "๐ง๐ผ Flag BW"},
{"value": "flag-by", "label": "๐ง๐พ Flag BY"},
{"value": "flag-bz", "label": "๐ง๐ฟ Flag BZ"},
{"value": "flag-ca", "label": "๐จ๐ฆ Flag CA"},
{"value": "flag-cc", "label": "๐จ๐จ Flag CC"},
{"value": "flag-cd", "label": "๐จ๐ฉ Flag CD"},
{"value": "flag-cf", "label": "๐จ๐ซ Flag CF"},
{"value": "flag-cg", "label": "๐จ๐ฌ Flag CG"},
{"value": "flag-ch", "label": "๐จ๐ญ Flag CH"},
{"value": "flag-ci", "label": "๐จ๐ฎ Flag CI"},
{"value": "flag-ck", "label": "๐จ๐ฐ Flag CK"},
{"value": "flag-cl", "label": "๐จ๐ฑ Flag CL"},
{"value": "flag-cm", "label": "๐จ๐ฒ Flag CM"},
{"value": "flag-co", "label": "๐จ๐ด Flag CO"},
{"value": "flag-cp", "label": "๐จ๐ต Flag CP"},
{"value": "flag-cr", "label": "๐จ๐ท Flag CR"},
{"value": "flag-cu", "label": "๐จ๐บ Flag CU"},
{"value": "flag-cv", "label": "๐จ๐ป Flag CV"},
{"value": "flag-cw", "label": "๐จ๐ผ Flag CW"},
{"value": "flag-cx", "label": "๐จ๐ฝ Flag CX"},
{"value": "flag-cy", "label": "๐จ๐พ Flag CY"},
{"value": "flag-cz", "label": "๐จ๐ฟ Flag CZ"},
{"value": "flag-dg", "label": "๐ฉ๐ฌ Flag DG"},
{"value": "flag-dj", "label": "๐ฉ๐ฏ Flag DJ"},
{"value": "flag-dk", "label": "๐ฉ๐ฐ Flag DK"},
{"value": "flag-dm", "label": "๐ฉ๐ฒ Flag DM"},
{"value": "flag-do", "label": "๐ฉ๐ด Flag DO"},
{"value": "flag-dz", "label": "๐ฉ๐ฟ Flag DZ"},
{"value": "flag-ea", "label": "๐ช๐ฆ Flag EA"},
{"value": "flag-ec", "label": "๐ช๐จ Flag EC"},
{"value": "flag-ee", "label": "๐ช๐ช Flag EE"},
{"value": "flag-eg", "label": "๐ช๐ฌ Flag EG"},
{"value": "flag-eh", "label": "๐ช๐ญ Flag EH"},
{"value": "flag-england", "label": "๐ด Flag England"},
{"value": "flag-er", "label": "๐ช๐ท Flag ER"},
{"value": "flag-et", "label": "๐ช๐น Flag ET"},
{"value": "flag-eu", "label": "๐ช๐บ Flag EU"},
{"value": "flag-fi", "label": "๐ซ๐ฎ Flag FI"},
{"value": "flag-fj", "label": "๐ซ๐ฏ Flag FJ"},
{"value": "flag-fk", "label": "๐ซ๐ฐ Flag FK"},
{"value": "flag-fm", "label": "๐ซ๐ฒ Flag FM"},
{"value": "flag-fo", "label": "๐ซ๐ด Flag FO"},
{"value": "flag-ga", "label": "๐ฌ๐ฆ Flag GA"},
{"value": "flag-gd", "label": "๐ฌ๐ฉ Flag GD"},
{"value": "flag-ge", "label": "๐ฌ๐ช Flag GE"},
{"value": "flag-gf", "label": "๐ฌ๐ซ Flag GF"},
{"value": "flag-gg", "label": "๐ฌ๐ฌ Flag GG"},
{"value": "flag-gh", "label": "๐ฌ๐ญ Flag GH"},
{"value": "flag-gi", "label": "๐ฌ๐ฎ Flag GI"},
{"value": "flag-gl", "label": "๐ฌ๐ฑ Flag GL"},
{"value": "flag-gm", "label": "๐ฌ๐ฒ Flag GM"},
{"value": "flag-gn", "label": "๐ฌ๐ณ Flag GN"},
{"value": "flag-gp", "label": "๐ฌ๐ต Flag GP"},
{"value": "flag-gq", "label": "๐ฌ๐ถ Flag GQ"},
{"value": "flag-gr", "label": "๐ฌ๐ท Flag GR"},
{"value": "flag-gs", "label": "๐ฌ๐ธ Flag GS"},
{"value": "flag-gt", "label": "๐ฌ๐น Flag GT"},
{"value": "flag-gu", "label": "๐ฌ๐บ Flag GU"},
{"value": "flag-gw", "label": "๐ฌ๐ผ Flag GW"},
{"value": "flag-gy", "label": "๐ฌ๐พ Flag GY"},
{"value": "flag-hk", "label": "๐ญ๐ฐ Flag HK"},
{"value": "flag-hm", "label": "๐ญ๐ฒ Flag HM"},
{"value": "flag-hn", "label": "๐ญ๐ณ Flag HN"},
{"value": "flag-hr", "label": "๐ญ๐ท Flag HR"},
{"value": "flag-ht", "label": "๐ญ๐น Flag HT"},
{"value": "flag-hu", "label": "๐ญ๐บ Flag HU"},
{"value": "flag-ic", "label": "๐ฎ๐จ Flag IC"},
{"value": "flag-id", "label": "๐ฎ๐ฉ Flag ID"},
{"value": "flag-ie", "label": "๐ฎ๐ช Flag IE"},
{"value": "flag-il", "label": "๐ฎ๐ฑ Flag IL"},
{"value": "flag-im", "label": "๐ฎ๐ฒ Flag IM"},
{"value": "flag-in", "label": "๐ฎ๐ณ Flag IN"},
{"value": "flag-io", "label": "๐ฎ๐ด Flag IO"},
{"value": "flag-iq", "label": "๐ฎ๐ถ Flag IQ"},
{"value": "flag-ir", "label": "๐ฎ๐ท Flag IR"},
{"value": "flag-is", "label": "๐ฎ๐ธ Flag IS"},
{"value": "flag-je", "label": "๐ฏ๐ช Flag JE"},
{"value": "flag-jm", "label": "๐ฏ๐ฒ Flag JM"},
{"value": "flag-jo", "label": "๐ฏ๐ด Flag JO"},
{"value": "flag-ke", "label": "๐ฐ๐ช Flag KE"},
{"value": "flag-kg", "label": "๐ฐ๐ฌ Flag KG"},
{"value": "flag-kh", "label": "๐ฐ๐ญ Flag KH"},
{"value": "flag-ki", "label": "๐ฐ๐ฎ Flag KI"},
{"value": "flag-km", "label": "๐ฐ๐ฒ Flag KM"},
{"value": "flag-kn", "label": "๐ฐ๐ณ Flag KN"},
{"value": "flag-kp", "label": "๐ฐ๐ต Flag KP"},
{"value": "flag-kw", "label": "๐ฐ๐ผ Flag KW"},
{"value": "flag-ky", "label": "๐ฐ๐พ Flag KY"},
{"value": "flag-kz", "label": "๐ฐ๐ฟ Flag KZ"},
{"value": "flag-la", "label": "๐ฑ๐ฆ Flag LA"},
{"value": "flag-lb", "label": "๐ฑ๐ง Flag LB"},
{"value": "flag-lc", "label": "๐ฑ๐จ Flag LC"},
{"value": "flag-li", "label": "๐ฑ๐ฎ Flag LI"},
{"value": "flag-lk", "label": "๐ฑ๐ฐ Flag LK"},
{"value": "flag-lr", "label": "๐ฑ๐ท Flag LR"},
{"value": "flag-ls", "label": "๐ฑ๐ธ Flag LS"},
{"value": "flag-lt", "label": "๐ฑ๐น Flag LT"},
{"value": "flag-lu", "label": "๐ฑ๐บ Flag LU"},
{"value": "flag-lv", "label": "๐ฑ๐ป Flag LV"},
{"value": "flag-ly", "label": "๐ฑ๐พ Flag LY"},
{"value": "flag-ma", "label": "๐ฒ๐ฆ Flag MA"},
{"value": "flag-mc", "label": "๐ฒ๐จ Flag MC"},
{"value": "flag-md", "label": "๐ฒ๐ฉ Flag MD"},
{"value": "flag-me", "label": "๐ฒ๐ช Flag ME"},
{"value": "flag-mf", "label": "๐ฒ๐ซ Flag MF"},
{"value": "flag-mg", "label": "๐ฒ๐ฌ Flag MG"},
{"value": "flag-mh", "label": "๐ฒ๐ญ Flag MH"},
{"value": "flag-mk", "label": "๐ฒ๐ฐ Flag MK"},
{"value": "flag-ml", "label": "๐ฒ๐ฑ Flag ML"},
{"value": "flag-mm", "label": "๐ฒ๐ฒ Flag MM"},
{"value": "flag-mn", "label": "๐ฒ๐ณ Flag MN"},
{"value": "flag-mo", "label": "๐ฒ๐ด Flag MO"},
{"value": "flag-mp", "label": "๐ฒ๐ต Flag MP"},
{"value": "flag-mq", "label": "๐ฒ๐ถ Flag MQ"},
{"value": "flag-mr", "label": "๐ฒ๐ท Flag MR"},
{"value": "flag-ms", "label": "๐ฒ๐ธ Flag MS"},
{"value": "flag-mt", "label": "๐ฒ๐น Flag MT"},
{"value": "flag-mu", "label": "๐ฒ๐บ Flag MU"},
{"value": "flag-mv", "label": "๐ฒ๐ป Flag MV"},
{"value": "flag-mw", "label": "๐ฒ๐ผ Flag MW"},
{"value": "flag-mx", "label": "๐ฒ๐ฝ Flag MX"},
{"value": "flag-my", "label": "๐ฒ๐พ Flag MY"},
{"value": "flag-mz", "label": "๐ฒ๐ฟ Flag MZ"},
{"value": "flag-na", "label": "๐ณ๐ฆ Flag NA"},
{"value": "flag-nc", "label": "๐ณ๐จ Flag NC"},
{"value": "flag-ne", "label": "๐ณ๐ช Flag NE"},
{"value": "flag-nf", "label": "๐ณ๐ซ Flag NF"},
{"value": "flag-ng", "label": "๐ณ๐ฌ Flag NG"},
{"value": "flag-ni", "label": "๐ณ๐ฎ Flag NI"},
{"value": "flag-nl", "label": "๐ณ๐ฑ Flag NL"},
{"value": "flag-no", "label": "๐ณ๐ด Flag NO"},
{"value": "flag-np", "label": "๐ณ๐ต Flag NP"},
{"value": "flag-nr", "label": "๐ณ๐ท Flag NR"},
{"value": "flag-nu", "label": "๐ณ๐บ Flag NU"},
{"value": "flag-nz", "label": "๐ณ๐ฟ Flag NZ"},
{"value": "flag-om", "label": "๐ด๐ฒ Flag OM"},
{"value": "flag-pa", "label": "๐ต๐ฆ Flag PA"},
{"value": "flag-pe", "label": "๐ต๐ช Flag PE"},
{"value": "flag-pf", "label": "๐ต๐ซ Flag PF"},
{"value": "flag-pg", "label": "๐ต๐ฌ Flag PG"},
{"value": "flag-ph", "label": "๐ต๐ญ Flag PH"},
{"value": "flag-pk", "label": "๐ต๐ฐ Flag PK"},
{"value": "flag-pl", "label": "๐ต๐ฑ Flag PL"},
{"value": "flag-pm", "label": "๐ต๐ฒ Flag PM"},
{"value": "flag-pn", "label": "๐ต๐ณ Flag PN"},
{"value": "flag-pr", "label": "๐ต๐ท Flag PR"},
{"value": "flag-ps", "label": "๐ต๐ธ Flag PS"},
{"value": "flag-pt", "label": "๐ต๐น Flag PT"},
{"value": "flag-pw", "label": "๐ต๐ผ Flag PW"},
{"value": "flag-py", "label": "๐ต๐พ Flag PY"},
{"value": "flag-qa", "label": "๐ถ๐ฆ Flag QA"},
{"value": "flag-re", "label": "๐ท๐ช Flag RE"},
{"value": "flag-ro", "label": "๐ท๐ด Flag RO"},
{"value": "flag-rs", "label": "๐ท๐ธ Flag RS"},
{"value": "flag-rw", "label": "๐ท๐ผ Flag RW"},
{"value": "flag-sa", "label": "๐ธ๐ฆ Flag SA"},
{"value": "flag-sb", "label": "๐ธ๐ง Flag SB"},
{"value": "flag-sc", "label": "๐ธ๐จ Flag SC"},
{"value": "flag-scotland", "label": "๐ด Flag Scotland"},
{"value": "flag-sd", "label": "๐ธ๐ฉ Flag SD"},
{"value": "flag-se", "label": "๐ธ๐ช Flag SE"},
{"value": "flag-sg", "label": "๐ธ๐ฌ Flag SG"},
{"value": "flag-sh", "label": "๐ธ๐ญ Flag SH"},
{"value": "flag-si", "label": "๐ธ๐ฎ Flag SI"},
{"value": "flag-sj", "label": "๐ธ๐ฏ Flag SJ"},
{"value": "flag-sk", "label": "๐ธ๐ฐ Flag SK"},
{"value": "flag-sl", "label": "๐ธ๐ฑ Flag SL"},
{"value": "flag-sm", "label": "๐ธ๐ฒ Flag SM"},
{"value": "flag-sn", "label": "๐ธ๐ณ Flag SN"},
{"value": "flag-so", "label": "๐ธ๐ด Flag SO"},
{"value": "flag-sr", "label": "๐ธ๐ท Flag SR"},
{"value": "flag-ss", "label": "๐ธ๐ธ Flag SS"},
{"value": "flag-st", "label": "๐ธ๐น Flag ST"},
{"value": "flag-sv", "label": "๐ธ๐ป Flag SV"},
{"value": "flag-sx", "label": "๐ธ๐ฝ Flag SX"},
{"value": "flag-sy", "label": "๐ธ๐พ Flag SY"},
{"value": "flag-sz", "label": "๐ธ๐ฟ Flag SZ"},
{"value": "flag-ta", "label": "๐น๐ฆ Flag TA"},
{"value": "flag-tc", "label": "๐น๐จ Flag TC"},
{"value": "flag-td", "label": "๐น๐ฉ Flag TD"},
{"value": "flag-tf", "label": "๐น๐ซ Flag TF"},
{"value": "flag-tg", "label": "๐น๐ฌ Flag TG"},
{"value": "flag-th", "label": "๐น๐ญ Flag TH"},
{"value": "flag-tj", "label": "๐น๐ฏ Flag TJ"},
{"value": "flag-tk", "label": "๐น๐ฐ Flag TK"},
{"value": "flag-tl", "label": "๐น๐ฑ Flag TL"},
{"value": "flag-tm", "label": "๐น๐ฒ Flag TM"},
{"value": "flag-tn", "label": "๐น๐ณ Flag TN"},
{"value": "flag-to", "label": "๐น๐ด Flag TO"},
{"value": "flag-tr", "label": "๐น๐ท Flag TR"},
{"value": "flag-tt", "label": "๐น๐น Flag TT"},
{"value": "flag-tv", "label": "๐น๐ป Flag TV"},
{"value": "flag-tw", "label": "๐น๐ผ Flag TW"},
{"value": "flag-tz", "label": "๐น๐ฟ Flag TZ"},
{"value": "flag-ua", "label": "๐บ๐ฆ Flag UA"},
{"value": "flag-ug", "label": "๐บ๐ฌ Flag UG"},
{"value": "flag-um", "label": "๐บ๐ฒ Flag UM"},
{"value": "flag-un", "label": "๐บ๐ณ Flag UN"},
{"value": "flag-uy", "label": "๐บ๐พ Flag UY"},
{"value": "flag-uz", "label": "๐บ๐ฟ Flag UZ"},
{"value": "flag-va", "label": "๐ป๐ฆ Flag VA"},
{"value": "flag-vc", "label": "๐ป๐จ Flag VC"},
{"value": "flag-ve", "label": "๐ป๐ช Flag VE"},
{"value": "flag-vg", "label": "๐ป๐ฌ Flag VG"},
{"value": "flag-vi", "label": "๐ป๐ฎ Flag VI"},
{"value": "flag-vn", "label": "๐ป๐ณ Flag VN"},
{"value": "flag-vu", "label": "๐ป๐บ Flag VU"},
{"value": "flag-wales", "label": "๐ด Flag Wales"},
{"value": "flag-wf", "label": "๐ผ๐ซ Flag WF"},
{"value": "flag-ws", "label": "๐ผ๐ธ Flag WS"},
{"value": "flag-xk", "label": "๐ฝ๐ฐ Flag XK"},
{"value": "flag-ye", "label": "๐พ๐ช Flag YE"},
{"value": "flag-yt", "label": "๐พ๐น Flag YT"},
{"value": "flag-za", "label": "๐ฟ๐ฆ Flag ZA"},
{"value": "flag-zm", "label": "๐ฟ๐ฒ Flag ZM"},
{"value": "flag-zw", "label": "๐ฟ๐ผ Flag ZW"},
{"value": "fr", "label": "๐ซ๐ท FR"},
{"value": "gb", "label": "๐ฌ๐ง GB"},
{"value": "it", "label": "๐ฎ๐น IT"},
{"value": "jp", "label": "๐ฏ๐ต JP"},
{"value": "kr", "label": "๐ฐ๐ท KR"},
{"value": "pirate_flag", "label": "๐ดโโ ๏ธ Pirate Flag"},
{"value": "rainbow-flag", "label": "๐ณ๏ธโ๐ Rainbow Flag"},
{"value": "ru", "label": "๐ท๐บ RU"},
{"value": "transgender_flag", "label": "๐ณ๏ธโโง๏ธ Transgender Flag"},
{"value": "triangular_flag_on_post", "label": "๐ฉ Triangular Flag on Post"},
{"value": "us", "label": "๐บ๐ธ US"},
{"value": "waving_black_flag", "label": "๐ด Waving Black Flag"},
{"value": "waving_white_flag", "label": "๐ณ๏ธ Waving White Flag"}
],
},
]
component = dmc.Grid(
children=[
dmc.GridCol(dmc.Paper(
html.Div(id="view-dem", style={'marginTop': '40px'}),
id="intro-wrapper-dem",
), span=6),
dmc.GridCol(dmc.Stack(
[
dmc.MultiSelect(
label="categories",
placeholder="Select all emoji categories you'd want displayed.",
id="dem-categories-multi-select",
value=['frequent', 'people', 'nature', 'foods', 'activity', 'places', 'objects', 'symbols', 'flags',
'custom'],
data=[
{"value": "frequent", "label": "Frequent"},
{"value": "people", "label": "People"},
{"value": "nature", "label": "Nature"},
{"value": "foods", "label": "Foods"},
{"value": "activity", "label": "Activity"},
{"value": "places", "label": "Places"},
{"value": "objects", "label": "Objects"},
{"value": "symbols", "label": "Symbols"},
{"value": "flags", "label": "Flags"},
{"value": "custom", "label": "Custom"},
],
mb=10,
searchable=True,
),
dmc.Select(
label="Select Set (doesn't fully work yet)",
placeholder="Select one",
id="dem-text-set",
value="native",
data=[
{"value": "native", "label": "native"},
{"value": "apple", "label": "apple"},
{"value": "google", "label": "google"},
{"value": "twitter", "label": "twitter"},
{"value": "facebook", "label": "facebook"},
],
),
dmc.Select(
label="Select theme",
placeholder="Select one",
id="dem-text-theme",
value="auto",
data=[
{"value": "auto", "label": "auto"},
{"value": "light", "label": "light"},
{"value": "dark", "label": "dark"},
],
),
dmc.NumberInput(id="dem-text-emojiButtonRadius", label="emojiButtonRadius", mb=10, value=100, min=0,
max=100, step=1),
dmc.NumberInput(id="dem-text-emojiButtonSize", label="emojiButtonSize", mb=10, value=36, min=0,
max=100, step=1),
dmc.NumberInput(id="dem-text-emojiSize", label="emojiSize", mb=10, value=24, min=0,
max=100, step=1),
dmc.NumberInput(id="dem-text-emojiVersion", label="emojiVersion", mb=10, value=24, min=0,
max=15, step=1),
dmc.MultiSelect(
label="exceptEmojis",
placeholder="Select all emoji's you'd want excluded.",
id="dem-exceptEmojis-multi-select",
value=["grinning", "bear"],
data=data_grouped,
mb=10,
searchable=True,
),
dmc.Select(
label="Select icons",
placeholder="Select one",
id="dem-text-icons",
value="auto",
data=[
{"value": "auto", "label": "auto"},
{"value": "outline", "label": "outline"},
{"value": "solid", "label": "solid"},
],
),
# en, ar, be, cs, de, es, fa, fi, fr, hi, it, ja, ko, nl, pl, pt, ru, sa, tr, uk, vi, zh
dmc.Select(
label="Select locale",
placeholder="Select one",
id="dem-text-locale",
value="en",
data=[
{"value": "en", "label": "en"},
{"value": "ar", "label": "ar"},
{"value": "be", "label": "be"},
{"value": "cs", "label": "cs"},
{"value": "de", "label": "de"},
{"value": "es", "label": "es"},
{"value": "fa", "label": "fa"},
{"value": "fi", "label": "fi"},
{"value": "fr", "label": "fr"},
{"value": "hi", "label": "hi"},
{"value": "it", "label": "it"},
{"value": "ja", "label": "ja"},
{"value": "ko", "label": "ko"},
{"value": "nl", "label": "nl"},
{"value": "pl", "label": "pl"},
{"value": "pt", "label": "pt"},
{"value": "ru", "label": "ru"},
{"value": "sa", "label": "sa"},
{"value": "tr", "label": "tr"},
{"value": "uk", "label": "uk"},
{"value": "vi", "label": "vi"},
{"value": "zh", "label": "zh"},
],
),
dmc.NumberInput(id="dem-maxFrequentRows", label="maxFrequentRows", mb=10, value=24, min=0, max=10, step=1),
dmc.Select(
label="Select navPosition",
placeholder="Select one",
id="dem-text-navPosition",
value="top",
data=[
{"value": "top", "label": "top"},
{"value": "bottom", "label": "bottom"},
{"value": "none", "label": "none"},
],
),
# dynamicWidth
dmc.Checkbox(
id="checkbox-dynamicWidth", label="dynamicWidth", checked=False, mb=10
),
dmc.Checkbox(
id="checkbox-noCountryFlags", label="noCountryFlags", checked=False, mb=10
),
dmc.NumberInput(id="dem-perLine", label="perLine", mb=10, value=9, min=0, max=20,
step=1),
dmc.Select(
label="Select previewEmoji",
placeholder="Select one",
id="dem-text-previewEmoji",
value="point_up",
data=data_grouped,
searchable=True,
),
dmc.Select(
label="Select previewPosition",
placeholder="Select one",
id="dem-text-previewPosition",
value="bottom",
data=[
{"value": "top", "label": "top"},
{"value": "bottom", "label": "bottom"},
{"value": "none", "label": "none"},
],
),
# searchPosition sticky, static, none
dmc.Select(
label="Select searchPosition",
placeholder="Select one",
id="dem-text-searchPosition",
value="sticky",
data=[
{"value": "sticky", "label": "sticky"},
{"value": "static", "label": "static"},
{"value": "none", "label": "none"},
],
),
dmc.NumberInput(id="dem-skin", label="skin", mb=10, value=1, min=1, max=6,
step=1),
# preview, search, none
dmc.Select(
label="Select skinTonePosition",
placeholder="Select one",
id="dem-text-skinTonePosition",
value="preview",
data=[
{"value": "preview", "label": "preview"},
{"value": "search", "label": "search"},
{"value": "none", "label": "none"},
],
),
],
style={'overflow-y': 'auto', 'max-height': '500px', 'width': '25vw'},
), span=6),
],
grow=True
)
@callback(
Output("view-dem", "children"),
Input("dem-categories-multi-select", "value"),
Input("dem-text-set", "value"),
Input("dem-text-theme", "value"),
Input("dem-text-emojiButtonRadius", "value"),
Input("dem-text-emojiButtonSize", "value"),
Input("dem-text-emojiSize", "value"),
Input("dem-text-emojiVersion", "value"),
Input("dem-exceptEmojis-multi-select", "value"),
Input("dem-text-icons", "value"),
Input("dem-text-locale", "value"),
Input("dem-maxFrequentRows", "value"),
Input("dem-text-navPosition", "value"),
Input("checkbox-dynamicWidth", "checked"),
Input("checkbox-noCountryFlags", "checked"),
Input("dem-perLine", "value"),
Input("dem-text-previewEmoji", "value"),
Input("dem-text-previewPosition", "value"),
Input("dem-text-searchPosition", "value"),
Input("dem-skin", "value"),
)
def update_output(categories, set, theme, emojiButtonRadius, emojiButtonSize, emojiSize, emojiVersion, exceptEmojis, icons, locale, maxFrequentRows, navPosition, dynamicWidth, noCountryFlags, perLine, previewEmoji, previewPosition, searchPosition, skin):
return dmc.Center(DashEmojiMart(
id=f"emoji-mart-example-{set}-{theme}-{emojiButtonRadius}-{emojiButtonSize}-{emojiSize}-{emojiVersion}-{icons}-{locale}-{maxFrequentRows}-{navPosition}-{dynamicWidth}-{noCountryFlags}-{perLine}-{previewPosition}-{searchPosition}-{skin}",
categories=categories,
set=set,
theme=theme,
emojiButtonRadius=f"{emojiButtonRadius}%",
emojiButtonSize=emojiButtonSize,
emojiSize=emojiSize,
emojiVersion=emojiVersion,
exceptEmojis=exceptEmojis,
icons=icons,
locale=locale,
maxFrequentRows=maxFrequentRows,
navPosition=navPosition,
dynamicWidth=dynamicWidth,
noCountryFlags=noCountryFlags,
perLine=perLine,
previewEmoji=previewEmoji,
previewPosition=previewPosition,
searchPosition=searchPosition,
skin=skin,
))
```
---
### Themes and Appearance
The emoji picker supports three theme modes that integrate seamlessly with your application's design.
**Theme Options:**
- **`auto`**: Automatically matches system preference (light/dark mode)
- **`light`**: Forces light theme regardless of system settings
- **`dark`**: Forces dark theme regardless of system settings
**Customizing Appearance:**
```python
DashEmojiMart(
id='custom-styled-picker',
theme='dark',
emojiButtonRadius='8px', # Border radius for emoji buttons
emojiButtonSize=40, # Size of emoji buttons in pixels
emojiSize=28, # Size of emojis within buttons
emojiButtonColors=[ # Custom hover colors
'#FF6B6B',
'#4ECDC4',
'#45B7D1'
]
)
```
---
### Internationalization
The picker supports 20+ languages for the user interface. Change the locale to display category names, search placeholder, and other UI text in different languages.
**Supported Locales:**
`en`, `ar`, `be`, `cs`, `de`, `es`, `fa`, `fi`, `fr`, `hi`, `it`, `ja`, `ko`, `nl`, `pl`, `pt`, `ru`, `sa`, `tr`, `uk`, `vi`, `zh`
**Example:**
```python
DashEmojiMart(
id='emoji-picker-spanish',
locale='es',
)
```
---
### Emoji Sets
Choose from multiple emoji sets to match your application's style or target platform.
**Available Sets:**
- **`native`**: Uses system emojis (most performant, recommended)
- **`apple`**: Apple emoji style
- **`google`**: Google emoji style
- **`twitter`**: Twitter emoji style (Twemoji)
- **`facebook`**: Facebook emoji style
```python
DashEmojiMart(
id='emoji-picker-twitter',
set='twitter',
)
```
**Note:** Non-native sets rely on sprite sheets and may have slower initial load times.
---
### Categories and Filtering
Control which emoji categories are displayed and exclude specific emojis.
**Customizing Categories:**
```python
DashEmojiMart(
id='emoji-picker-filtered',
categories=['people', 'nature', 'foods'], # Only show these categories
exceptEmojis=['eggplant', 'peach'], # Exclude specific emojis
maxFrequentRows=2, # Limit frequently used emojis
)
```
**Available Categories:**
`frequent`, `people`, `nature`, `foods`, `activity`, `places`, `objects`, `symbols`, `flags`
The order of categories in the array determines their display order.
---
### Layout Configuration
Customize the picker's layout including navigation position, preview position, and search bar placement.
```python
DashEmojiMart(
id='emoji-picker-layout',
navPosition='bottom', # 'top', 'bottom', 'none'
previewPosition='top', # 'top', 'bottom', 'none'
searchPosition='static', # 'sticky', 'static', 'none'
perLine=12, # Emojis per row
dynamicWidth=True, # Calculate perLine based on container width
)
```
---
### Component Properties
| Property | Type | Default | Description |
| :-------------------- | :---------------------------------- | :----------------------------------------- |:----------------------------------------------------------------------------------------------------------------|
| **`id`** | `string` | **Required** | Unique identifier for the component used in Dash callbacks. |
| `data` | `dict` | `{}` | Custom emoji data object to use for the picker. |
| `i18n` | `dict` | `{}` | Localization data object for custom translations. |
| `categories` | `list` | `[]` | Categories to show in the picker. Order is respected. Options: frequent, people, nature, foods, activity, places, objects, symbols, flags. |
| `custom` | `list` | `[]` | Array of custom emoji category objects. |
| `onEmojiSelect` | `func` | `None` | Callback function when an emoji is selected. |
| `onClickOutside` | `func` | `None` | Callback function when a click outside the picker occurs. |
| `onAddCustomEmoji` | `func` | `None` | Callback when Add custom emoji button is clicked. Button only displays if this callback is provided. |
| `autoFocus` | `bool` | `False` | If true, automatically focuses the search input on mount. |
| `categoryIcons` | `dict` | `{}` | Custom category icons object with category names as keys and icon definitions (svg or src) as values. |
| `dynamicWidth` | `bool` | `False` | If true, calculates perLine dynamically based on container width. When enabled, perLine is ignored. |
| `emojiButtonColors` | `list` | `[]` | Array of CSS colors for emoji button hover backgrounds (e.g., #f00, pink, rgba(155,223,88,.7)). |
| `emojiButtonRadius` | `string` | `'100%'` | Border radius of emoji buttons. Accepts CSS values (e.g., 6px, 1em, 100%). |
| `emojiButtonSize` | `number` | `36` | Size of emoji buttons in pixels. |
| `emojiSize` | `number` | `24` | Size of emojis (inside buttons) in pixels. |
| `emojiVersion` | `number` | `14` | Emoji data version to use. Options: 1, 2, 3, 4, 5, 11, 12, 12.1, 13, 13.1, 14. |
| `exceptEmojis` | `list` | `[]` | Array of emoji IDs to exclude from the picker. |
| `icons` | `'auto'`, `'outline'`, `'solid'` | `'auto'` | Icon style for the picker. Auto uses outline with light theme and solid with dark theme. |
| `locale` | `string` | `'en'` | Locale for UI text. Options: en, ar, be, cs, de, es, fa, fi, fr, hi, it, ja, ko, nl, pl, pt, ru, sa, tr, uk, vi, zh. |
| `maxFrequentRows` | `number` | `4` | Maximum number of frequently used emoji rows to show. Set to 0 to disable frequent category. |
| `navPosition` | `'top'`, `'bottom'`, `'none'` | `'top'` | Position of the category navigation bar. |
| `noCountryFlags` | `bool` | `False` | If true, hides country flag emojis. Automatically handled on Windows (which doesn't support flags). |
| `noResultsEmoji` | `string` | `'cry'` | Emoji ID to display when search returns no results. |
| `perLine` | `number` | `9` | Number of emojis to display per line. |
| `previewEmoji` | `string` | `'point_up'` | Emoji ID to show in preview when not hovering. Defaults to point_up (bottom) or point_down (top). |
| `previewPosition` | `'top'`, `'bottom'`, `'none'` | `'bottom'` | Position of the emoji preview section. |
| `searchPosition` | `'sticky'`, `'static'`, `'none'` | `'sticky'` | Position of the search input. Sticky keeps it visible while scrolling. |
| `set` | `'native'`, `'apple'`, `'facebook'`, `'google'`, `'twitter'` | `'native'` | Emoji set to use. Native is most performant, others use sprite sheets. |
| `skin` | `number` | `1` | Default skin tone for emojis. Range: 1-6. |
| `skinTonePosition` | `'preview'`, `'search'`, `'none'` | `'preview'` | Position of the skin tone selector. |
| `theme` | `'auto'`, `'light'`, `'dark'` | `'auto'` | Color theme of the picker. Auto matches system preference. |
| `getSpritesheetURL` | `func` | `None` | Function that returns the sprite sheet URL for non-native emoji sets. |
| `value` | `dict` | (read-only) | Selected emoji data object returned via callbacks. |
| `setProps` | `func` | (Dash Internal) | Callback function to update component properties. |
| `loading_state` | `object` | (Dash Internal) | Object describing the loading state of the component or its props. |
---
### Contributing
Contributions to dash-emoji-mart are welcome! Please refer to the project's issues on GitHub for any feature requests or bug reports.
### License
This project is licensed under the MIT License.
---
*Source: /pip/dash_emoji_mart*
*Generated with dash-improve-my-llms*