# 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*