From eeb3f967b6ee6ad88e40db35b66452ba55733766 Mon Sep 17 00:00:00 2001 From: Patrik Svensson Date: Fri, 18 Sep 2020 01:58:55 +0200 Subject: [PATCH] Update emoji support * Add constants for emojis * Move emoji shortcode rendering to Markup * Add documentation * Add example * Add tests --- .github/workflows/ci.yaml | 1 + docs/Docs.csproj | 12 + docs/Program.cs | 1 + docs/input/_layout.cshtml | 18 +- docs/input/appendix/emojis.md | 38 + docs/input/appendix/index.md | 9 +- docs/input/markup.md | 13 +- docs/src/Constants.cs | 8 +- docs/src/Data/emojis.json | 7946 +++++++++++ docs/src/Extensions/DocumentExtensions.cs | 7 +- docs/src/Models/Emoji.cs | 20 + docs/src/Modules/ReadEmbedded.cs | 41 + docs/src/Pipelines/ColorsPipeline.cs | 9 +- docs/src/Pipelines/EmojiPipeline.cs | 34 + docs/src/Shortcodes/ColorTableShortcode.cs | 3 +- docs/src/Shortcodes/EmojiTableShortcode.cs | 45 + examples/Emojis/Emojis.csproj | 14 + examples/Emojis/Program.cs | 17 + examples/Info/Program.cs | 4 +- resources/scripts/Generate-Emoji.ps1 | 6 +- .../Commands/ColorGeneratorCommand.cs | 3 + .../Commands/EmojiGeneratorCommand.cs | 52 +- resources/scripts/Generator/Generator.csproj | 4 + resources/scripts/Generator/Models/Emoji.cs | 39 +- .../Templates/Color.Generated.template | 2 +- .../Templates/ColorPalette.Generated.template | 2 +- .../Templates/ColorTable.Generated.template | 2 +- .../Templates/Emoji.Generated.template | 24 +- .../Generator/Templates/Emoji.Json.template | 10 + src/Spectre.Console.Tests/Unit/EmojiTests.cs | 44 + src/Spectre.Console.sln | 15 + src/Spectre.Console/Color.Generated.cs | 2 +- src/Spectre.Console/Emoji.Generated.cs | 11097 +++++++++++++--- src/Spectre.Console/Emoji.cs | 4 +- .../Internal/Colors/ColorPalette.Generated.cs | 2 +- .../Internal/Colors/ColorTable.Generated.cs | 2 +- .../Internal/Text/Markup/MarkupParser.cs | 6 + src/Spectre.Console/Rendering/Segment.cs | 2 +- 38 files changed, 17680 insertions(+), 1878 deletions(-) create mode 100644 docs/input/appendix/emojis.md create mode 100644 docs/src/Data/emojis.json create mode 100644 docs/src/Models/Emoji.cs create mode 100644 docs/src/Modules/ReadEmbedded.cs create mode 100644 docs/src/Pipelines/EmojiPipeline.cs create mode 100644 docs/src/Shortcodes/EmojiTableShortcode.cs create mode 100644 examples/Emojis/Emojis.csproj create mode 100644 examples/Emojis/Program.cs create mode 100644 resources/scripts/Generator/Templates/Emoji.Json.template create mode 100644 src/Spectre.Console.Tests/Unit/EmojiTests.cs diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9ac07be..c4edf31 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -69,6 +69,7 @@ jobs: dotnet example grid dotnet example panel dotnet example colors + dotnet example emojis - name: Build shell: bash diff --git a/docs/Docs.csproj b/docs/Docs.csproj index 1b66fd5..655558d 100644 --- a/docs/Docs.csproj +++ b/docs/Docs.csproj @@ -22,11 +22,23 @@ + + + + + + + + + + + + preview diff --git a/docs/Program.cs b/docs/Program.cs index 0748e53..c48b1bb 100644 --- a/docs/Program.cs +++ b/docs/Program.cs @@ -19,6 +19,7 @@ namespace Docs .ConfigureDeployment(deployBranch: "docs") .AddShortcode("Children", typeof(ChildrenShortcode)) .AddShortcode("ColorTable", typeof(ColorTableShortcode)) + .AddShortcode("EmojiTable", typeof(EmojiTableShortcode)) .AddPipelines() .RunAsync(); diff --git a/docs/input/_layout.cshtml b/docs/input/_layout.cshtml index dc27748..0d50da9 100644 --- a/docs/input/_layout.cshtml +++ b/docs/input/_layout.cshtml @@ -128,14 +128,28 @@ { IDocument root = OutputPages["index.html"].First(); @foreach (IDocument document in OutputPages.GetChildrenOf(root).OnlyVisible()) { DocumentList documentChildren = OutputPages.GetChildrenOf(document); @if (documentChildren.OnlyVisible().Any()) diff --git a/docs/input/appendix/emojis.md b/docs/input/appendix/emojis.md new file mode 100644 index 0000000..9736348 --- /dev/null +++ b/docs/input/appendix/emojis.md @@ -0,0 +1,38 @@ +Title: Emojis +Order: 3 +--- + +Please note that what emojis that can be used is completely up to +the operating system and/or terminal you're using, and no guarantees +can be made of how it will look. Calculating the width of emojis +is also not an exact science in many ways, so milage might vary when +used in tables, panels or grids. + +To ensure best compatibility, consider only using emojis introduced +before Unicode 13.0 that belongs in the `Emoji_Presentation` category +in the official emoji list at +https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-data.txt + +# Usage + +```csharp +// Markup +AnsiConsole.MarkupLine("Hello :globe_showing_europe_africa:!"); + +// Constant +var hello = "Hello " + Emoji.Known.GlobeShowingEuropeAfrica; +``` + +# Replacing emojis in text + +```csharp +var phrase = "Mmmm :birthday_cake:"; +var rendered = Emoji.Replace(phrase); +``` + +# Emojis + +_The images in the table below might not render correctly in your +browser for the same reasons mentioned in the `Compatibility` section._ + + \ No newline at end of file diff --git a/docs/input/appendix/index.md b/docs/input/appendix/index.md index f7902e6..383ac6d 100644 --- a/docs/input/appendix/index.md +++ b/docs/input/appendix/index.md @@ -1,3 +1,10 @@ Title: Appendix Order: 10 ---- \ No newline at end of file +--- + +# Sections + +* [Styles](xref:styles) +* [Colors](xref:colors) +* [Borders](xref:borders) +* [Emojis](xref:emojis) \ No newline at end of file diff --git a/docs/input/markup.md b/docs/input/markup.md index acebe0b..acc8c1f 100644 --- a/docs/input/markup.md +++ b/docs/input/markup.md @@ -2,8 +2,7 @@ Title: Markup Order: 2 --- -In `Spectre.Console` there's a class called `Markup` that -allows you to output rich text to the console. +The class `Markup` allows you to output rich text to the console. # Syntax @@ -54,6 +53,16 @@ You can set the background color in markup by prefixing the color with [default on blue]World[/] ``` +# Rendering emojis + +To output an emoji as part of markup, you can use emoji shortcodes. + +```csharp +AnsiConsole.MarkupLine("Hello :globe_showing_europe_africa:!"); +``` + +For a list of emoji, see the [Emojis](xref:styles) appendix section. + # Colors For a list of colors, see the [Colors](xref:colors) appendix section. diff --git a/docs/src/Constants.cs b/docs/src/Constants.cs index 7c01610..087158e 100644 --- a/docs/src/Constants.cs +++ b/docs/src/Constants.cs @@ -1,14 +1,20 @@ -namespace Docs +namespace Docs { public static class Constants { public const string NoContainer = nameof(NoContainer); public const string NoSidebar = nameof(NoSidebar); + public const string NoLink = nameof(NoLink); public const string Topic = nameof(Topic); public const string EditLink = nameof(EditLink); public const string Description = nameof(Description); public const string Hidden = nameof(Hidden); + public static class Emojis + { + public const string Root = "EMOJIS_ROOT"; + } + public static class Colors { public const string Url = "https://raw.githubusercontent.com/spectresystems/spectre.console/main/resources/scripts/Generator/Data/colors.json"; diff --git a/docs/src/Data/emojis.json b/docs/src/Data/emojis.json new file mode 100644 index 0000000..8a3ee54 --- /dev/null +++ b/docs/src/Data/emojis.json @@ -0,0 +1,7946 @@ +[ + { + "id": "abacus", + "name": "Abacus", + "description": "Abacus", + "code": "U+0001F9EE" + }, + { + "id": "ab_button_blood_type", + "name": "AbButtonBloodType", + "description": "AB button blood type", + "code": "U+0001F18E" + }, + { + "id": "a_button_blood_type", + "name": "AButtonBloodType", + "description": "A button blood type", + "code": "U+0001F170" + }, + { + "id": "accordion", + "name": "Accordion", + "description": "Accordion", + "code": "U+0001FA97" + }, + { + "id": "adhesive_bandage", + "name": "AdhesiveBandage", + "description": "Adhesive bandage", + "code": "U+0001FA79" + }, + { + "id": "admission_tickets", + "name": "AdmissionTickets", + "description": "Admission tickets", + "code": "U+0001F39F" + }, + { + "id": "aerial_tramway", + "name": "AerialTramway", + "description": "Aerial tramway", + "code": "U+0001F6A1" + }, + { + "id": "airplane", + "name": "Airplane", + "description": "Airplane", + "code": "U+00002708" + }, + { + "id": "airplane_arrival", + "name": "AirplaneArrival", + "description": "Airplane arrival", + "code": "U+0001F6EC" + }, + { + "id": "airplane_departure", + "name": "AirplaneDeparture", + "description": "Airplane departure", + "code": "U+0001F6EB" + }, + { + "id": "alarm_clock", + "name": "AlarmClock", + "description": "Alarm clock", + "code": "U+000023F0" + }, + { + "id": "alembic", + "name": "Alembic", + "description": "Alembic", + "code": "U+00002697" + }, + { + "id": "alien", + "name": "Alien", + "description": "Alien", + "code": "U+0001F47D" + }, + { + "id": "alien_monster", + "name": "AlienMonster", + "description": "Alien monster", + "code": "U+0001F47E" + }, + { + "id": "ambulance", + "name": "Ambulance", + "description": "Ambulance", + "code": "U+0001F691" + }, + { + "id": "american_football", + "name": "AmericanFootball", + "description": "American football", + "code": "U+0001F3C8" + }, + { + "id": "amphora", + "name": "Amphora", + "description": "Amphora", + "code": "U+0001F3FA" + }, + { + "id": "anatomical_heart", + "name": "AnatomicalHeart", + "description": "Anatomical heart", + "code": "U+0001FAC0" + }, + { + "id": "anchor", + "name": "Anchor", + "description": "Anchor", + "code": "U+00002693" + }, + { + "id": "anger_symbol", + "name": "AngerSymbol", + "description": "Anger symbol", + "code": "U+0001F4A2" + }, + { + "id": "angry_face", + "name": "AngryFace", + "description": "Angry face", + "code": "U+0001F620" + }, + { + "id": "angry_face_with_horns", + "name": "AngryFaceWithHorns", + "description": "Angry face with horns", + "code": "U+0001F47F" + }, + { + "id": "anguished_face", + "name": "AnguishedFace", + "description": "Anguished face", + "code": "U+0001F627" + }, + { + "id": "ant", + "name": "Ant", + "description": "Ant", + "code": "U+0001F41C" + }, + { + "id": "antenna_bars", + "name": "AntennaBars", + "description": "Antenna bars", + "code": "U+0001F4F6" + }, + { + "id": "anxious_face_with_sweat", + "name": "AnxiousFaceWithSweat", + "description": "Anxious face with sweat", + "code": "U+0001F630" + }, + { + "id": "aquarius", + "name": "Aquarius", + "description": "Aquarius", + "code": "U+00002652" + }, + { + "id": "aries", + "name": "Aries", + "description": "Aries", + "code": "U+00002648" + }, + { + "id": "articulated_lorry", + "name": "ArticulatedLorry", + "description": "Articulated lorry", + "code": "U+0001F69B" + }, + { + "id": "artist_palette", + "name": "ArtistPalette", + "description": "Artist palette", + "code": "U+0001F3A8" + }, + { + "id": "astonished_face", + "name": "AstonishedFace", + "description": "Astonished face", + "code": "U+0001F632" + }, + { + "id": "atm_sign", + "name": "AtmSign", + "description": "ATM sign", + "code": "U+0001F3E7" + }, + { + "id": "atom_symbol", + "name": "AtomSymbol", + "description": "Atom symbol", + "code": "U+0000269B" + }, + { + "id": "automobile", + "name": "Automobile", + "description": "Automobile", + "code": "U+0001F697" + }, + { + "id": "auto_rickshaw", + "name": "AutoRickshaw", + "description": "Auto rickshaw", + "code": "U+0001F6FA" + }, + { + "id": "avocado", + "name": "Avocado", + "description": "Avocado", + "code": "U+0001F951" + }, + { + "id": "axe", + "name": "Axe", + "description": "Axe", + "code": "U+0001FA93" + }, + { + "id": "baby", + "name": "Baby", + "description": "Baby", + "code": "U+0001F476" + }, + { + "id": "baby_angel", + "name": "BabyAngel", + "description": "Baby angel", + "code": "U+0001F47C" + }, + { + "id": "baby_bottle", + "name": "BabyBottle", + "description": "Baby bottle", + "code": "U+0001F37C" + }, + { + "id": "baby_chick", + "name": "BabyChick", + "description": "Baby chick", + "code": "U+0001F424" + }, + { + "id": "baby_symbol", + "name": "BabySymbol", + "description": "Baby symbol", + "code": "U+0001F6BC" + }, + { + "id": "back_arrow", + "name": "BackArrow", + "description": "BACK arrow", + "code": "U+0001F519" + }, + { + "id": "backhand_index_pointing_down", + "name": "BackhandIndexPointingDown", + "description": "Backhand index pointing down", + "code": "U+0001F447" + }, + { + "id": "backhand_index_pointing_left", + "name": "BackhandIndexPointingLeft", + "description": "Backhand index pointing left", + "code": "U+0001F448" + }, + { + "id": "backhand_index_pointing_right", + "name": "BackhandIndexPointingRight", + "description": "Backhand index pointing right", + "code": "U+0001F449" + }, + { + "id": "backhand_index_pointing_up", + "name": "BackhandIndexPointingUp", + "description": "Backhand index pointing up", + "code": "U+0001F446" + }, + { + "id": "backpack", + "name": "Backpack", + "description": "Backpack", + "code": "U+0001F392" + }, + { + "id": "bacon", + "name": "Bacon", + "description": "Bacon", + "code": "U+0001F953" + }, + { + "id": "badger", + "name": "Badger", + "description": "Badger", + "code": "U+0001F9A1" + }, + { + "id": "badminton", + "name": "Badminton", + "description": "Badminton", + "code": "U+0001F3F8" + }, + { + "id": "bagel", + "name": "Bagel", + "description": "Bagel", + "code": "U+0001F96F" + }, + { + "id": "baggage_claim", + "name": "BaggageClaim", + "description": "Baggage claim", + "code": "U+0001F6C4" + }, + { + "id": "baguette_bread", + "name": "BaguetteBread", + "description": "Baguette bread", + "code": "U+0001F956" + }, + { + "id": "balance_scale", + "name": "BalanceScale", + "description": "Balance scale", + "code": "U+00002696" + }, + { + "id": "bald", + "name": "Bald", + "description": "Bald", + "code": "U+0001F9B2" + }, + { + "id": "ballet_shoes", + "name": "BalletShoes", + "description": "Ballet shoes", + "code": "U+0001FA70" + }, + { + "id": "balloon", + "name": "Balloon", + "description": "Balloon", + "code": "U+0001F388" + }, + { + "id": "ballot_box_with_ballot", + "name": "BallotBoxWithBallot", + "description": "Ballot box with ballot", + "code": "U+0001F5F3" + }, + { + "id": "banana", + "name": "Banana", + "description": "Banana", + "code": "U+0001F34C" + }, + { + "id": "banjo", + "name": "Banjo", + "description": "Banjo", + "code": "U+0001FA95" + }, + { + "id": "bank", + "name": "Bank", + "description": "Bank", + "code": "U+0001F3E6" + }, + { + "id": "barber_pole", + "name": "BarberPole", + "description": "Barber pole", + "code": "U+0001F488" + }, + { + "id": "bar_chart", + "name": "BarChart", + "description": "Bar chart", + "code": "U+0001F4CA" + }, + { + "id": "baseball", + "name": "Baseball", + "description": "Baseball", + "code": "U+000026BE" + }, + { + "id": "basket", + "name": "Basket", + "description": "Basket", + "code": "U+0001F9FA" + }, + { + "id": "basketball", + "name": "Basketball", + "description": "Basketball", + "code": "U+0001F3C0" + }, + { + "id": "bat", + "name": "Bat", + "description": "Bat", + "code": "U+0001F987" + }, + { + "id": "bathtub", + "name": "Bathtub", + "description": "Bathtub", + "code": "U+0001F6C1" + }, + { + "id": "battery", + "name": "Battery", + "description": "Battery", + "code": "U+0001F50B" + }, + { + "id": "b_button_blood_type", + "name": "BButtonBloodType", + "description": "B button blood type", + "code": "U+0001F171" + }, + { + "id": "beach_with_umbrella", + "name": "BeachWithUmbrella", + "description": "Beach with umbrella", + "code": "U+0001F3D6" + }, + { + "id": "beaming_face_with_smiling_eyes", + "name": "BeamingFaceWithSmilingEyes", + "description": "Beaming face with smiling eyes", + "code": "U+0001F601" + }, + { + "id": "bear", + "name": "Bear", + "description": "Bear", + "code": "U+0001F43B" + }, + { + "id": "beating_heart", + "name": "BeatingHeart", + "description": "Beating heart", + "code": "U+0001F493" + }, + { + "id": "beaver", + "name": "Beaver", + "description": "Beaver", + "code": "U+0001F9AB" + }, + { + "id": "bed", + "name": "Bed", + "description": "Bed", + "code": "U+0001F6CF" + }, + { + "id": "beer_mug", + "name": "BeerMug", + "description": "Beer mug", + "code": "U+0001F37A" + }, + { + "id": "beetle", + "name": "Beetle", + "description": "Beetle", + "code": "U+0001FAB2" + }, + { + "id": "bell", + "name": "Bell", + "description": "Bell", + "code": "U+0001F514" + }, + { + "id": "bellhop_bell", + "name": "BellhopBell", + "description": "Bellhop bell", + "code": "U+0001F6CE" + }, + { + "id": "bell_pepper", + "name": "BellPepper", + "description": "Bell pepper", + "code": "U+0001FAD1" + }, + { + "id": "bell_with_slash", + "name": "BellWithSlash", + "description": "Bell with slash", + "code": "U+0001F515" + }, + { + "id": "bento_box", + "name": "BentoBox", + "description": "Bento box", + "code": "U+0001F371" + }, + { + "id": "beverage_box", + "name": "BeverageBox", + "description": "Beverage box", + "code": "U+0001F9C3" + }, + { + "id": "bicycle", + "name": "Bicycle", + "description": "Bicycle", + "code": "U+0001F6B2" + }, + { + "id": "bikini", + "name": "Bikini", + "description": "Bikini", + "code": "U+0001F459" + }, + { + "id": "billed_cap", + "name": "BilledCap", + "description": "Billed cap", + "code": "U+0001F9E2" + }, + { + "id": "biohazard", + "name": "Biohazard", + "description": "Biohazard", + "code": "U+00002623" + }, + { + "id": "bird", + "name": "Bird", + "description": "Bird", + "code": "U+0001F426" + }, + { + "id": "birthday_cake", + "name": "BirthdayCake", + "description": "Birthday cake", + "code": "U+0001F382" + }, + { + "id": "bison", + "name": "Bison", + "description": "Bison", + "code": "U+0001F9AC" + }, + { + "id": "black_circle", + "name": "BlackCircle", + "description": "Black circle", + "code": "U+000026AB" + }, + { + "id": "black_flag", + "name": "BlackFlag", + "description": "Black flag", + "code": "U+0001F3F4" + }, + { + "id": "black_heart", + "name": "BlackHeart", + "description": "Black heart", + "code": "U+0001F5A4" + }, + { + "id": "black_large_square", + "name": "BlackLargeSquare", + "description": "Black large square", + "code": "U+00002B1B" + }, + { + "id": "black_medium_small_square", + "name": "BlackMediumSmallSquare", + "description": "black medium small square", + "code": "U+000025FE" + }, + { + "id": "black_medium_square", + "name": "BlackMediumSquare", + "description": "Black medium square", + "code": "U+000025FC" + }, + { + "id": "black_nib", + "name": "BlackNib", + "description": "Black nib", + "code": "U+00002712" + }, + { + "id": "black_small_square", + "name": "BlackSmallSquare", + "description": "Black small square", + "code": "U+000025AA" + }, + { + "id": "black_square_button", + "name": "BlackSquareButton", + "description": "Black square button", + "code": "U+0001F532" + }, + { + "id": "blossom", + "name": "Blossom", + "description": "Blossom", + "code": "U+0001F33C" + }, + { + "id": "blowfish", + "name": "Blowfish", + "description": "Blowfish", + "code": "U+0001F421" + }, + { + "id": "blueberries", + "name": "Blueberries", + "description": "Blueberries", + "code": "U+0001FAD0" + }, + { + "id": "blue_book", + "name": "BlueBook", + "description": "Blue book", + "code": "U+0001F4D8" + }, + { + "id": "blue_circle", + "name": "BlueCircle", + "description": "Blue circle", + "code": "U+0001F535" + }, + { + "id": "blue_heart", + "name": "BlueHeart", + "description": "Blue heart", + "code": "U+0001F499" + }, + { + "id": "blue_square", + "name": "BlueSquare", + "description": "Blue square", + "code": "U+0001F7E6" + }, + { + "id": "boar", + "name": "Boar", + "description": "Boar", + "code": "U+0001F417" + }, + { + "id": "bomb", + "name": "Bomb", + "description": "Bomb", + "code": "U+0001F4A3" + }, + { + "id": "bone", + "name": "Bone", + "description": "Bone", + "code": "U+0001F9B4" + }, + { + "id": "bookmark", + "name": "Bookmark", + "description": "Bookmark", + "code": "U+0001F516" + }, + { + "id": "bookmark_tabs", + "name": "BookmarkTabs", + "description": "Bookmark tabs", + "code": "U+0001F4D1" + }, + { + "id": "books", + "name": "Books", + "description": "Books", + "code": "U+0001F4DA" + }, + { + "id": "boomerang", + "name": "Boomerang", + "description": "Boomerang", + "code": "U+0001FA83" + }, + { + "id": "bottle_with_popping_cork", + "name": "BottleWithPoppingCork", + "description": "Bottle with popping cork", + "code": "U+0001F37E" + }, + { + "id": "bouquet", + "name": "Bouquet", + "description": "Bouquet", + "code": "U+0001F490" + }, + { + "id": "bow_and_arrow", + "name": "BowAndArrow", + "description": "Bow and arrow", + "code": "U+0001F3F9" + }, + { + "id": "bowling", + "name": "Bowling", + "description": "Bowling", + "code": "U+0001F3B3" + }, + { + "id": "bowl_with_spoon", + "name": "BowlWithSpoon", + "description": "Bowl with spoon", + "code": "U+0001F963" + }, + { + "id": "boxing_glove", + "name": "BoxingGlove", + "description": "Boxing glove", + "code": "U+0001F94A" + }, + { + "id": "boy", + "name": "Boy", + "description": "Boy", + "code": "U+0001F466" + }, + { + "id": "brain", + "name": "Brain", + "description": "Brain", + "code": "U+0001F9E0" + }, + { + "id": "bread", + "name": "Bread", + "description": "Bread", + "code": "U+0001F35E" + }, + { + "id": "breast_feeding", + "name": "BreastFeeding", + "description": "breast feeding", + "code": "U+0001F931" + }, + { + "id": "brick", + "name": "Brick", + "description": "Brick", + "code": "U+0001F9F1" + }, + { + "id": "bridge_at_night", + "name": "BridgeAtNight", + "description": "Bridge at night", + "code": "U+0001F309" + }, + { + "id": "briefcase", + "name": "Briefcase", + "description": "Briefcase", + "code": "U+0001F4BC" + }, + { + "id": "briefs", + "name": "Briefs", + "description": "Briefs", + "code": "U+0001FA72" + }, + { + "id": "bright_button", + "name": "BrightButton", + "description": "Bright button", + "code": "U+0001F506" + }, + { + "id": "broccoli", + "name": "Broccoli", + "description": "Broccoli", + "code": "U+0001F966" + }, + { + "id": "broken_heart", + "name": "BrokenHeart", + "description": "Broken heart", + "code": "U+0001F494" + }, + { + "id": "broom", + "name": "Broom", + "description": "Broom", + "code": "U+0001F9F9" + }, + { + "id": "brown_circle", + "name": "BrownCircle", + "description": "Brown circle", + "code": "U+0001F7E4" + }, + { + "id": "brown_heart", + "name": "BrownHeart", + "description": "Brown heart", + "code": "U+0001F90E" + }, + { + "id": "brown_square", + "name": "BrownSquare", + "description": "Brown square", + "code": "U+0001F7EB" + }, + { + "id": "bubble_tea", + "name": "BubbleTea", + "description": "Bubble tea", + "code": "U+0001F9CB" + }, + { + "id": "bucket", + "name": "Bucket", + "description": "Bucket", + "code": "U+0001FAA3" + }, + { + "id": "bug", + "name": "Bug", + "description": "Bug", + "code": "U+0001F41B" + }, + { + "id": "building_construction", + "name": "BuildingConstruction", + "description": "Building construction", + "code": "U+0001F3D7" + }, + { + "id": "bullet_train", + "name": "BulletTrain", + "description": "Bullet train", + "code": "U+0001F685" + }, + { + "id": "bullseye", + "name": "Bullseye", + "description": "Bullseye", + "code": "U+0001F3AF" + }, + { + "id": "burrito", + "name": "Burrito", + "description": "Burrito", + "code": "U+0001F32F" + }, + { + "id": "bus", + "name": "Bus", + "description": "Bus", + "code": "U+0001F68C" + }, + { + "id": "bus_stop", + "name": "BusStop", + "description": "Bus stop", + "code": "U+0001F68F" + }, + { + "id": "bust_in_silhouette", + "name": "BustInSilhouette", + "description": "Bust in silhouette", + "code": "U+0001F464" + }, + { + "id": "busts_in_silhouette", + "name": "BustsInSilhouette", + "description": "Busts in silhouette", + "code": "U+0001F465" + }, + { + "id": "butter", + "name": "Butter", + "description": "Butter", + "code": "U+0001F9C8" + }, + { + "id": "butterfly", + "name": "Butterfly", + "description": "Butterfly", + "code": "U+0001F98B" + }, + { + "id": "cactus", + "name": "Cactus", + "description": "Cactus", + "code": "U+0001F335" + }, + { + "id": "calendar", + "name": "Calendar", + "description": "Calendar", + "code": "U+0001F4C5" + }, + { + "id": "call_me_hand", + "name": "CallMeHand", + "description": "Call me hand", + "code": "U+0001F919" + }, + { + "id": "camel", + "name": "Camel", + "description": "Camel", + "code": "U+0001F42A" + }, + { + "id": "camera", + "name": "Camera", + "description": "Camera", + "code": "U+0001F4F7" + }, + { + "id": "camera_with_flash", + "name": "CameraWithFlash", + "description": "Camera with flash", + "code": "U+0001F4F8" + }, + { + "id": "camping", + "name": "Camping", + "description": "Camping", + "code": "U+0001F3D5" + }, + { + "id": "cancer", + "name": "Cancer", + "description": "Cancer", + "code": "U+0000264B" + }, + { + "id": "candle", + "name": "Candle", + "description": "Candle", + "code": "U+0001F56F" + }, + { + "id": "candy", + "name": "Candy", + "description": "Candy", + "code": "U+0001F36C" + }, + { + "id": "canned_food", + "name": "CannedFood", + "description": "Canned food", + "code": "U+0001F96B" + }, + { + "id": "canoe", + "name": "Canoe", + "description": "Canoe", + "code": "U+0001F6F6" + }, + { + "id": "capricorn", + "name": "Capricorn", + "description": "Capricorn", + "code": "U+00002651" + }, + { + "id": "card_file_box", + "name": "CardFileBox", + "description": "Card file box", + "code": "U+0001F5C3" + }, + { + "id": "card_index", + "name": "CardIndex", + "description": "Card index", + "code": "U+0001F4C7" + }, + { + "id": "card_index_dividers", + "name": "CardIndexDividers", + "description": "Card index dividers", + "code": "U+0001F5C2" + }, + { + "id": "carousel_horse", + "name": "CarouselHorse", + "description": "Carousel horse", + "code": "U+0001F3A0" + }, + { + "id": "carpentry_saw", + "name": "CarpentrySaw", + "description": "Carpentry saw", + "code": "U+0001FA9A" + }, + { + "id": "carp_streamer", + "name": "CarpStreamer", + "description": "Carp streamer", + "code": "U+0001F38F" + }, + { + "id": "carrot", + "name": "Carrot", + "description": "Carrot", + "code": "U+0001F955" + }, + { + "id": "castle", + "name": "Castle", + "description": "Castle", + "code": "U+0001F3F0" + }, + { + "id": "cat", + "name": "Cat", + "description": "Cat", + "code": "U+0001F408" + }, + { + "id": "cat_face", + "name": "CatFace", + "description": "Cat face", + "code": "U+0001F431" + }, + { + "id": "cat_with_tears_of_joy", + "name": "CatWithTearsOfJoy", + "description": "Cat with tears of joy", + "code": "U+0001F639" + }, + { + "id": "cat_with_wry_smile", + "name": "CatWithWrySmile", + "description": "Cat with wry smile", + "code": "U+0001F63C" + }, + { + "id": "chains", + "name": "Chains", + "description": "Chains", + "code": "U+000026D3" + }, + { + "id": "chair", + "name": "Chair", + "description": "Chair", + "code": "U+0001FA91" + }, + { + "id": "chart_decreasing", + "name": "ChartDecreasing", + "description": "Chart decreasing", + "code": "U+0001F4C9" + }, + { + "id": "chart_increasing", + "name": "ChartIncreasing", + "description": "Chart increasing", + "code": "U+0001F4C8" + }, + { + "id": "chart_increasing_with_yen", + "name": "ChartIncreasingWithYen", + "description": "Chart increasing with yen", + "code": "U+0001F4B9" + }, + { + "id": "check_box_with_check", + "name": "CheckBoxWithCheck", + "description": "Check box with check", + "code": "U+00002611" + }, + { + "id": "check_mark", + "name": "CheckMark", + "description": "Check mark", + "code": "U+00002714" + }, + { + "id": "check_mark_button", + "name": "CheckMarkButton", + "description": "Check mark button", + "code": "U+00002705" + }, + { + "id": "cheese_wedge", + "name": "CheeseWedge", + "description": "Cheese wedge", + "code": "U+0001F9C0" + }, + { + "id": "chequered_flag", + "name": "ChequeredFlag", + "description": "Chequered flag", + "code": "U+0001F3C1" + }, + { + "id": "cherries", + "name": "Cherries", + "description": "Cherries", + "code": "U+0001F352" + }, + { + "id": "cherry_blossom", + "name": "CherryBlossom", + "description": "Cherry blossom", + "code": "U+0001F338" + }, + { + "id": "chess_pawn", + "name": "ChessPawn", + "description": "Chess pawn", + "code": "U+0000265F" + }, + { + "id": "chestnut", + "name": "Chestnut", + "description": "Chestnut", + "code": "U+0001F330" + }, + { + "id": "chicken", + "name": "Chicken", + "description": "Chicken", + "code": "U+0001F414" + }, + { + "id": "child", + "name": "Child", + "description": "Child", + "code": "U+0001F9D2" + }, + { + "id": "children_crossing", + "name": "ChildrenCrossing", + "description": "Children crossing", + "code": "U+0001F6B8" + }, + { + "id": "chipmunk", + "name": "Chipmunk", + "description": "Chipmunk", + "code": "U+0001F43F" + }, + { + "id": "chocolate_bar", + "name": "ChocolateBar", + "description": "Chocolate bar", + "code": "U+0001F36B" + }, + { + "id": "chopsticks", + "name": "Chopsticks", + "description": "Chopsticks", + "code": "U+0001F962" + }, + { + "id": "christmas_tree", + "name": "ChristmasTree", + "description": "Christmas tree", + "code": "U+0001F384" + }, + { + "id": "church", + "name": "Church", + "description": "Church", + "code": "U+000026EA" + }, + { + "id": "cigarette", + "name": "Cigarette", + "description": "Cigarette", + "code": "U+0001F6AC" + }, + { + "id": "cinema", + "name": "Cinema", + "description": "Cinema", + "code": "U+0001F3A6" + }, + { + "id": "circled_m", + "name": "CircledM", + "description": "Circled M", + "code": "U+000024C2" + }, + { + "id": "circus_tent", + "name": "CircusTent", + "description": "Circus tent", + "code": "U+0001F3AA" + }, + { + "id": "cityscape", + "name": "Cityscape", + "description": "Cityscape", + "code": "U+0001F3D9" + }, + { + "id": "cityscape_at_dusk", + "name": "CityscapeAtDusk", + "description": "Cityscape at dusk", + "code": "U+0001F306" + }, + { + "id": "clamp", + "name": "Clamp", + "description": "Clamp", + "code": "U+0001F5DC" + }, + { + "id": "clapper_board", + "name": "ClapperBoard", + "description": "Clapper board", + "code": "U+0001F3AC" + }, + { + "id": "clapping_hands", + "name": "ClappingHands", + "description": "Clapping hands", + "code": "U+0001F44F" + }, + { + "id": "classical_building", + "name": "ClassicalBuilding", + "description": "Classical building", + "code": "U+0001F3DB" + }, + { + "id": "cl_button", + "name": "ClButton", + "description": "CL button", + "code": "U+0001F191" + }, + { + "id": "clinking_beer_mugs", + "name": "ClinkingBeerMugs", + "description": "Clinking beer mugs", + "code": "U+0001F37B" + }, + { + "id": "clinking_glasses", + "name": "ClinkingGlasses", + "description": "Clinking glasses", + "code": "U+0001F942" + }, + { + "id": "clipboard", + "name": "Clipboard", + "description": "Clipboard", + "code": "U+0001F4CB" + }, + { + "id": "clockwise_vertical_arrows", + "name": "ClockwiseVerticalArrows", + "description": "Clockwise vertical arrows", + "code": "U+0001F503" + }, + { + "id": "closed_book", + "name": "ClosedBook", + "description": "Closed book", + "code": "U+0001F4D5" + }, + { + "id": "closed_mailbox_with_lowered_flag", + "name": "ClosedMailboxWithLoweredFlag", + "description": "Closed mailbox with lowered flag", + "code": "U+0001F4EA" + }, + { + "id": "closed_mailbox_with_raised_flag", + "name": "ClosedMailboxWithRaisedFlag", + "description": "Closed mailbox with raised flag", + "code": "U+0001F4EB" + }, + { + "id": "closed_umbrella", + "name": "ClosedUmbrella", + "description": "Closed umbrella", + "code": "U+0001F302" + }, + { + "id": "cloud", + "name": "Cloud", + "description": "Cloud", + "code": "U+00002601" + }, + { + "id": "cloud_with_lightning", + "name": "CloudWithLightning", + "description": "Cloud with lightning", + "code": "U+0001F329" + }, + { + "id": "cloud_with_lightning_and_rain", + "name": "CloudWithLightningAndRain", + "description": "Cloud with lightning and rain", + "code": "U+000026C8" + }, + { + "id": "cloud_with_rain", + "name": "CloudWithRain", + "description": "Cloud with rain", + "code": "U+0001F327" + }, + { + "id": "cloud_with_snow", + "name": "CloudWithSnow", + "description": "Cloud with snow", + "code": "U+0001F328" + }, + { + "id": "clown_face", + "name": "ClownFace", + "description": "Clown face", + "code": "U+0001F921" + }, + { + "id": "club_suit", + "name": "ClubSuit", + "description": "Club suit", + "code": "U+00002663" + }, + { + "id": "clutch_bag", + "name": "ClutchBag", + "description": "Clutch bag", + "code": "U+0001F45D" + }, + { + "id": "coat", + "name": "Coat", + "description": "Coat", + "code": "U+0001F9E5" + }, + { + "id": "cockroach", + "name": "Cockroach", + "description": "Cockroach", + "code": "U+0001FAB3" + }, + { + "id": "cocktail_glass", + "name": "CocktailGlass", + "description": "Cocktail glass", + "code": "U+0001F378" + }, + { + "id": "coconut", + "name": "Coconut", + "description": "Coconut", + "code": "U+0001F965" + }, + { + "id": "coffin", + "name": "Coffin", + "description": "Coffin", + "code": "U+000026B0" + }, + { + "id": "coin", + "name": "Coin", + "description": "Coin", + "code": "U+0001FA99" + }, + { + "id": "cold_face", + "name": "ColdFace", + "description": "Cold face", + "code": "U+0001F976" + }, + { + "id": "collision", + "name": "Collision", + "description": "Collision", + "code": "U+0001F4A5" + }, + { + "id": "comet", + "name": "Comet", + "description": "Comet", + "code": "U+00002604" + }, + { + "id": "compass", + "name": "Compass", + "description": "Compass", + "code": "U+0001F9ED" + }, + { + "id": "computer_disk", + "name": "ComputerDisk", + "description": "Computer disk", + "code": "U+0001F4BD" + }, + { + "id": "computer_mouse", + "name": "ComputerMouse", + "description": "Computer mouse", + "code": "U+0001F5B1" + }, + { + "id": "confetti_ball", + "name": "ConfettiBall", + "description": "Confetti ball", + "code": "U+0001F38A" + }, + { + "id": "confounded_face", + "name": "ConfoundedFace", + "description": "Confounded face", + "code": "U+0001F616" + }, + { + "id": "confused_face", + "name": "ConfusedFace", + "description": "Confused face", + "code": "U+0001F615" + }, + { + "id": "construction", + "name": "Construction", + "description": "Construction", + "code": "U+0001F6A7" + }, + { + "id": "construction_worker", + "name": "ConstructionWorker", + "description": "Construction worker", + "code": "U+0001F477" + }, + { + "id": "control_knobs", + "name": "ControlKnobs", + "description": "Control knobs", + "code": "U+0001F39B" + }, + { + "id": "convenience_store", + "name": "ConvenienceStore", + "description": "Convenience store", + "code": "U+0001F3EA" + }, + { + "id": "cooked_rice", + "name": "CookedRice", + "description": "Cooked rice", + "code": "U+0001F35A" + }, + { + "id": "cookie", + "name": "Cookie", + "description": "Cookie", + "code": "U+0001F36A" + }, + { + "id": "cooking", + "name": "Cooking", + "description": "Cooking", + "code": "U+0001F373" + }, + { + "id": "cool_button", + "name": "CoolButton", + "description": "COOL button", + "code": "U+0001F192" + }, + { + "id": "copyright", + "name": "Copyright", + "description": "Copyright", + "code": "U+000000A9" + }, + { + "id": "couch_and_lamp", + "name": "CouchAndLamp", + "description": "Couch and lamp", + "code": "U+0001F6CB" + }, + { + "id": "counterclockwise_arrows_button", + "name": "CounterclockwiseArrowsButton", + "description": "Counterclockwise arrows button", + "code": "U+0001F504" + }, + { + "id": "couple_with_heart", + "name": "CoupleWithHeart", + "description": "Couple with heart", + "code": "U+0001F491" + }, + { + "id": "cow", + "name": "Cow", + "description": "Cow", + "code": "U+0001F404" + }, + { + "id": "cowboy_hat_face", + "name": "CowboyHatFace", + "description": "Cowboy hat face", + "code": "U+0001F920" + }, + { + "id": "cow_face", + "name": "CowFace", + "description": "Cow face", + "code": "U+0001F42E" + }, + { + "id": "crab", + "name": "Crab", + "description": "Crab", + "code": "U+0001F980" + }, + { + "id": "crayon", + "name": "Crayon", + "description": "Crayon", + "code": "U+0001F58D" + }, + { + "id": "credit_card", + "name": "CreditCard", + "description": "Credit card", + "code": "U+0001F4B3" + }, + { + "id": "crescent_moon", + "name": "CrescentMoon", + "description": "Crescent moon", + "code": "U+0001F319" + }, + { + "id": "cricket", + "name": "Cricket", + "description": "Cricket", + "code": "U+0001F997" + }, + { + "id": "cricket_game", + "name": "CricketGame", + "description": "Cricket game", + "code": "U+0001F3CF" + }, + { + "id": "crocodile", + "name": "Crocodile", + "description": "Crocodile", + "code": "U+0001F40A" + }, + { + "id": "croissant", + "name": "Croissant", + "description": "Croissant", + "code": "U+0001F950" + }, + { + "id": "crossed_fingers", + "name": "CrossedFingers", + "description": "Crossed fingers", + "code": "U+0001F91E" + }, + { + "id": "crossed_flags", + "name": "CrossedFlags", + "description": "Crossed flags", + "code": "U+0001F38C" + }, + { + "id": "crossed_swords", + "name": "CrossedSwords", + "description": "Crossed swords", + "code": "U+00002694" + }, + { + "id": "cross_mark", + "name": "CrossMark", + "description": "Cross mark", + "code": "U+0000274C" + }, + { + "id": "cross_mark_button", + "name": "CrossMarkButton", + "description": "Cross mark button", + "code": "U+0000274E" + }, + { + "id": "crown", + "name": "Crown", + "description": "Crown", + "code": "U+0001F451" + }, + { + "id": "crying_cat", + "name": "CryingCat", + "description": "Crying cat", + "code": "U+0001F63F" + }, + { + "id": "crying_face", + "name": "CryingFace", + "description": "Crying face", + "code": "U+0001F622" + }, + { + "id": "crystal_ball", + "name": "CrystalBall", + "description": "Crystal ball", + "code": "U+0001F52E" + }, + { + "id": "cucumber", + "name": "Cucumber", + "description": "Cucumber", + "code": "U+0001F952" + }, + { + "id": "cupcake", + "name": "Cupcake", + "description": "Cupcake", + "code": "U+0001F9C1" + }, + { + "id": "cup_with_straw", + "name": "CupWithStraw", + "description": "Cup with straw", + "code": "U+0001F964" + }, + { + "id": "curling_stone", + "name": "CurlingStone", + "description": "Curling stone", + "code": "U+0001F94C" + }, + { + "id": "curly_hair", + "name": "CurlyHair", + "description": "Curly hair", + "code": "U+0001F9B1" + }, + { + "id": "curly_loop", + "name": "CurlyLoop", + "description": "Curly loop", + "code": "U+000027B0" + }, + { + "id": "currency_exchange", + "name": "CurrencyExchange", + "description": "Currency exchange", + "code": "U+0001F4B1" + }, + { + "id": "curry_rice", + "name": "CurryRice", + "description": "Curry rice", + "code": "U+0001F35B" + }, + { + "id": "custard", + "name": "Custard", + "description": "Custard", + "code": "U+0001F36E" + }, + { + "id": "customs", + "name": "Customs", + "description": "Customs", + "code": "U+0001F6C3" + }, + { + "id": "cut_of_meat", + "name": "CutOfMeat", + "description": "Cut of meat", + "code": "U+0001F969" + }, + { + "id": "cyclone", + "name": "Cyclone", + "description": "Cyclone", + "code": "U+0001F300" + }, + { + "id": "dagger", + "name": "Dagger", + "description": "Dagger", + "code": "U+0001F5E1" + }, + { + "id": "dango", + "name": "Dango", + "description": "Dango", + "code": "U+0001F361" + }, + { + "id": "dashing_away", + "name": "DashingAway", + "description": "Dashing away", + "code": "U+0001F4A8" + }, + { + "id": "deaf_person", + "name": "DeafPerson", + "description": "Deaf person", + "code": "U+0001F9CF" + }, + { + "id": "deciduous_tree", + "name": "DeciduousTree", + "description": "Deciduous tree", + "code": "U+0001F333" + }, + { + "id": "deer", + "name": "Deer", + "description": "Deer", + "code": "U+0001F98C" + }, + { + "id": "delivery_truck", + "name": "DeliveryTruck", + "description": "Delivery truck", + "code": "U+0001F69A" + }, + { + "id": "department_store", + "name": "DepartmentStore", + "description": "Department store", + "code": "U+0001F3EC" + }, + { + "id": "derelict_house", + "name": "DerelictHouse", + "description": "Derelict house", + "code": "U+0001F3DA" + }, + { + "id": "desert", + "name": "Desert", + "description": "Desert", + "code": "U+0001F3DC" + }, + { + "id": "desert_island", + "name": "DesertIsland", + "description": "Desert island", + "code": "U+0001F3DD" + }, + { + "id": "desktop_computer", + "name": "DesktopComputer", + "description": "Desktop computer", + "code": "U+0001F5A5" + }, + { + "id": "detective", + "name": "Detective", + "description": "Detective", + "code": "U+0001F575" + }, + { + "id": "diamond_suit", + "name": "DiamondSuit", + "description": "Diamond suit", + "code": "U+00002666" + }, + { + "id": "diamond_with_a_dot", + "name": "DiamondWithADot", + "description": "Diamond with a dot", + "code": "U+0001F4A0" + }, + { + "id": "dim_button", + "name": "DimButton", + "description": "Dim button", + "code": "U+0001F505" + }, + { + "id": "disappointed_face", + "name": "DisappointedFace", + "description": "Disappointed face", + "code": "U+0001F61E" + }, + { + "id": "disguised_face", + "name": "DisguisedFace", + "description": "Disguised face", + "code": "U+0001F978" + }, + { + "id": "divide", + "name": "Divide", + "description": "Divide", + "code": "U+00002797" + }, + { + "id": "diving_mask", + "name": "DivingMask", + "description": "Diving mask", + "code": "U+0001F93F" + }, + { + "id": "diya_lamp", + "name": "DiyaLamp", + "description": "Diya lamp", + "code": "U+0001FA94" + }, + { + "id": "dizzy", + "name": "Dizzy", + "description": "Dizzy", + "code": "U+0001F4AB" + }, + { + "id": "dna", + "name": "Dna", + "description": "Dna", + "code": "U+0001F9EC" + }, + { + "id": "dodo", + "name": "Dodo", + "description": "Dodo", + "code": "U+0001F9A4" + }, + { + "id": "dog", + "name": "Dog", + "description": "Dog", + "code": "U+0001F415" + }, + { + "id": "dog_face", + "name": "DogFace", + "description": "Dog face", + "code": "U+0001F436" + }, + { + "id": "dollar_banknote", + "name": "DollarBanknote", + "description": "Dollar banknote", + "code": "U+0001F4B5" + }, + { + "id": "dolphin", + "name": "Dolphin", + "description": "Dolphin", + "code": "U+0001F42C" + }, + { + "id": "door", + "name": "Door", + "description": "Door", + "code": "U+0001F6AA" + }, + { + "id": "dotted_six_pointed_star", + "name": "DottedSixPointedStar", + "description": "dotted six pointed star", + "code": "U+0001F52F" + }, + { + "id": "double_curly_loop", + "name": "DoubleCurlyLoop", + "description": "Double curly loop", + "code": "U+000027BF" + }, + { + "id": "double_exclamation_mark", + "name": "DoubleExclamationMark", + "description": "Double exclamation mark", + "code": "U+0000203C" + }, + { + "id": "doughnut", + "name": "Doughnut", + "description": "Doughnut", + "code": "U+0001F369" + }, + { + "id": "dove", + "name": "Dove", + "description": "Dove", + "code": "U+0001F54A" + }, + { + "id": "down_arrow", + "name": "DownArrow", + "description": "Down arrow", + "code": "U+00002B07" + }, + { + "id": "downcast_face_with_sweat", + "name": "DowncastFaceWithSweat", + "description": "Downcast face with sweat", + "code": "U+0001F613" + }, + { + "id": "down_left_arrow", + "name": "DownLeftArrow", + "description": "down left arrow", + "code": "U+00002199" + }, + { + "id": "down_right_arrow", + "name": "DownRightArrow", + "description": "down right arrow", + "code": "U+00002198" + }, + { + "id": "downwards_button", + "name": "DownwardsButton", + "description": "Downwards button", + "code": "U+0001F53D" + }, + { + "id": "dragon", + "name": "Dragon", + "description": "Dragon", + "code": "U+0001F409" + }, + { + "id": "dragon_face", + "name": "DragonFace", + "description": "Dragon face", + "code": "U+0001F432" + }, + { + "id": "dress", + "name": "Dress", + "description": "Dress", + "code": "U+0001F457" + }, + { + "id": "drooling_face", + "name": "DroolingFace", + "description": "Drooling face", + "code": "U+0001F924" + }, + { + "id": "droplet", + "name": "Droplet", + "description": "Droplet", + "code": "U+0001F4A7" + }, + { + "id": "drop_of_blood", + "name": "DropOfBlood", + "description": "Drop of blood", + "code": "U+0001FA78" + }, + { + "id": "drum", + "name": "Drum", + "description": "Drum", + "code": "U+0001F941" + }, + { + "id": "duck", + "name": "Duck", + "description": "Duck", + "code": "U+0001F986" + }, + { + "id": "dumpling", + "name": "Dumpling", + "description": "Dumpling", + "code": "U+0001F95F" + }, + { + "id": "dvd", + "name": "Dvd", + "description": "Dvd", + "code": "U+0001F4C0" + }, + { + "id": "eagle", + "name": "Eagle", + "description": "Eagle", + "code": "U+0001F985" + }, + { + "id": "ear", + "name": "Ear", + "description": "Ear", + "code": "U+0001F442" + }, + { + "id": "ear_of_corn", + "name": "EarOfCorn", + "description": "Ear of corn", + "code": "U+0001F33D" + }, + { + "id": "ear_with_hearing_aid", + "name": "EarWithHearingAid", + "description": "Ear with hearing aid", + "code": "U+0001F9BB" + }, + { + "id": "egg", + "name": "Egg", + "description": "Egg", + "code": "U+0001F95A" + }, + { + "id": "eggplant", + "name": "Eggplant", + "description": "Eggplant", + "code": "U+0001F346" + }, + { + "id": "eight_o_clock", + "name": "EightOClock", + "description": "Eight o clock", + "code": "U+0001F557" + }, + { + "id": "eight_pointed_star", + "name": "EightPointedStar", + "description": "eight pointed star", + "code": "U+00002734" + }, + { + "id": "eight_spoked_asterisk", + "name": "EightSpokedAsterisk", + "description": "eight spoked asterisk", + "code": "U+00002733" + }, + { + "id": "eight_thirty", + "name": "EightThirty", + "description": "eight thirty", + "code": "U+0001F563" + }, + { + "id": "eject_button", + "name": "EjectButton", + "description": "Eject button", + "code": "U+000023CF" + }, + { + "id": "electric_plug", + "name": "ElectricPlug", + "description": "Electric plug", + "code": "U+0001F50C" + }, + { + "id": "elephant", + "name": "Elephant", + "description": "Elephant", + "code": "U+0001F418" + }, + { + "id": "elevator", + "name": "Elevator", + "description": "Elevator", + "code": "U+0001F6D7" + }, + { + "id": "eleven_o_clock", + "name": "ElevenOClock", + "description": "Eleven o clock", + "code": "U+0001F55A" + }, + { + "id": "eleven_thirty", + "name": "ElevenThirty", + "description": "eleven thirty", + "code": "U+0001F566" + }, + { + "id": "elf", + "name": "Elf", + "description": "Elf", + "code": "U+0001F9DD" + }, + { + "id": "e_mail", + "name": "EMail", + "description": "e mail", + "code": "U+0001F4E7" + }, + { + "id": "end_arrow", + "name": "EndArrow", + "description": "END arrow", + "code": "U+0001F51A" + }, + { + "id": "envelope", + "name": "Envelope", + "description": "Envelope", + "code": "U+00002709" + }, + { + "id": "envelope_with_arrow", + "name": "EnvelopeWithArrow", + "description": "Envelope with arrow", + "code": "U+0001F4E9" + }, + { + "id": "euro_banknote", + "name": "EuroBanknote", + "description": "Euro banknote", + "code": "U+0001F4B6" + }, + { + "id": "evergreen_tree", + "name": "EvergreenTree", + "description": "Evergreen tree", + "code": "U+0001F332" + }, + { + "id": "ewe", + "name": "Ewe", + "description": "Ewe", + "code": "U+0001F411" + }, + { + "id": "exclamation_question_mark", + "name": "ExclamationQuestionMark", + "description": "Exclamation question mark", + "code": "U+00002049" + }, + { + "id": "exploding_head", + "name": "ExplodingHead", + "description": "Exploding head", + "code": "U+0001F92F" + }, + { + "id": "expressionless_face", + "name": "ExpressionlessFace", + "description": "Expressionless face", + "code": "U+0001F611" + }, + { + "id": "eye", + "name": "Eye", + "description": "Eye", + "code": "U+0001F441" + }, + { + "id": "eyes", + "name": "Eyes", + "description": "Eyes", + "code": "U+0001F440" + }, + { + "id": "face_blowing_a_kiss", + "name": "FaceBlowingAKiss", + "description": "Face blowing a kiss", + "code": "U+0001F618" + }, + { + "id": "face_savoring_food", + "name": "FaceSavoringFood", + "description": "Face savoring food", + "code": "U+0001F60B" + }, + { + "id": "face_screaming_in_fear", + "name": "FaceScreamingInFear", + "description": "Face screaming in fear", + "code": "U+0001F631" + }, + { + "id": "face_vomiting", + "name": "FaceVomiting", + "description": "Face vomiting", + "code": "U+0001F92E" + }, + { + "id": "face_with_hand_over_mouth", + "name": "FaceWithHandOverMouth", + "description": "Face with hand over mouth", + "code": "U+0001F92D" + }, + { + "id": "face_with_head_bandage", + "name": "FaceWithHeadBandage", + "description": "face with head bandage", + "code": "U+0001F915" + }, + { + "id": "face_with_medical_mask", + "name": "FaceWithMedicalMask", + "description": "Face with medical mask", + "code": "U+0001F637" + }, + { + "id": "face_with_monocle", + "name": "FaceWithMonocle", + "description": "Face with monocle", + "code": "U+0001F9D0" + }, + { + "id": "face_with_open_mouth", + "name": "FaceWithOpenMouth", + "description": "Face with open mouth", + "code": "U+0001F62E" + }, + { + "id": "face_without_mouth", + "name": "FaceWithoutMouth", + "description": "Face without mouth", + "code": "U+0001F636" + }, + { + "id": "face_with_raised_eyebrow", + "name": "FaceWithRaisedEyebrow", + "description": "Face with raised eyebrow", + "code": "U+0001F928" + }, + { + "id": "face_with_rolling_eyes", + "name": "FaceWithRollingEyes", + "description": "Face with rolling eyes", + "code": "U+0001F644" + }, + { + "id": "face_with_steam_from_nose", + "name": "FaceWithSteamFromNose", + "description": "Face with steam from nose", + "code": "U+0001F624" + }, + { + "id": "face_with_symbols_on_mouth", + "name": "FaceWithSymbolsOnMouth", + "description": "Face with symbols on mouth", + "code": "U+0001F92C" + }, + { + "id": "face_with_tears_of_joy", + "name": "FaceWithTearsOfJoy", + "description": "Face with tears of joy", + "code": "U+0001F602" + }, + { + "id": "face_with_thermometer", + "name": "FaceWithThermometer", + "description": "Face with thermometer", + "code": "U+0001F912" + }, + { + "id": "face_with_tongue", + "name": "FaceWithTongue", + "description": "Face with tongue", + "code": "U+0001F61B" + }, + { + "id": "factory", + "name": "Factory", + "description": "Factory", + "code": "U+0001F3ED" + }, + { + "id": "fairy", + "name": "Fairy", + "description": "Fairy", + "code": "U+0001F9DA" + }, + { + "id": "falafel", + "name": "Falafel", + "description": "Falafel", + "code": "U+0001F9C6" + }, + { + "id": "fallen_leaf", + "name": "FallenLeaf", + "description": "Fallen leaf", + "code": "U+0001F342" + }, + { + "id": "family", + "name": "Family", + "description": "Family", + "code": "U+0001F46A" + }, + { + "id": "fast_down_button", + "name": "FastDownButton", + "description": "Fast down button", + "code": "U+000023EC" + }, + { + "id": "fast_forward_button", + "name": "FastForwardButton", + "description": "fast forward button", + "code": "U+000023E9" + }, + { + "id": "fast_reverse_button", + "name": "FastReverseButton", + "description": "Fast reverse button", + "code": "U+000023EA" + }, + { + "id": "fast_up_button", + "name": "FastUpButton", + "description": "Fast up button", + "code": "U+000023EB" + }, + { + "id": "fax_machine", + "name": "FaxMachine", + "description": "Fax machine", + "code": "U+0001F4E0" + }, + { + "id": "fearful_face", + "name": "FearfulFace", + "description": "Fearful face", + "code": "U+0001F628" + }, + { + "id": "feather", + "name": "Feather", + "description": "Feather", + "code": "U+0001FAB6" + }, + { + "id": "female_sign", + "name": "FemaleSign", + "description": "Female sign", + "code": "U+00002640" + }, + { + "id": "ferris_wheel", + "name": "FerrisWheel", + "description": "Ferris wheel", + "code": "U+0001F3A1" + }, + { + "id": "ferry", + "name": "Ferry", + "description": "Ferry", + "code": "U+000026F4" + }, + { + "id": "field_hockey", + "name": "FieldHockey", + "description": "Field hockey", + "code": "U+0001F3D1" + }, + { + "id": "file_cabinet", + "name": "FileCabinet", + "description": "File cabinet", + "code": "U+0001F5C4" + }, + { + "id": "file_folder", + "name": "FileFolder", + "description": "File folder", + "code": "U+0001F4C1" + }, + { + "id": "film_frames", + "name": "FilmFrames", + "description": "Film frames", + "code": "U+0001F39E" + }, + { + "id": "film_projector", + "name": "FilmProjector", + "description": "Film projector", + "code": "U+0001F4FD" + }, + { + "id": "fire", + "name": "Fire", + "description": "Fire", + "code": "U+0001F525" + }, + { + "id": "firecracker", + "name": "Firecracker", + "description": "Firecracker", + "code": "U+0001F9E8" + }, + { + "id": "fire_engine", + "name": "FireEngine", + "description": "Fire engine", + "code": "U+0001F692" + }, + { + "id": "fire_extinguisher", + "name": "FireExtinguisher", + "description": "Fire extinguisher", + "code": "U+0001F9EF" + }, + { + "id": "fireworks", + "name": "Fireworks", + "description": "Fireworks", + "code": "U+0001F386" + }, + { + "id": "1st_place_medal", + "name": "FirstPlaceMedal", + "description": "1st place medal", + "code": "U+0001F947" + }, + { + "id": "first_quarter_moon", + "name": "FirstQuarterMoon", + "description": "First quarter moon", + "code": "U+0001F313" + }, + { + "id": "first_quarter_moon_face", + "name": "FirstQuarterMoonFace", + "description": "First quarter moon face", + "code": "U+0001F31B" + }, + { + "id": "fish", + "name": "Fish", + "description": "Fish", + "code": "U+0001F41F" + }, + { + "id": "fish_cake_with_swirl", + "name": "FishCakeWithSwirl", + "description": "Fish cake with swirl", + "code": "U+0001F365" + }, + { + "id": "fishing_pole", + "name": "FishingPole", + "description": "Fishing pole", + "code": "U+0001F3A3" + }, + { + "id": "five_o_clock", + "name": "FiveOClock", + "description": "Five o clock", + "code": "U+0001F554" + }, + { + "id": "five_thirty", + "name": "FiveThirty", + "description": "five thirty", + "code": "U+0001F560" + }, + { + "id": "flag_in_hole", + "name": "FlagInHole", + "description": "Flag in hole", + "code": "U+000026F3" + }, + { + "id": "flamingo", + "name": "Flamingo", + "description": "Flamingo", + "code": "U+0001F9A9" + }, + { + "id": "flashlight", + "name": "Flashlight", + "description": "Flashlight", + "code": "U+0001F526" + }, + { + "id": "flatbread", + "name": "Flatbread", + "description": "Flatbread", + "code": "U+0001FAD3" + }, + { + "id": "flat_shoe", + "name": "FlatShoe", + "description": "Flat shoe", + "code": "U+0001F97F" + }, + { + "id": "fleur_de_lis", + "name": "FleurDeLis", + "description": "fleur de lis", + "code": "U+0000269C" + }, + { + "id": "flexed_biceps", + "name": "FlexedBiceps", + "description": "Flexed biceps", + "code": "U+0001F4AA" + }, + { + "id": "floppy_disk", + "name": "FloppyDisk", + "description": "Floppy disk", + "code": "U+0001F4BE" + }, + { + "id": "flower_playing_cards", + "name": "FlowerPlayingCards", + "description": "Flower playing cards", + "code": "U+0001F3B4" + }, + { + "id": "flushed_face", + "name": "FlushedFace", + "description": "Flushed face", + "code": "U+0001F633" + }, + { + "id": "fly", + "name": "Fly", + "description": "Fly", + "code": "U+0001FAB0" + }, + { + "id": "flying_disc", + "name": "FlyingDisc", + "description": "Flying disc", + "code": "U+0001F94F" + }, + { + "id": "flying_saucer", + "name": "FlyingSaucer", + "description": "Flying saucer", + "code": "U+0001F6F8" + }, + { + "id": "fog", + "name": "Fog", + "description": "Fog", + "code": "U+0001F32B" + }, + { + "id": "foggy", + "name": "Foggy", + "description": "Foggy", + "code": "U+0001F301" + }, + { + "id": "folded_hands", + "name": "FoldedHands", + "description": "Folded hands", + "code": "U+0001F64F" + }, + { + "id": "fondue", + "name": "Fondue", + "description": "Fondue", + "code": "U+0001FAD5" + }, + { + "id": "foot", + "name": "Foot", + "description": "Foot", + "code": "U+0001F9B6" + }, + { + "id": "footprints", + "name": "Footprints", + "description": "Footprints", + "code": "U+0001F463" + }, + { + "id": "fork_and_knife", + "name": "ForkAndKnife", + "description": "Fork and knife", + "code": "U+0001F374" + }, + { + "id": "fork_and_knife_with_plate", + "name": "ForkAndKnifeWithPlate", + "description": "Fork and knife with plate", + "code": "U+0001F37D" + }, + { + "id": "fortune_cookie", + "name": "FortuneCookie", + "description": "Fortune cookie", + "code": "U+0001F960" + }, + { + "id": "fountain", + "name": "Fountain", + "description": "Fountain", + "code": "U+000026F2" + }, + { + "id": "fountain_pen", + "name": "FountainPen", + "description": "Fountain pen", + "code": "U+0001F58B" + }, + { + "id": "four_leaf_clover", + "name": "FourLeafClover", + "description": "Four leaf clover", + "code": "U+0001F340" + }, + { + "id": "four_o_clock", + "name": "FourOClock", + "description": "Four o clock", + "code": "U+0001F553" + }, + { + "id": "four_thirty", + "name": "FourThirty", + "description": "four thirty", + "code": "U+0001F55F" + }, + { + "id": "fox", + "name": "Fox", + "description": "Fox", + "code": "U+0001F98A" + }, + { + "id": "framed_picture", + "name": "FramedPicture", + "description": "Framed picture", + "code": "U+0001F5BC" + }, + { + "id": "free_button", + "name": "FreeButton", + "description": "FREE button", + "code": "U+0001F193" + }, + { + "id": "french_fries", + "name": "FrenchFries", + "description": "French fries", + "code": "U+0001F35F" + }, + { + "id": "fried_shrimp", + "name": "FriedShrimp", + "description": "Fried shrimp", + "code": "U+0001F364" + }, + { + "id": "frog", + "name": "Frog", + "description": "Frog", + "code": "U+0001F438" + }, + { + "id": "front_facing_baby_chick", + "name": "FrontFacingBabyChick", + "description": "front facing baby chick", + "code": "U+0001F425" + }, + { + "id": "frowning_face", + "name": "FrowningFace", + "description": "Frowning face", + "code": "U+00002639" + }, + { + "id": "frowning_face_with_open_mouth", + "name": "FrowningFaceWithOpenMouth", + "description": "Frowning face with open mouth", + "code": "U+0001F626" + }, + { + "id": "fuel_pump", + "name": "FuelPump", + "description": "Fuel pump", + "code": "U+000026FD" + }, + { + "id": "full_moon", + "name": "FullMoon", + "description": "Full moon", + "code": "U+0001F315" + }, + { + "id": "full_moon_face", + "name": "FullMoonFace", + "description": "Full moon face", + "code": "U+0001F31D" + }, + { + "id": "funeral_urn", + "name": "FuneralUrn", + "description": "Funeral urn", + "code": "U+000026B1" + }, + { + "id": "game_die", + "name": "GameDie", + "description": "Game die", + "code": "U+0001F3B2" + }, + { + "id": "garlic", + "name": "Garlic", + "description": "Garlic", + "code": "U+0001F9C4" + }, + { + "id": "gear", + "name": "Gear", + "description": "Gear", + "code": "U+00002699" + }, + { + "id": "gemini", + "name": "Gemini", + "description": "Gemini", + "code": "U+0000264A" + }, + { + "id": "gem_stone", + "name": "GemStone", + "description": "Gem stone", + "code": "U+0001F48E" + }, + { + "id": "genie", + "name": "Genie", + "description": "Genie", + "code": "U+0001F9DE" + }, + { + "id": "ghost", + "name": "Ghost", + "description": "Ghost", + "code": "U+0001F47B" + }, + { + "id": "giraffe", + "name": "Giraffe", + "description": "Giraffe", + "code": "U+0001F992" + }, + { + "id": "girl", + "name": "Girl", + "description": "Girl", + "code": "U+0001F467" + }, + { + "id": "glasses", + "name": "Glasses", + "description": "Glasses", + "code": "U+0001F453" + }, + { + "id": "glass_of_milk", + "name": "GlassOfMilk", + "description": "Glass of milk", + "code": "U+0001F95B" + }, + { + "id": "globe_showing_americas", + "name": "GlobeShowingAmericas", + "description": "Globe showing americas", + "code": "U+0001F30E" + }, + { + "id": "globe_showing_asia_australia", + "name": "GlobeShowingAsiaAustralia", + "description": "globe showing Asia Australia", + "code": "U+0001F30F" + }, + { + "id": "globe_showing_europe_africa", + "name": "GlobeShowingEuropeAfrica", + "description": "globe showing Europe Africa", + "code": "U+0001F30D" + }, + { + "id": "globe_with_meridians", + "name": "GlobeWithMeridians", + "description": "Globe with meridians", + "code": "U+0001F310" + }, + { + "id": "gloves", + "name": "Gloves", + "description": "Gloves", + "code": "U+0001F9E4" + }, + { + "id": "glowing_star", + "name": "GlowingStar", + "description": "Glowing star", + "code": "U+0001F31F" + }, + { + "id": "goal_net", + "name": "GoalNet", + "description": "Goal net", + "code": "U+0001F945" + }, + { + "id": "goat", + "name": "Goat", + "description": "Goat", + "code": "U+0001F410" + }, + { + "id": "goblin", + "name": "Goblin", + "description": "Goblin", + "code": "U+0001F47A" + }, + { + "id": "goggles", + "name": "Goggles", + "description": "Goggles", + "code": "U+0001F97D" + }, + { + "id": "gorilla", + "name": "Gorilla", + "description": "Gorilla", + "code": "U+0001F98D" + }, + { + "id": "graduation_cap", + "name": "GraduationCap", + "description": "Graduation cap", + "code": "U+0001F393" + }, + { + "id": "grapes", + "name": "Grapes", + "description": "Grapes", + "code": "U+0001F347" + }, + { + "id": "green_apple", + "name": "GreenApple", + "description": "Green apple", + "code": "U+0001F34F" + }, + { + "id": "green_book", + "name": "GreenBook", + "description": "Green book", + "code": "U+0001F4D7" + }, + { + "id": "green_circle", + "name": "GreenCircle", + "description": "Green circle", + "code": "U+0001F7E2" + }, + { + "id": "green_heart", + "name": "GreenHeart", + "description": "Green heart", + "code": "U+0001F49A" + }, + { + "id": "green_salad", + "name": "GreenSalad", + "description": "Green salad", + "code": "U+0001F957" + }, + { + "id": "green_square", + "name": "GreenSquare", + "description": "Green square", + "code": "U+0001F7E9" + }, + { + "id": "grimacing_face", + "name": "GrimacingFace", + "description": "Grimacing face", + "code": "U+0001F62C" + }, + { + "id": "grinning_cat", + "name": "GrinningCat", + "description": "Grinning cat", + "code": "U+0001F63A" + }, + { + "id": "grinning_cat_with_smiling_eyes", + "name": "GrinningCatWithSmilingEyes", + "description": "Grinning cat with smiling eyes", + "code": "U+0001F638" + }, + { + "id": "grinning_face", + "name": "GrinningFace", + "description": "Grinning face", + "code": "U+0001F600" + }, + { + "id": "grinning_face_with_big_eyes", + "name": "GrinningFaceWithBigEyes", + "description": "Grinning face with big eyes", + "code": "U+0001F603" + }, + { + "id": "grinning_face_with_smiling_eyes", + "name": "GrinningFaceWithSmilingEyes", + "description": "Grinning face with smiling eyes", + "code": "U+0001F604" + }, + { + "id": "grinning_face_with_sweat", + "name": "GrinningFaceWithSweat", + "description": "Grinning face with sweat", + "code": "U+0001F605" + }, + { + "id": "grinning_squinting_face", + "name": "GrinningSquintingFace", + "description": "Grinning squinting face", + "code": "U+0001F606" + }, + { + "id": "growing_heart", + "name": "GrowingHeart", + "description": "Growing heart", + "code": "U+0001F497" + }, + { + "id": "guard", + "name": "Guard", + "description": "Guard", + "code": "U+0001F482" + }, + { + "id": "guide_dog", + "name": "GuideDog", + "description": "Guide dog", + "code": "U+0001F9AE" + }, + { + "id": "guitar", + "name": "Guitar", + "description": "Guitar", + "code": "U+0001F3B8" + }, + { + "id": "hamburger", + "name": "Hamburger", + "description": "Hamburger", + "code": "U+0001F354" + }, + { + "id": "hammer", + "name": "Hammer", + "description": "Hammer", + "code": "U+0001F528" + }, + { + "id": "hammer_and_pick", + "name": "HammerAndPick", + "description": "Hammer and pick", + "code": "U+00002692" + }, + { + "id": "hammer_and_wrench", + "name": "HammerAndWrench", + "description": "Hammer and wrench", + "code": "U+0001F6E0" + }, + { + "id": "hamster", + "name": "Hamster", + "description": "Hamster", + "code": "U+0001F439" + }, + { + "id": "handbag", + "name": "Handbag", + "description": "Handbag", + "code": "U+0001F45C" + }, + { + "id": "handshake", + "name": "Handshake", + "description": "Handshake", + "code": "U+0001F91D" + }, + { + "id": "hand_with_fingers_splayed", + "name": "HandWithFingersSplayed", + "description": "Hand with fingers splayed", + "code": "U+0001F590" + }, + { + "id": "hatching_chick", + "name": "HatchingChick", + "description": "Hatching chick", + "code": "U+0001F423" + }, + { + "id": "headphone", + "name": "Headphone", + "description": "Headphone", + "code": "U+0001F3A7" + }, + { + "id": "headstone", + "name": "Headstone", + "description": "Headstone", + "code": "U+0001FAA6" + }, + { + "id": "hear_no_evil_monkey", + "name": "HearNoEvilMonkey", + "description": "hear no evil monkey", + "code": "U+0001F649" + }, + { + "id": "heart_decoration", + "name": "HeartDecoration", + "description": "Heart decoration", + "code": "U+0001F49F" + }, + { + "id": "heart_exclamation", + "name": "HeartExclamation", + "description": "Heart exclamation", + "code": "U+00002763" + }, + { + "id": "heart_suit", + "name": "HeartSuit", + "description": "Heart suit", + "code": "U+00002665" + }, + { + "id": "heart_with_arrow", + "name": "HeartWithArrow", + "description": "Heart with arrow", + "code": "U+0001F498" + }, + { + "id": "heart_with_ribbon", + "name": "HeartWithRibbon", + "description": "Heart with ribbon", + "code": "U+0001F49D" + }, + { + "id": "heavy_dollar_sign", + "name": "HeavyDollarSign", + "description": "Heavy dollar sign", + "code": "U+0001F4B2" + }, + { + "id": "hedgehog", + "name": "Hedgehog", + "description": "Hedgehog", + "code": "U+0001F994" + }, + { + "id": "helicopter", + "name": "Helicopter", + "description": "Helicopter", + "code": "U+0001F681" + }, + { + "id": "herb", + "name": "Herb", + "description": "Herb", + "code": "U+0001F33F" + }, + { + "id": "hibiscus", + "name": "Hibiscus", + "description": "Hibiscus", + "code": "U+0001F33A" + }, + { + "id": "high_heeled_shoe", + "name": "HighHeeledShoe", + "description": "high heeled shoe", + "code": "U+0001F460" + }, + { + "id": "high_speed_train", + "name": "HighSpeedTrain", + "description": "high speed train", + "code": "U+0001F684" + }, + { + "id": "high_voltage", + "name": "HighVoltage", + "description": "High voltage", + "code": "U+000026A1" + }, + { + "id": "hiking_boot", + "name": "HikingBoot", + "description": "Hiking boot", + "code": "U+0001F97E" + }, + { + "id": "hindu_temple", + "name": "HinduTemple", + "description": "Hindu temple", + "code": "U+0001F6D5" + }, + { + "id": "hippopotamus", + "name": "Hippopotamus", + "description": "Hippopotamus", + "code": "U+0001F99B" + }, + { + "id": "hole", + "name": "Hole", + "description": "Hole", + "code": "U+0001F573" + }, + { + "id": "hollow_red_circle", + "name": "HollowRedCircle", + "description": "Hollow red circle", + "code": "U+00002B55" + }, + { + "id": "honeybee", + "name": "Honeybee", + "description": "Honeybee", + "code": "U+0001F41D" + }, + { + "id": "honey_pot", + "name": "HoneyPot", + "description": "Honey pot", + "code": "U+0001F36F" + }, + { + "id": "hook", + "name": "Hook", + "description": "Hook", + "code": "U+0001FA9D" + }, + { + "id": "horizontal_traffic_light", + "name": "HorizontalTrafficLight", + "description": "Horizontal traffic light", + "code": "U+0001F6A5" + }, + { + "id": "horse", + "name": "Horse", + "description": "Horse", + "code": "U+0001F40E" + }, + { + "id": "horse_face", + "name": "HorseFace", + "description": "Horse face", + "code": "U+0001F434" + }, + { + "id": "horse_racing", + "name": "HorseRacing", + "description": "Horse racing", + "code": "U+0001F3C7" + }, + { + "id": "hospital", + "name": "Hospital", + "description": "Hospital", + "code": "U+0001F3E5" + }, + { + "id": "hot_beverage", + "name": "HotBeverage", + "description": "Hot beverage", + "code": "U+00002615" + }, + { + "id": "hot_dog", + "name": "HotDog", + "description": "Hot dog", + "code": "U+0001F32D" + }, + { + "id": "hotel", + "name": "Hotel", + "description": "Hotel", + "code": "U+0001F3E8" + }, + { + "id": "hot_face", + "name": "HotFace", + "description": "Hot face", + "code": "U+0001F975" + }, + { + "id": "hot_pepper", + "name": "HotPepper", + "description": "Hot pepper", + "code": "U+0001F336" + }, + { + "id": "hot_springs", + "name": "HotSprings", + "description": "Hot springs", + "code": "U+00002668" + }, + { + "id": "hourglass_done", + "name": "HourglassDone", + "description": "Hourglass done", + "code": "U+0000231B" + }, + { + "id": "hourglass_not_done", + "name": "HourglassNotDone", + "description": "Hourglass not done", + "code": "U+000023F3" + }, + { + "id": "house", + "name": "House", + "description": "House", + "code": "U+0001F3E0" + }, + { + "id": "houses", + "name": "Houses", + "description": "Houses", + "code": "U+0001F3D8" + }, + { + "id": "house_with_garden", + "name": "HouseWithGarden", + "description": "House with garden", + "code": "U+0001F3E1" + }, + { + "id": "hugging_face", + "name": "HuggingFace", + "description": "Hugging face", + "code": "U+0001F917" + }, + { + "id": "hundred_points", + "name": "HundredPoints", + "description": "Hundred points", + "code": "U+0001F4AF" + }, + { + "id": "hushed_face", + "name": "HushedFace", + "description": "Hushed face", + "code": "U+0001F62F" + }, + { + "id": "hut", + "name": "Hut", + "description": "Hut", + "code": "U+0001F6D6" + }, + { + "id": "ice", + "name": "Ice", + "description": "Ice", + "code": "U+0001F9CA" + }, + { + "id": "ice_cream", + "name": "IceCream", + "description": "Ice cream", + "code": "U+0001F368" + }, + { + "id": "ice_hockey", + "name": "IceHockey", + "description": "Ice hockey", + "code": "U+0001F3D2" + }, + { + "id": "ice_skate", + "name": "IceSkate", + "description": "Ice skate", + "code": "U+000026F8" + }, + { + "id": "id_button", + "name": "IdButton", + "description": "ID button", + "code": "U+0001F194" + }, + { + "id": "inbox_tray", + "name": "InboxTray", + "description": "Inbox tray", + "code": "U+0001F4E5" + }, + { + "id": "incoming_envelope", + "name": "IncomingEnvelope", + "description": "Incoming envelope", + "code": "U+0001F4E8" + }, + { + "id": "index_pointing_up", + "name": "IndexPointingUp", + "description": "Index pointing up", + "code": "U+0000261D" + }, + { + "id": "infinity", + "name": "Infinity", + "description": "Infinity", + "code": "U+0000267E" + }, + { + "id": "information", + "name": "Information", + "description": "Information", + "code": "U+00002139" + }, + { + "id": "input_latin_letters", + "name": "InputLatinLetters", + "description": "Input latin letters", + "code": "U+0001F524" + }, + { + "id": "input_latin_lowercase", + "name": "InputLatinLowercase", + "description": "Input latin lowercase", + "code": "U+0001F521" + }, + { + "id": "input_latin_uppercase", + "name": "InputLatinUppercase", + "description": "Input latin uppercase", + "code": "U+0001F520" + }, + { + "id": "input_numbers", + "name": "InputNumbers", + "description": "Input numbers", + "code": "U+0001F522" + }, + { + "id": "input_symbols", + "name": "InputSymbols", + "description": "Input symbols", + "code": "U+0001F523" + }, + { + "id": "jack_o_lantern", + "name": "JackOLantern", + "description": "jack o lantern", + "code": "U+0001F383" + }, + { + "id": "japanese_acceptable_button", + "name": "JapaneseAcceptableButton", + "description": "Japanese acceptable button", + "code": "U+0001F251" + }, + { + "id": "japanese_application_button", + "name": "JapaneseApplicationButton", + "description": "Japanese application button", + "code": "U+0001F238" + }, + { + "id": "japanese_bargain_button", + "name": "JapaneseBargainButton", + "description": "Japanese bargain button", + "code": "U+0001F250" + }, + { + "id": "japanese_castle", + "name": "JapaneseCastle", + "description": "Japanese castle", + "code": "U+0001F3EF" + }, + { + "id": "japanese_congratulations_button", + "name": "JapaneseCongratulationsButton", + "description": "Japanese congratulations button", + "code": "U+00003297" + }, + { + "id": "japanese_discount_button", + "name": "JapaneseDiscountButton", + "description": "Japanese discount button", + "code": "U+0001F239" + }, + { + "id": "japanese_dolls", + "name": "JapaneseDolls", + "description": "Japanese dolls", + "code": "U+0001F38E" + }, + { + "id": "japanese_free_of_charge_button", + "name": "JapaneseFreeOfChargeButton", + "description": "Japanese free of charge button", + "code": "U+0001F21A" + }, + { + "id": "japanese_here_button", + "name": "JapaneseHereButton", + "description": "Japanese here button", + "code": "U+0001F201" + }, + { + "id": "japanese_monthly_amount_button", + "name": "JapaneseMonthlyAmountButton", + "description": "Japanese monthly amount button", + "code": "U+0001F237" + }, + { + "id": "japanese_not_free_of_charge_button", + "name": "JapaneseNotFreeOfChargeButton", + "description": "Japanese not free of charge button", + "code": "U+0001F236" + }, + { + "id": "japanese_no_vacancy_button", + "name": "JapaneseNoVacancyButton", + "description": "Japanese no vacancy button", + "code": "U+0001F235" + }, + { + "id": "japanese_open_for_business_button", + "name": "JapaneseOpenForBusinessButton", + "description": "Japanese open for business button", + "code": "U+0001F23A" + }, + { + "id": "japanese_passing_grade_button", + "name": "JapanesePassingGradeButton", + "description": "Japanese passing grade button", + "code": "U+0001F234" + }, + { + "id": "japanese_post_office", + "name": "JapanesePostOffice", + "description": "Japanese post office", + "code": "U+0001F3E3" + }, + { + "id": "japanese_prohibited_button", + "name": "JapaneseProhibitedButton", + "description": "Japanese prohibited button", + "code": "U+0001F232" + }, + { + "id": "japanese_reserved_button", + "name": "JapaneseReservedButton", + "description": "Japanese reserved button", + "code": "U+0001F22F" + }, + { + "id": "japanese_secret_button", + "name": "JapaneseSecretButton", + "description": "Japanese secret button", + "code": "U+00003299" + }, + { + "id": "japanese_service_charge_button", + "name": "JapaneseServiceChargeButton", + "description": "Japanese service charge button", + "code": "U+0001F202" + }, + { + "id": "japanese_symbol_for_beginner", + "name": "JapaneseSymbolForBeginner", + "description": "Japanese symbol for beginner", + "code": "U+0001F530" + }, + { + "id": "japanese_vacancy_button", + "name": "JapaneseVacancyButton", + "description": "Japanese vacancy button", + "code": "U+0001F233" + }, + { + "id": "jeans", + "name": "Jeans", + "description": "Jeans", + "code": "U+0001F456" + }, + { + "id": "joker", + "name": "Joker", + "description": "Joker", + "code": "U+0001F0CF" + }, + { + "id": "joystick", + "name": "Joystick", + "description": "Joystick", + "code": "U+0001F579" + }, + { + "id": "kaaba", + "name": "Kaaba", + "description": "Kaaba", + "code": "U+0001F54B" + }, + { + "id": "kangaroo", + "name": "Kangaroo", + "description": "Kangaroo", + "code": "U+0001F998" + }, + { + "id": "key", + "name": "Key", + "description": "Key", + "code": "U+0001F511" + }, + { + "id": "keyboard", + "name": "Keyboard", + "description": "Keyboard", + "code": "U+00002328" + }, + { + "id": "keycap_10", + "name": "Keycap10", + "description": "Keycap 10", + "code": "U+0001F51F" + }, + { + "id": "kick_scooter", + "name": "KickScooter", + "description": "Kick scooter", + "code": "U+0001F6F4" + }, + { + "id": "kimono", + "name": "Kimono", + "description": "Kimono", + "code": "U+0001F458" + }, + { + "id": "kiss", + "name": "Kiss", + "description": "Kiss", + "code": "U+0001F48F" + }, + { + "id": "kissing_cat", + "name": "KissingCat", + "description": "Kissing cat", + "code": "U+0001F63D" + }, + { + "id": "kissing_face", + "name": "KissingFace", + "description": "Kissing face", + "code": "U+0001F617" + }, + { + "id": "kissing_face_with_closed_eyes", + "name": "KissingFaceWithClosedEyes", + "description": "Kissing face with closed eyes", + "code": "U+0001F61A" + }, + { + "id": "kissing_face_with_smiling_eyes", + "name": "KissingFaceWithSmilingEyes", + "description": "Kissing face with smiling eyes", + "code": "U+0001F619" + }, + { + "id": "kiss_mark", + "name": "KissMark", + "description": "Kiss mark", + "code": "U+0001F48B" + }, + { + "id": "kitchen_knife", + "name": "KitchenKnife", + "description": "Kitchen knife", + "code": "U+0001F52A" + }, + { + "id": "kite", + "name": "Kite", + "description": "Kite", + "code": "U+0001FA81" + }, + { + "id": "kiwi_fruit", + "name": "KiwiFruit", + "description": "Kiwi fruit", + "code": "U+0001F95D" + }, + { + "id": "knocked_out_face", + "name": "KnockedOutFace", + "description": "knocked out face", + "code": "U+0001F635" + }, + { + "id": "knot", + "name": "Knot", + "description": "Knot", + "code": "U+0001FAA2" + }, + { + "id": "koala", + "name": "Koala", + "description": "Koala", + "code": "U+0001F428" + }, + { + "id": "lab_coat", + "name": "LabCoat", + "description": "Lab coat", + "code": "U+0001F97C" + }, + { + "id": "label", + "name": "Label", + "description": "Label", + "code": "U+0001F3F7" + }, + { + "id": "lacrosse", + "name": "Lacrosse", + "description": "Lacrosse", + "code": "U+0001F94D" + }, + { + "id": "ladder", + "name": "Ladder", + "description": "Ladder", + "code": "U+0001FA9C" + }, + { + "id": "lady_beetle", + "name": "LadyBeetle", + "description": "Lady beetle", + "code": "U+0001F41E" + }, + { + "id": "laptop", + "name": "Laptop", + "description": "Laptop", + "code": "U+0001F4BB" + }, + { + "id": "large_blue_diamond", + "name": "LargeBlueDiamond", + "description": "Large blue diamond", + "code": "U+0001F537" + }, + { + "id": "large_orange_diamond", + "name": "LargeOrangeDiamond", + "description": "Large orange diamond", + "code": "U+0001F536" + }, + { + "id": "last_quarter_moon", + "name": "LastQuarterMoon", + "description": "Last quarter moon", + "code": "U+0001F317" + }, + { + "id": "last_quarter_moon_face", + "name": "LastQuarterMoonFace", + "description": "Last quarter moon face", + "code": "U+0001F31C" + }, + { + "id": "last_track_button", + "name": "LastTrackButton", + "description": "Last track button", + "code": "U+000023EE" + }, + { + "id": "latin_cross", + "name": "LatinCross", + "description": "Latin cross", + "code": "U+0000271D" + }, + { + "id": "leaf_fluttering_in_wind", + "name": "LeafFlutteringInWind", + "description": "Leaf fluttering in wind", + "code": "U+0001F343" + }, + { + "id": "leafy_green", + "name": "LeafyGreen", + "description": "Leafy green", + "code": "U+0001F96C" + }, + { + "id": "ledger", + "name": "Ledger", + "description": "Ledger", + "code": "U+0001F4D2" + }, + { + "id": "left_arrow", + "name": "LeftArrow", + "description": "Left arrow", + "code": "U+00002B05" + }, + { + "id": "left_arrow_curving_right", + "name": "LeftArrowCurvingRight", + "description": "Left arrow curving right", + "code": "U+000021AA" + }, + { + "id": "left_facing_fist", + "name": "LeftFacingFist", + "description": "left facing fist", + "code": "U+0001F91B" + }, + { + "id": "left_luggage", + "name": "LeftLuggage", + "description": "Left luggage", + "code": "U+0001F6C5" + }, + { + "id": "left_right_arrow", + "name": "LeftRightArrow", + "description": "left right arrow", + "code": "U+00002194" + }, + { + "id": "left_speech_bubble", + "name": "LeftSpeechBubble", + "description": "Left speech bubble", + "code": "U+0001F5E8" + }, + { + "id": "leg", + "name": "Leg", + "description": "Leg", + "code": "U+0001F9B5" + }, + { + "id": "lemon", + "name": "Lemon", + "description": "Lemon", + "code": "U+0001F34B" + }, + { + "id": "leo", + "name": "Leo", + "description": "Leo", + "code": "U+0000264C" + }, + { + "id": "leopard", + "name": "Leopard", + "description": "Leopard", + "code": "U+0001F406" + }, + { + "id": "level_slider", + "name": "LevelSlider", + "description": "Level slider", + "code": "U+0001F39A" + }, + { + "id": "libra", + "name": "Libra", + "description": "Libra", + "code": "U+0000264E" + }, + { + "id": "light_bulb", + "name": "LightBulb", + "description": "Light bulb", + "code": "U+0001F4A1" + }, + { + "id": "light_rail", + "name": "LightRail", + "description": "Light rail", + "code": "U+0001F688" + }, + { + "id": "link", + "name": "Link", + "description": "Link", + "code": "U+0001F517" + }, + { + "id": "linked_paperclips", + "name": "LinkedPaperclips", + "description": "Linked paperclips", + "code": "U+0001F587" + }, + { + "id": "lion", + "name": "Lion", + "description": "Lion", + "code": "U+0001F981" + }, + { + "id": "lipstick", + "name": "Lipstick", + "description": "Lipstick", + "code": "U+0001F484" + }, + { + "id": "litter_in_bin_sign", + "name": "LitterInBinSign", + "description": "Litter in bin sign", + "code": "U+0001F6AE" + }, + { + "id": "lizard", + "name": "Lizard", + "description": "Lizard", + "code": "U+0001F98E" + }, + { + "id": "llama", + "name": "Llama", + "description": "Llama", + "code": "U+0001F999" + }, + { + "id": "lobster", + "name": "Lobster", + "description": "Lobster", + "code": "U+0001F99E" + }, + { + "id": "locked", + "name": "Locked", + "description": "Locked", + "code": "U+0001F512" + }, + { + "id": "locked_with_key", + "name": "LockedWithKey", + "description": "Locked with key", + "code": "U+0001F510" + }, + { + "id": "locked_with_pen", + "name": "LockedWithPen", + "description": "Locked with pen", + "code": "U+0001F50F" + }, + { + "id": "locomotive", + "name": "Locomotive", + "description": "Locomotive", + "code": "U+0001F682" + }, + { + "id": "lollipop", + "name": "Lollipop", + "description": "Lollipop", + "code": "U+0001F36D" + }, + { + "id": "long_drum", + "name": "LongDrum", + "description": "Long drum", + "code": "U+0001FA98" + }, + { + "id": "lotion_bottle", + "name": "LotionBottle", + "description": "Lotion bottle", + "code": "U+0001F9F4" + }, + { + "id": "loudly_crying_face", + "name": "LoudlyCryingFace", + "description": "Loudly crying face", + "code": "U+0001F62D" + }, + { + "id": "loudspeaker", + "name": "Loudspeaker", + "description": "Loudspeaker", + "code": "U+0001F4E2" + }, + { + "id": "love_hotel", + "name": "LoveHotel", + "description": "Love hotel", + "code": "U+0001F3E9" + }, + { + "id": "love_letter", + "name": "LoveLetter", + "description": "Love letter", + "code": "U+0001F48C" + }, + { + "id": "love_you_gesture", + "name": "LoveYouGesture", + "description": "love you gesture", + "code": "U+0001F91F" + }, + { + "id": "luggage", + "name": "Luggage", + "description": "Luggage", + "code": "U+0001F9F3" + }, + { + "id": "lungs", + "name": "Lungs", + "description": "Lungs", + "code": "U+0001FAC1" + }, + { + "id": "lying_face", + "name": "LyingFace", + "description": "Lying face", + "code": "U+0001F925" + }, + { + "id": "mage", + "name": "Mage", + "description": "Mage", + "code": "U+0001F9D9" + }, + { + "id": "magic_wand", + "name": "MagicWand", + "description": "Magic wand", + "code": "U+0001FA84" + }, + { + "id": "magnet", + "name": "Magnet", + "description": "Magnet", + "code": "U+0001F9F2" + }, + { + "id": "magnifying_glass_tilted_left", + "name": "MagnifyingGlassTiltedLeft", + "description": "Magnifying glass tilted left", + "code": "U+0001F50D" + }, + { + "id": "magnifying_glass_tilted_right", + "name": "MagnifyingGlassTiltedRight", + "description": "Magnifying glass tilted right", + "code": "U+0001F50E" + }, + { + "id": "mahjong_red_dragon", + "name": "MahjongRedDragon", + "description": "Mahjong red dragon", + "code": "U+0001F004" + }, + { + "id": "male_sign", + "name": "MaleSign", + "description": "Male sign", + "code": "U+00002642" + }, + { + "id": "mammoth", + "name": "Mammoth", + "description": "Mammoth", + "code": "U+0001F9A3" + }, + { + "id": "man", + "name": "Man", + "description": "Man", + "code": "U+0001F468" + }, + { + "id": "man_dancing", + "name": "ManDancing", + "description": "Man dancing", + "code": "U+0001F57A" + }, + { + "id": "mango", + "name": "Mango", + "description": "Mango", + "code": "U+0001F96D" + }, + { + "id": "mans_shoe", + "name": "MansShoe", + "description": "Man s shoe", + "code": "U+0001F45E" + }, + { + "id": "mantelpiece_clock", + "name": "MantelpieceClock", + "description": "Mantelpiece clock", + "code": "U+0001F570" + }, + { + "id": "manual_wheelchair", + "name": "ManualWheelchair", + "description": "Manual wheelchair", + "code": "U+0001F9BD" + }, + { + "id": "maple_leaf", + "name": "MapleLeaf", + "description": "Maple leaf", + "code": "U+0001F341" + }, + { + "id": "map_of_japan", + "name": "MapOfJapan", + "description": "Map of japan", + "code": "U+0001F5FE" + }, + { + "id": "martial_arts_uniform", + "name": "MartialArtsUniform", + "description": "Martial arts uniform", + "code": "U+0001F94B" + }, + { + "id": "mate", + "name": "Mate", + "description": "Mate", + "code": "U+0001F9C9" + }, + { + "id": "meat_on_bone", + "name": "MeatOnBone", + "description": "Meat on bone", + "code": "U+0001F356" + }, + { + "id": "mechanical_arm", + "name": "MechanicalArm", + "description": "Mechanical arm", + "code": "U+0001F9BE" + }, + { + "id": "mechanical_leg", + "name": "MechanicalLeg", + "description": "Mechanical leg", + "code": "U+0001F9BF" + }, + { + "id": "medical_symbol", + "name": "MedicalSymbol", + "description": "Medical symbol", + "code": "U+00002695" + }, + { + "id": "megaphone", + "name": "Megaphone", + "description": "Megaphone", + "code": "U+0001F4E3" + }, + { + "id": "melon", + "name": "Melon", + "description": "Melon", + "code": "U+0001F348" + }, + { + "id": "memo", + "name": "Memo", + "description": "Memo", + "code": "U+0001F4DD" + }, + { + "id": "men_holding_hands", + "name": "MenHoldingHands", + "description": "Men holding hands", + "code": "U+0001F46C" + }, + { + "id": "menorah", + "name": "Menorah", + "description": "Menorah", + "code": "U+0001F54E" + }, + { + "id": "mens_room", + "name": "MensRoom", + "description": "Men s room", + "code": "U+0001F6B9" + }, + { + "id": "merperson", + "name": "Merperson", + "description": "Merperson", + "code": "U+0001F9DC" + }, + { + "id": "metro", + "name": "Metro", + "description": "Metro", + "code": "U+0001F687" + }, + { + "id": "microbe", + "name": "Microbe", + "description": "Microbe", + "code": "U+0001F9A0" + }, + { + "id": "microphone", + "name": "Microphone", + "description": "Microphone", + "code": "U+0001F3A4" + }, + { + "id": "microscope", + "name": "Microscope", + "description": "Microscope", + "code": "U+0001F52C" + }, + { + "id": "middle_finger", + "name": "MiddleFinger", + "description": "Middle finger", + "code": "U+0001F595" + }, + { + "id": "military_helmet", + "name": "MilitaryHelmet", + "description": "Military helmet", + "code": "U+0001FA96" + }, + { + "id": "military_medal", + "name": "MilitaryMedal", + "description": "Military medal", + "code": "U+0001F396" + }, + { + "id": "milky_way", + "name": "MilkyWay", + "description": "Milky way", + "code": "U+0001F30C" + }, + { + "id": "minibus", + "name": "Minibus", + "description": "Minibus", + "code": "U+0001F690" + }, + { + "id": "minus", + "name": "Minus", + "description": "Minus", + "code": "U+00002796" + }, + { + "id": "mirror", + "name": "Mirror", + "description": "Mirror", + "code": "U+0001FA9E" + }, + { + "id": "moai", + "name": "Moai", + "description": "Moai", + "code": "U+0001F5FF" + }, + { + "id": "mobile_phone", + "name": "MobilePhone", + "description": "Mobile phone", + "code": "U+0001F4F1" + }, + { + "id": "mobile_phone_off", + "name": "MobilePhoneOff", + "description": "Mobile phone off", + "code": "U+0001F4F4" + }, + { + "id": "mobile_phone_with_arrow", + "name": "MobilePhoneWithArrow", + "description": "Mobile phone with arrow", + "code": "U+0001F4F2" + }, + { + "id": "money_bag", + "name": "MoneyBag", + "description": "Money bag", + "code": "U+0001F4B0" + }, + { + "id": "money_mouth_face", + "name": "MoneyMouthFace", + "description": "money mouth face", + "code": "U+0001F911" + }, + { + "id": "money_with_wings", + "name": "MoneyWithWings", + "description": "Money with wings", + "code": "U+0001F4B8" + }, + { + "id": "monkey", + "name": "Monkey", + "description": "Monkey", + "code": "U+0001F412" + }, + { + "id": "monkey_face", + "name": "MonkeyFace", + "description": "Monkey face", + "code": "U+0001F435" + }, + { + "id": "monorail", + "name": "Monorail", + "description": "Monorail", + "code": "U+0001F69D" + }, + { + "id": "moon_cake", + "name": "MoonCake", + "description": "Moon cake", + "code": "U+0001F96E" + }, + { + "id": "moon_viewing_ceremony", + "name": "MoonViewingCeremony", + "description": "Moon viewing ceremony", + "code": "U+0001F391" + }, + { + "id": "mosque", + "name": "Mosque", + "description": "Mosque", + "code": "U+0001F54C" + }, + { + "id": "mosquito", + "name": "Mosquito", + "description": "Mosquito", + "code": "U+0001F99F" + }, + { + "id": "motor_boat", + "name": "MotorBoat", + "description": "Motor boat", + "code": "U+0001F6E5" + }, + { + "id": "motorcycle", + "name": "Motorcycle", + "description": "Motorcycle", + "code": "U+0001F3CD" + }, + { + "id": "motorized_wheelchair", + "name": "MotorizedWheelchair", + "description": "Motorized wheelchair", + "code": "U+0001F9BC" + }, + { + "id": "motor_scooter", + "name": "MotorScooter", + "description": "Motor scooter", + "code": "U+0001F6F5" + }, + { + "id": "motorway", + "name": "Motorway", + "description": "Motorway", + "code": "U+0001F6E3" + }, + { + "id": "mountain", + "name": "Mountain", + "description": "Mountain", + "code": "U+000026F0" + }, + { + "id": "mountain_cableway", + "name": "MountainCableway", + "description": "Mountain cableway", + "code": "U+0001F6A0" + }, + { + "id": "mountain_railway", + "name": "MountainRailway", + "description": "Mountain railway", + "code": "U+0001F69E" + }, + { + "id": "mount_fuji", + "name": "MountFuji", + "description": "Mount fuji", + "code": "U+0001F5FB" + }, + { + "id": "mouse", + "name": "Mouse", + "description": "Mouse", + "code": "U+0001F401" + }, + { + "id": "mouse_face", + "name": "MouseFace", + "description": "Mouse face", + "code": "U+0001F42D" + }, + { + "id": "mouse_trap", + "name": "MouseTrap", + "description": "Mouse trap", + "code": "U+0001FAA4" + }, + { + "id": "mouth", + "name": "Mouth", + "description": "Mouth", + "code": "U+0001F444" + }, + { + "id": "movie_camera", + "name": "MovieCamera", + "description": "Movie camera", + "code": "U+0001F3A5" + }, + { + "id": "mrs_claus", + "name": "MrsClaus", + "description": "Mrs claus", + "code": "U+0001F936" + }, + { + "id": "multiply", + "name": "Multiply", + "description": "Multiply", + "code": "U+00002716" + }, + { + "id": "mushroom", + "name": "Mushroom", + "description": "Mushroom", + "code": "U+0001F344" + }, + { + "id": "musical_keyboard", + "name": "MusicalKeyboard", + "description": "Musical keyboard", + "code": "U+0001F3B9" + }, + { + "id": "musical_note", + "name": "MusicalNote", + "description": "Musical note", + "code": "U+0001F3B5" + }, + { + "id": "musical_notes", + "name": "MusicalNotes", + "description": "Musical notes", + "code": "U+0001F3B6" + }, + { + "id": "musical_score", + "name": "MusicalScore", + "description": "Musical score", + "code": "U+0001F3BC" + }, + { + "id": "muted_speaker", + "name": "MutedSpeaker", + "description": "Muted speaker", + "code": "U+0001F507" + }, + { + "id": "nail_polish", + "name": "NailPolish", + "description": "Nail polish", + "code": "U+0001F485" + }, + { + "id": "name_badge", + "name": "NameBadge", + "description": "Name badge", + "code": "U+0001F4DB" + }, + { + "id": "national_park", + "name": "NationalPark", + "description": "National park", + "code": "U+0001F3DE" + }, + { + "id": "nauseated_face", + "name": "NauseatedFace", + "description": "Nauseated face", + "code": "U+0001F922" + }, + { + "id": "nazar_amulet", + "name": "NazarAmulet", + "description": "Nazar amulet", + "code": "U+0001F9FF" + }, + { + "id": "necktie", + "name": "Necktie", + "description": "Necktie", + "code": "U+0001F454" + }, + { + "id": "nerd_face", + "name": "NerdFace", + "description": "Nerd face", + "code": "U+0001F913" + }, + { + "id": "nesting_dolls", + "name": "NestingDolls", + "description": "Nesting dolls", + "code": "U+0001FA86" + }, + { + "id": "neutral_face", + "name": "NeutralFace", + "description": "Neutral face", + "code": "U+0001F610" + }, + { + "id": "new_button", + "name": "NewButton", + "description": "NEW button", + "code": "U+0001F195" + }, + { + "id": "new_moon", + "name": "NewMoon", + "description": "New moon", + "code": "U+0001F311" + }, + { + "id": "new_moon_face", + "name": "NewMoonFace", + "description": "New moon face", + "code": "U+0001F31A" + }, + { + "id": "newspaper", + "name": "Newspaper", + "description": "Newspaper", + "code": "U+0001F4F0" + }, + { + "id": "next_track_button", + "name": "NextTrackButton", + "description": "Next track button", + "code": "U+000023ED" + }, + { + "id": "ng_button", + "name": "NgButton", + "description": "NG button", + "code": "U+0001F196" + }, + { + "id": "night_with_stars", + "name": "NightWithStars", + "description": "Night with stars", + "code": "U+0001F303" + }, + { + "id": "nine_o_clock", + "name": "NineOClock", + "description": "Nine o clock", + "code": "U+0001F558" + }, + { + "id": "nine_thirty", + "name": "NineThirty", + "description": "nine thirty", + "code": "U+0001F564" + }, + { + "id": "ninja", + "name": "Ninja", + "description": "Ninja", + "code": "U+0001F977" + }, + { + "id": "no_bicycles", + "name": "NoBicycles", + "description": "No bicycles", + "code": "U+0001F6B3" + }, + { + "id": "no_entry", + "name": "NoEntry", + "description": "No entry", + "code": "U+000026D4" + }, + { + "id": "no_littering", + "name": "NoLittering", + "description": "No littering", + "code": "U+0001F6AF" + }, + { + "id": "no_mobile_phones", + "name": "NoMobilePhones", + "description": "No mobile phones", + "code": "U+0001F4F5" + }, + { + "id": "non_potable_water", + "name": "NonPotableWater", + "description": "non potable water", + "code": "U+0001F6B1" + }, + { + "id": "no_one_under_eighteen", + "name": "NoOneUnderEighteen", + "description": "No one under eighteen", + "code": "U+0001F51E" + }, + { + "id": "no_pedestrians", + "name": "NoPedestrians", + "description": "No pedestrians", + "code": "U+0001F6B7" + }, + { + "id": "nose", + "name": "Nose", + "description": "Nose", + "code": "U+0001F443" + }, + { + "id": "no_smoking", + "name": "NoSmoking", + "description": "No smoking", + "code": "U+0001F6AD" + }, + { + "id": "notebook", + "name": "Notebook", + "description": "Notebook", + "code": "U+0001F4D3" + }, + { + "id": "notebook_with_decorative_cover", + "name": "NotebookWithDecorativeCover", + "description": "Notebook with decorative cover", + "code": "U+0001F4D4" + }, + { + "id": "nut_and_bolt", + "name": "NutAndBolt", + "description": "Nut and bolt", + "code": "U+0001F529" + }, + { + "id": "o_button_blood_type", + "name": "OButtonBloodType", + "description": "O button blood type", + "code": "U+0001F17E" + }, + { + "id": "octopus", + "name": "Octopus", + "description": "Octopus", + "code": "U+0001F419" + }, + { + "id": "oden", + "name": "Oden", + "description": "Oden", + "code": "U+0001F362" + }, + { + "id": "office_building", + "name": "OfficeBuilding", + "description": "Office building", + "code": "U+0001F3E2" + }, + { + "id": "ogre", + "name": "Ogre", + "description": "Ogre", + "code": "U+0001F479" + }, + { + "id": "oil_drum", + "name": "OilDrum", + "description": "Oil drum", + "code": "U+0001F6E2" + }, + { + "id": "ok_button", + "name": "OkButton", + "description": "OK button", + "code": "U+0001F197" + }, + { + "id": "ok_hand", + "name": "OkHand", + "description": "OK hand", + "code": "U+0001F44C" + }, + { + "id": "older_person", + "name": "OlderPerson", + "description": "Older person", + "code": "U+0001F9D3" + }, + { + "id": "old_key", + "name": "OldKey", + "description": "Old key", + "code": "U+0001F5DD" + }, + { + "id": "old_man", + "name": "OldMan", + "description": "Old man", + "code": "U+0001F474" + }, + { + "id": "old_woman", + "name": "OldWoman", + "description": "Old woman", + "code": "U+0001F475" + }, + { + "id": "olive", + "name": "Olive", + "description": "Olive", + "code": "U+0001FAD2" + }, + { + "id": "om", + "name": "Om", + "description": "Om", + "code": "U+0001F549" + }, + { + "id": "on_arrow", + "name": "OnArrow", + "description": "ON arrow", + "code": "U+0001F51B" + }, + { + "id": "oncoming_automobile", + "name": "OncomingAutomobile", + "description": "Oncoming automobile", + "code": "U+0001F698" + }, + { + "id": "oncoming_bus", + "name": "OncomingBus", + "description": "Oncoming bus", + "code": "U+0001F68D" + }, + { + "id": "oncoming_fist", + "name": "OncomingFist", + "description": "Oncoming fist", + "code": "U+0001F44A" + }, + { + "id": "oncoming_police_car", + "name": "OncomingPoliceCar", + "description": "Oncoming police car", + "code": "U+0001F694" + }, + { + "id": "oncoming_taxi", + "name": "OncomingTaxi", + "description": "Oncoming taxi", + "code": "U+0001F696" + }, + { + "id": "one_o_clock", + "name": "OneOClock", + "description": "One o clock", + "code": "U+0001F550" + }, + { + "id": "one_piece_swimsuit", + "name": "OnePieceSwimsuit", + "description": "one piece swimsuit", + "code": "U+0001FA71" + }, + { + "id": "one_thirty", + "name": "OneThirty", + "description": "one thirty", + "code": "U+0001F55C" + }, + { + "id": "onion", + "name": "Onion", + "description": "Onion", + "code": "U+0001F9C5" + }, + { + "id": "open_book", + "name": "OpenBook", + "description": "Open book", + "code": "U+0001F4D6" + }, + { + "id": "open_file_folder", + "name": "OpenFileFolder", + "description": "Open file folder", + "code": "U+0001F4C2" + }, + { + "id": "open_hands", + "name": "OpenHands", + "description": "Open hands", + "code": "U+0001F450" + }, + { + "id": "open_mailbox_with_lowered_flag", + "name": "OpenMailboxWithLoweredFlag", + "description": "Open mailbox with lowered flag", + "code": "U+0001F4ED" + }, + { + "id": "open_mailbox_with_raised_flag", + "name": "OpenMailboxWithRaisedFlag", + "description": "Open mailbox with raised flag", + "code": "U+0001F4EC" + }, + { + "id": "ophiuchus", + "name": "Ophiuchus", + "description": "Ophiuchus", + "code": "U+000026CE" + }, + { + "id": "optical_disk", + "name": "OpticalDisk", + "description": "Optical disk", + "code": "U+0001F4BF" + }, + { + "id": "orange_book", + "name": "OrangeBook", + "description": "Orange book", + "code": "U+0001F4D9" + }, + { + "id": "orange_circle", + "name": "OrangeCircle", + "description": "Orange circle", + "code": "U+0001F7E0" + }, + { + "id": "orange_heart", + "name": "OrangeHeart", + "description": "Orange heart", + "code": "U+0001F9E1" + }, + { + "id": "orange_square", + "name": "OrangeSquare", + "description": "Orange square", + "code": "U+0001F7E7" + }, + { + "id": "orangutan", + "name": "Orangutan", + "description": "Orangutan", + "code": "U+0001F9A7" + }, + { + "id": "orthodox_cross", + "name": "OrthodoxCross", + "description": "Orthodox cross", + "code": "U+00002626" + }, + { + "id": "otter", + "name": "Otter", + "description": "Otter", + "code": "U+0001F9A6" + }, + { + "id": "outbox_tray", + "name": "OutboxTray", + "description": "Outbox tray", + "code": "U+0001F4E4" + }, + { + "id": "owl", + "name": "Owl", + "description": "Owl", + "code": "U+0001F989" + }, + { + "id": "ox", + "name": "Ox", + "description": "Ox", + "code": "U+0001F402" + }, + { + "id": "oyster", + "name": "Oyster", + "description": "Oyster", + "code": "U+0001F9AA" + }, + { + "id": "package", + "name": "Package", + "description": "Package", + "code": "U+0001F4E6" + }, + { + "id": "page_facing_up", + "name": "PageFacingUp", + "description": "Page facing up", + "code": "U+0001F4C4" + }, + { + "id": "pager", + "name": "Pager", + "description": "Pager", + "code": "U+0001F4DF" + }, + { + "id": "page_with_curl", + "name": "PageWithCurl", + "description": "Page with curl", + "code": "U+0001F4C3" + }, + { + "id": "paintbrush", + "name": "Paintbrush", + "description": "Paintbrush", + "code": "U+0001F58C" + }, + { + "id": "palms_up_together", + "name": "PalmsUpTogether", + "description": "Palms up together", + "code": "U+0001F932" + }, + { + "id": "palm_tree", + "name": "PalmTree", + "description": "Palm tree", + "code": "U+0001F334" + }, + { + "id": "pancakes", + "name": "Pancakes", + "description": "Pancakes", + "code": "U+0001F95E" + }, + { + "id": "panda", + "name": "Panda", + "description": "Panda", + "code": "U+0001F43C" + }, + { + "id": "paperclip", + "name": "Paperclip", + "description": "Paperclip", + "code": "U+0001F4CE" + }, + { + "id": "parachute", + "name": "Parachute", + "description": "Parachute", + "code": "U+0001FA82" + }, + { + "id": "parrot", + "name": "Parrot", + "description": "Parrot", + "code": "U+0001F99C" + }, + { + "id": "part_alternation_mark", + "name": "PartAlternationMark", + "description": "Part alternation mark", + "code": "U+0000303D" + }, + { + "id": "partying_face", + "name": "PartyingFace", + "description": "Partying face", + "code": "U+0001F973" + }, + { + "id": "party_popper", + "name": "PartyPopper", + "description": "Party popper", + "code": "U+0001F389" + }, + { + "id": "passenger_ship", + "name": "PassengerShip", + "description": "Passenger ship", + "code": "U+0001F6F3" + }, + { + "id": "passport_control", + "name": "PassportControl", + "description": "Passport control", + "code": "U+0001F6C2" + }, + { + "id": "pause_button", + "name": "PauseButton", + "description": "Pause button", + "code": "U+000023F8" + }, + { + "id": "paw_prints", + "name": "PawPrints", + "description": "Paw prints", + "code": "U+0001F43E" + }, + { + "id": "p_button", + "name": "PButton", + "description": "P button", + "code": "U+0001F17F" + }, + { + "id": "peace_symbol", + "name": "PeaceSymbol", + "description": "Peace symbol", + "code": "U+0000262E" + }, + { + "id": "peach", + "name": "Peach", + "description": "Peach", + "code": "U+0001F351" + }, + { + "id": "peacock", + "name": "Peacock", + "description": "Peacock", + "code": "U+0001F99A" + }, + { + "id": "peanuts", + "name": "Peanuts", + "description": "Peanuts", + "code": "U+0001F95C" + }, + { + "id": "pear", + "name": "Pear", + "description": "Pear", + "code": "U+0001F350" + }, + { + "id": "pen", + "name": "Pen", + "description": "Pen", + "code": "U+0001F58A" + }, + { + "id": "pencil", + "name": "Pencil", + "description": "Pencil", + "code": "U+0000270F" + }, + { + "id": "penguin", + "name": "Penguin", + "description": "Penguin", + "code": "U+0001F427" + }, + { + "id": "pensive_face", + "name": "PensiveFace", + "description": "Pensive face", + "code": "U+0001F614" + }, + { + "id": "people_hugging", + "name": "PeopleHugging", + "description": "People hugging", + "code": "U+0001FAC2" + }, + { + "id": "people_with_bunny_ears", + "name": "PeopleWithBunnyEars", + "description": "People with bunny ears", + "code": "U+0001F46F" + }, + { + "id": "people_wrestling", + "name": "PeopleWrestling", + "description": "People wrestling", + "code": "U+0001F93C" + }, + { + "id": "performing_arts", + "name": "PerformingArts", + "description": "Performing arts", + "code": "U+0001F3AD" + }, + { + "id": "persevering_face", + "name": "PerseveringFace", + "description": "Persevering face", + "code": "U+0001F623" + }, + { + "id": "person", + "name": "Person", + "description": "Person", + "code": "U+0001F9D1" + }, + { + "id": "person_beard", + "name": "PersonBeard", + "description": "Person beard", + "code": "U+0001F9D4" + }, + { + "id": "person_biking", + "name": "PersonBiking", + "description": "Person biking", + "code": "U+0001F6B4" + }, + { + "id": "person_blond_hair", + "name": "PersonBlondHair", + "description": "Person blond hair", + "code": "U+0001F471" + }, + { + "id": "person_bouncing_ball", + "name": "PersonBouncingBall", + "description": "Person bouncing ball", + "code": "U+000026F9" + }, + { + "id": "person_bowing", + "name": "PersonBowing", + "description": "Person bowing", + "code": "U+0001F647" + }, + { + "id": "person_cartwheeling", + "name": "PersonCartwheeling", + "description": "Person cartwheeling", + "code": "U+0001F938" + }, + { + "id": "person_climbing", + "name": "PersonClimbing", + "description": "Person climbing", + "code": "U+0001F9D7" + }, + { + "id": "person_facepalming", + "name": "PersonFacepalming", + "description": "Person facepalming", + "code": "U+0001F926" + }, + { + "id": "person_fencing", + "name": "PersonFencing", + "description": "Person fencing", + "code": "U+0001F93A" + }, + { + "id": "person_frowning", + "name": "PersonFrowning", + "description": "Person frowning", + "code": "U+0001F64D" + }, + { + "id": "person_gesturing_no", + "name": "PersonGesturingNo", + "description": "Person gesturing NO", + "code": "U+0001F645" + }, + { + "id": "person_gesturing_ok", + "name": "PersonGesturingOk", + "description": "Person gesturing OK", + "code": "U+0001F646" + }, + { + "id": "person_getting_haircut", + "name": "PersonGettingHaircut", + "description": "Person getting haircut", + "code": "U+0001F487" + }, + { + "id": "person_getting_massage", + "name": "PersonGettingMassage", + "description": "Person getting massage", + "code": "U+0001F486" + }, + { + "id": "person_golfing", + "name": "PersonGolfing", + "description": "Person golfing", + "code": "U+0001F3CC" + }, + { + "id": "person_in_bed", + "name": "PersonInBed", + "description": "Person in bed", + "code": "U+0001F6CC" + }, + { + "id": "person_in_lotus_position", + "name": "PersonInLotusPosition", + "description": "Person in lotus position", + "code": "U+0001F9D8" + }, + { + "id": "person_in_steamy_room", + "name": "PersonInSteamyRoom", + "description": "Person in steamy room", + "code": "U+0001F9D6" + }, + { + "id": "person_in_suit_levitating", + "name": "PersonInSuitLevitating", + "description": "Person in suit levitating", + "code": "U+0001F574" + }, + { + "id": "person_in_tuxedo", + "name": "PersonInTuxedo", + "description": "Person in tuxedo", + "code": "U+0001F935" + }, + { + "id": "person_juggling", + "name": "PersonJuggling", + "description": "Person juggling", + "code": "U+0001F939" + }, + { + "id": "person_kneeling", + "name": "PersonKneeling", + "description": "Person kneeling", + "code": "U+0001F9CE" + }, + { + "id": "person_lifting_weights", + "name": "PersonLiftingWeights", + "description": "Person lifting weights", + "code": "U+0001F3CB" + }, + { + "id": "person_mountain_biking", + "name": "PersonMountainBiking", + "description": "Person mountain biking", + "code": "U+0001F6B5" + }, + { + "id": "person_playing_handball", + "name": "PersonPlayingHandball", + "description": "Person playing handball", + "code": "U+0001F93E" + }, + { + "id": "person_playing_water_polo", + "name": "PersonPlayingWaterPolo", + "description": "Person playing water polo", + "code": "U+0001F93D" + }, + { + "id": "person_pouting", + "name": "PersonPouting", + "description": "Person pouting", + "code": "U+0001F64E" + }, + { + "id": "person_raising_hand", + "name": "PersonRaisingHand", + "description": "Person raising hand", + "code": "U+0001F64B" + }, + { + "id": "person_rowing_boat", + "name": "PersonRowingBoat", + "description": "Person rowing boat", + "code": "U+0001F6A3" + }, + { + "id": "person_running", + "name": "PersonRunning", + "description": "Person running", + "code": "U+0001F3C3" + }, + { + "id": "person_shrugging", + "name": "PersonShrugging", + "description": "Person shrugging", + "code": "U+0001F937" + }, + { + "id": "person_standing", + "name": "PersonStanding", + "description": "Person standing", + "code": "U+0001F9CD" + }, + { + "id": "person_surfing", + "name": "PersonSurfing", + "description": "Person surfing", + "code": "U+0001F3C4" + }, + { + "id": "person_swimming", + "name": "PersonSwimming", + "description": "Person swimming", + "code": "U+0001F3CA" + }, + { + "id": "person_taking_bath", + "name": "PersonTakingBath", + "description": "Person taking bath", + "code": "U+0001F6C0" + }, + { + "id": "person_tipping_hand", + "name": "PersonTippingHand", + "description": "Person tipping hand", + "code": "U+0001F481" + }, + { + "id": "person_walking", + "name": "PersonWalking", + "description": "Person walking", + "code": "U+0001F6B6" + }, + { + "id": "person_wearing_turban", + "name": "PersonWearingTurban", + "description": "Person wearing turban", + "code": "U+0001F473" + }, + { + "id": "person_with_skullcap", + "name": "PersonWithSkullcap", + "description": "Person with skullcap", + "code": "U+0001F472" + }, + { + "id": "person_with_veil", + "name": "PersonWithVeil", + "description": "Person with veil", + "code": "U+0001F470" + }, + { + "id": "petri_dish", + "name": "PetriDish", + "description": "Petri dish", + "code": "U+0001F9EB" + }, + { + "id": "pick", + "name": "Pick", + "description": "Pick", + "code": "U+000026CF" + }, + { + "id": "pickup_truck", + "name": "PickupTruck", + "description": "Pickup truck", + "code": "U+0001F6FB" + }, + { + "id": "pie", + "name": "Pie", + "description": "Pie", + "code": "U+0001F967" + }, + { + "id": "pig", + "name": "Pig", + "description": "Pig", + "code": "U+0001F416" + }, + { + "id": "pig_face", + "name": "PigFace", + "description": "Pig face", + "code": "U+0001F437" + }, + { + "id": "pig_nose", + "name": "PigNose", + "description": "Pig nose", + "code": "U+0001F43D" + }, + { + "id": "pile_of_poo", + "name": "PileOfPoo", + "description": "Pile of poo", + "code": "U+0001F4A9" + }, + { + "id": "pill", + "name": "Pill", + "description": "Pill", + "code": "U+0001F48A" + }, + { + "id": "piñata", + "name": "Piñata", + "description": "Piñata", + "code": "U+0001FA85" + }, + { + "id": "pinched_fingers", + "name": "PinchedFingers", + "description": "Pinched fingers", + "code": "U+0001F90C" + }, + { + "id": "pinching_hand", + "name": "PinchingHand", + "description": "Pinching hand", + "code": "U+0001F90F" + }, + { + "id": "pineapple", + "name": "Pineapple", + "description": "Pineapple", + "code": "U+0001F34D" + }, + { + "id": "pine_decoration", + "name": "PineDecoration", + "description": "Pine decoration", + "code": "U+0001F38D" + }, + { + "id": "ping_pong", + "name": "PingPong", + "description": "Ping pong", + "code": "U+0001F3D3" + }, + { + "id": "pisces", + "name": "Pisces", + "description": "Pisces", + "code": "U+00002653" + }, + { + "id": "pizza", + "name": "Pizza", + "description": "Pizza", + "code": "U+0001F355" + }, + { + "id": "placard", + "name": "Placard", + "description": "Placard", + "code": "U+0001FAA7" + }, + { + "id": "place_of_worship", + "name": "PlaceOfWorship", + "description": "Place of worship", + "code": "U+0001F6D0" + }, + { + "id": "play_button", + "name": "PlayButton", + "description": "Play button", + "code": "U+000025B6" + }, + { + "id": "play_or_pause_button", + "name": "PlayOrPauseButton", + "description": "Play or pause button", + "code": "U+000023EF" + }, + { + "id": "pleading_face", + "name": "PleadingFace", + "description": "Pleading face", + "code": "U+0001F97A" + }, + { + "id": "plunger", + "name": "Plunger", + "description": "Plunger", + "code": "U+0001FAA0" + }, + { + "id": "plus", + "name": "Plus", + "description": "Plus", + "code": "U+00002795" + }, + { + "id": "police_car", + "name": "PoliceCar", + "description": "Police car", + "code": "U+0001F693" + }, + { + "id": "police_car_light", + "name": "PoliceCarLight", + "description": "Police car light", + "code": "U+0001F6A8" + }, + { + "id": "police_officer", + "name": "PoliceOfficer", + "description": "Police officer", + "code": "U+0001F46E" + }, + { + "id": "poodle", + "name": "Poodle", + "description": "Poodle", + "code": "U+0001F429" + }, + { + "id": "pool_8_ball", + "name": "Pool8Ball", + "description": "Pool 8 ball", + "code": "U+0001F3B1" + }, + { + "id": "popcorn", + "name": "Popcorn", + "description": "Popcorn", + "code": "U+0001F37F" + }, + { + "id": "postal_horn", + "name": "PostalHorn", + "description": "Postal horn", + "code": "U+0001F4EF" + }, + { + "id": "postbox", + "name": "Postbox", + "description": "Postbox", + "code": "U+0001F4EE" + }, + { + "id": "post_office", + "name": "PostOffice", + "description": "Post office", + "code": "U+0001F3E4" + }, + { + "id": "potable_water", + "name": "PotableWater", + "description": "Potable water", + "code": "U+0001F6B0" + }, + { + "id": "potato", + "name": "Potato", + "description": "Potato", + "code": "U+0001F954" + }, + { + "id": "pot_of_food", + "name": "PotOfFood", + "description": "Pot of food", + "code": "U+0001F372" + }, + { + "id": "potted_plant", + "name": "PottedPlant", + "description": "Potted plant", + "code": "U+0001FAB4" + }, + { + "id": "poultry_leg", + "name": "PoultryLeg", + "description": "Poultry leg", + "code": "U+0001F357" + }, + { + "id": "pound_banknote", + "name": "PoundBanknote", + "description": "Pound banknote", + "code": "U+0001F4B7" + }, + { + "id": "pouting_cat", + "name": "PoutingCat", + "description": "Pouting cat", + "code": "U+0001F63E" + }, + { + "id": "pouting_face", + "name": "PoutingFace", + "description": "Pouting face", + "code": "U+0001F621" + }, + { + "id": "prayer_beads", + "name": "PrayerBeads", + "description": "Prayer beads", + "code": "U+0001F4FF" + }, + { + "id": "pregnant_woman", + "name": "PregnantWoman", + "description": "Pregnant woman", + "code": "U+0001F930" + }, + { + "id": "pretzel", + "name": "Pretzel", + "description": "Pretzel", + "code": "U+0001F968" + }, + { + "id": "prince", + "name": "Prince", + "description": "Prince", + "code": "U+0001F934" + }, + { + "id": "princess", + "name": "Princess", + "description": "Princess", + "code": "U+0001F478" + }, + { + "id": "printer", + "name": "Printer", + "description": "Printer", + "code": "U+0001F5A8" + }, + { + "id": "prohibited", + "name": "Prohibited", + "description": "Prohibited", + "code": "U+0001F6AB" + }, + { + "id": "purple_circle", + "name": "PurpleCircle", + "description": "Purple circle", + "code": "U+0001F7E3" + }, + { + "id": "purple_heart", + "name": "PurpleHeart", + "description": "Purple heart", + "code": "U+0001F49C" + }, + { + "id": "purple_square", + "name": "PurpleSquare", + "description": "Purple square", + "code": "U+0001F7EA" + }, + { + "id": "purse", + "name": "Purse", + "description": "Purse", + "code": "U+0001F45B" + }, + { + "id": "pushpin", + "name": "Pushpin", + "description": "Pushpin", + "code": "U+0001F4CC" + }, + { + "id": "puzzle_piece", + "name": "PuzzlePiece", + "description": "Puzzle piece", + "code": "U+0001F9E9" + }, + { + "id": "rabbit", + "name": "Rabbit", + "description": "Rabbit", + "code": "U+0001F407" + }, + { + "id": "rabbit_face", + "name": "RabbitFace", + "description": "Rabbit face", + "code": "U+0001F430" + }, + { + "id": "raccoon", + "name": "Raccoon", + "description": "Raccoon", + "code": "U+0001F99D" + }, + { + "id": "racing_car", + "name": "RacingCar", + "description": "Racing car", + "code": "U+0001F3CE" + }, + { + "id": "radio", + "name": "Radio", + "description": "Radio", + "code": "U+0001F4FB" + }, + { + "id": "radioactive", + "name": "Radioactive", + "description": "Radioactive", + "code": "U+00002622" + }, + { + "id": "radio_button", + "name": "RadioButton", + "description": "Radio button", + "code": "U+0001F518" + }, + { + "id": "railway_car", + "name": "RailwayCar", + "description": "Railway car", + "code": "U+0001F683" + }, + { + "id": "railway_track", + "name": "RailwayTrack", + "description": "Railway track", + "code": "U+0001F6E4" + }, + { + "id": "rainbow", + "name": "Rainbow", + "description": "Rainbow", + "code": "U+0001F308" + }, + { + "id": "raised_back_of_hand", + "name": "RaisedBackOfHand", + "description": "Raised back of hand", + "code": "U+0001F91A" + }, + { + "id": "raised_fist", + "name": "RaisedFist", + "description": "Raised fist", + "code": "U+0000270A" + }, + { + "id": "raised_hand", + "name": "RaisedHand", + "description": "Raised hand", + "code": "U+0000270B" + }, + { + "id": "raising_hands", + "name": "RaisingHands", + "description": "Raising hands", + "code": "U+0001F64C" + }, + { + "id": "ram", + "name": "Ram", + "description": "Ram", + "code": "U+0001F40F" + }, + { + "id": "rat", + "name": "Rat", + "description": "Rat", + "code": "U+0001F400" + }, + { + "id": "razor", + "name": "Razor", + "description": "Razor", + "code": "U+0001FA92" + }, + { + "id": "receipt", + "name": "Receipt", + "description": "Receipt", + "code": "U+0001F9FE" + }, + { + "id": "record_button", + "name": "RecordButton", + "description": "Record button", + "code": "U+000023FA" + }, + { + "id": "recycling_symbol", + "name": "RecyclingSymbol", + "description": "Recycling symbol", + "code": "U+0000267B" + }, + { + "id": "red_apple", + "name": "RedApple", + "description": "Red apple", + "code": "U+0001F34E" + }, + { + "id": "red_circle", + "name": "RedCircle", + "description": "Red circle", + "code": "U+0001F534" + }, + { + "id": "red_envelope", + "name": "RedEnvelope", + "description": "Red envelope", + "code": "U+0001F9E7" + }, + { + "id": "red_exclamation_mark", + "name": "RedExclamationMark", + "description": "Red exclamation mark", + "code": "U+00002757" + }, + { + "id": "red_hair", + "name": "RedHair", + "description": "Red hair", + "code": "U+0001F9B0" + }, + { + "id": "red_heart", + "name": "RedHeart", + "description": "Red heart", + "code": "U+00002764" + }, + { + "id": "red_paper_lantern", + "name": "RedPaperLantern", + "description": "Red paper lantern", + "code": "U+0001F3EE" + }, + { + "id": "red_question_mark", + "name": "RedQuestionMark", + "description": "Red question mark", + "code": "U+00002753" + }, + { + "id": "red_square", + "name": "RedSquare", + "description": "Red square", + "code": "U+0001F7E5" + }, + { + "id": "red_triangle_pointed_down", + "name": "RedTrianglePointedDown", + "description": "Red triangle pointed down", + "code": "U+0001F53B" + }, + { + "id": "red_triangle_pointed_up", + "name": "RedTrianglePointedUp", + "description": "Red triangle pointed up", + "code": "U+0001F53A" + }, + { + "id": "registered", + "name": "Registered", + "description": "Registered", + "code": "U+000000AE" + }, + { + "id": "relieved_face", + "name": "RelievedFace", + "description": "Relieved face", + "code": "U+0001F60C" + }, + { + "id": "reminder_ribbon", + "name": "ReminderRibbon", + "description": "Reminder ribbon", + "code": "U+0001F397" + }, + { + "id": "repeat_button", + "name": "RepeatButton", + "description": "Repeat button", + "code": "U+0001F501" + }, + { + "id": "repeat_single_button", + "name": "RepeatSingleButton", + "description": "Repeat single button", + "code": "U+0001F502" + }, + { + "id": "rescue_workers_helmet", + "name": "RescueWorkersHelmet", + "description": "Rescue worker s helmet", + "code": "U+000026D1" + }, + { + "id": "restroom", + "name": "Restroom", + "description": "Restroom", + "code": "U+0001F6BB" + }, + { + "id": "reverse_button", + "name": "ReverseButton", + "description": "Reverse button", + "code": "U+000025C0" + }, + { + "id": "revolving_hearts", + "name": "RevolvingHearts", + "description": "Revolving hearts", + "code": "U+0001F49E" + }, + { + "id": "rhinoceros", + "name": "Rhinoceros", + "description": "Rhinoceros", + "code": "U+0001F98F" + }, + { + "id": "ribbon", + "name": "Ribbon", + "description": "Ribbon", + "code": "U+0001F380" + }, + { + "id": "rice_ball", + "name": "RiceBall", + "description": "Rice ball", + "code": "U+0001F359" + }, + { + "id": "rice_cracker", + "name": "RiceCracker", + "description": "Rice cracker", + "code": "U+0001F358" + }, + { + "id": "right_anger_bubble", + "name": "RightAngerBubble", + "description": "Right anger bubble", + "code": "U+0001F5EF" + }, + { + "id": "right_arrow", + "name": "RightArrow", + "description": "Right arrow", + "code": "U+000027A1" + }, + { + "id": "right_arrow_curving_down", + "name": "RightArrowCurvingDown", + "description": "Right arrow curving down", + "code": "U+00002935" + }, + { + "id": "right_arrow_curving_left", + "name": "RightArrowCurvingLeft", + "description": "Right arrow curving left", + "code": "U+000021A9" + }, + { + "id": "right_arrow_curving_up", + "name": "RightArrowCurvingUp", + "description": "Right arrow curving up", + "code": "U+00002934" + }, + { + "id": "right_facing_fist", + "name": "RightFacingFist", + "description": "right facing fist", + "code": "U+0001F91C" + }, + { + "id": "ring", + "name": "Ring", + "description": "Ring", + "code": "U+0001F48D" + }, + { + "id": "ringed_planet", + "name": "RingedPlanet", + "description": "Ringed planet", + "code": "U+0001FA90" + }, + { + "id": "roasted_sweet_potato", + "name": "RoastedSweetPotato", + "description": "Roasted sweet potato", + "code": "U+0001F360" + }, + { + "id": "robot", + "name": "Robot", + "description": "Robot", + "code": "U+0001F916" + }, + { + "id": "rock", + "name": "Rock", + "description": "Rock", + "code": "U+0001FAA8" + }, + { + "id": "rocket", + "name": "Rocket", + "description": "Rocket", + "code": "U+0001F680" + }, + { + "id": "rolled_up_newspaper", + "name": "RolledUpNewspaper", + "description": "rolled up newspaper", + "code": "U+0001F5DE" + }, + { + "id": "roller_coaster", + "name": "RollerCoaster", + "description": "Roller coaster", + "code": "U+0001F3A2" + }, + { + "id": "roller_skate", + "name": "RollerSkate", + "description": "Roller skate", + "code": "U+0001F6FC" + }, + { + "id": "rolling_on_the_floor_laughing", + "name": "RollingOnTheFloorLaughing", + "description": "Rolling on the floor laughing", + "code": "U+0001F923" + }, + { + "id": "roll_of_paper", + "name": "RollOfPaper", + "description": "Roll of paper", + "code": "U+0001F9FB" + }, + { + "id": "rooster", + "name": "Rooster", + "description": "Rooster", + "code": "U+0001F413" + }, + { + "id": "rose", + "name": "Rose", + "description": "Rose", + "code": "U+0001F339" + }, + { + "id": "rosette", + "name": "Rosette", + "description": "Rosette", + "code": "U+0001F3F5" + }, + { + "id": "round_pushpin", + "name": "RoundPushpin", + "description": "Round pushpin", + "code": "U+0001F4CD" + }, + { + "id": "rugby_football", + "name": "RugbyFootball", + "description": "Rugby football", + "code": "U+0001F3C9" + }, + { + "id": "running_shirt", + "name": "RunningShirt", + "description": "Running shirt", + "code": "U+0001F3BD" + }, + { + "id": "running_shoe", + "name": "RunningShoe", + "description": "Running shoe", + "code": "U+0001F45F" + }, + { + "id": "sad_but_relieved_face", + "name": "SadButRelievedFace", + "description": "Sad but relieved face", + "code": "U+0001F625" + }, + { + "id": "safety_pin", + "name": "SafetyPin", + "description": "Safety pin", + "code": "U+0001F9F7" + }, + { + "id": "safety_vest", + "name": "SafetyVest", + "description": "Safety vest", + "code": "U+0001F9BA" + }, + { + "id": "sagittarius", + "name": "Sagittarius", + "description": "Sagittarius", + "code": "U+00002650" + }, + { + "id": "sailboat", + "name": "Sailboat", + "description": "Sailboat", + "code": "U+000026F5" + }, + { + "id": "sake", + "name": "Sake", + "description": "Sake", + "code": "U+0001F376" + }, + { + "id": "salt", + "name": "Salt", + "description": "Salt", + "code": "U+0001F9C2" + }, + { + "id": "sandwich", + "name": "Sandwich", + "description": "Sandwich", + "code": "U+0001F96A" + }, + { + "id": "santa_claus", + "name": "SantaClaus", + "description": "Santa claus", + "code": "U+0001F385" + }, + { + "id": "sari", + "name": "Sari", + "description": "Sari", + "code": "U+0001F97B" + }, + { + "id": "satellite", + "name": "Satellite", + "description": "Satellite", + "code": "U+0001F6F0" + }, + { + "id": "satellite_antenna", + "name": "SatelliteAntenna", + "description": "Satellite antenna", + "code": "U+0001F4E1" + }, + { + "id": "sauropod", + "name": "Sauropod", + "description": "Sauropod", + "code": "U+0001F995" + }, + { + "id": "saxophone", + "name": "Saxophone", + "description": "Saxophone", + "code": "U+0001F3B7" + }, + { + "id": "scarf", + "name": "Scarf", + "description": "Scarf", + "code": "U+0001F9E3" + }, + { + "id": "school", + "name": "School", + "description": "School", + "code": "U+0001F3EB" + }, + { + "id": "scissors", + "name": "Scissors", + "description": "Scissors", + "code": "U+00002702" + }, + { + "id": "scorpio", + "name": "Scorpio", + "description": "Scorpio", + "code": "U+0000264F" + }, + { + "id": "scorpion", + "name": "Scorpion", + "description": "Scorpion", + "code": "U+0001F982" + }, + { + "id": "screwdriver", + "name": "Screwdriver", + "description": "Screwdriver", + "code": "U+0001FA9B" + }, + { + "id": "scroll", + "name": "Scroll", + "description": "Scroll", + "code": "U+0001F4DC" + }, + { + "id": "seal", + "name": "Seal", + "description": "Seal", + "code": "U+0001F9AD" + }, + { + "id": "seat", + "name": "Seat", + "description": "Seat", + "code": "U+0001F4BA" + }, + { + "id": "2nd_place_medal", + "name": "SecondPlaceMedal", + "description": "2nd place medal", + "code": "U+0001F948" + }, + { + "id": "seedling", + "name": "Seedling", + "description": "Seedling", + "code": "U+0001F331" + }, + { + "id": "see_no_evil_monkey", + "name": "SeeNoEvilMonkey", + "description": "see no evil monkey", + "code": "U+0001F648" + }, + { + "id": "selfie", + "name": "Selfie", + "description": "Selfie", + "code": "U+0001F933" + }, + { + "id": "seven_o_clock", + "name": "SevenOClock", + "description": "Seven o clock", + "code": "U+0001F556" + }, + { + "id": "seven_thirty", + "name": "SevenThirty", + "description": "seven thirty", + "code": "U+0001F562" + }, + { + "id": "sewing_needle", + "name": "SewingNeedle", + "description": "Sewing needle", + "code": "U+0001FAA1" + }, + { + "id": "shallow_pan_of_food", + "name": "ShallowPanOfFood", + "description": "Shallow pan of food", + "code": "U+0001F958" + }, + { + "id": "shamrock", + "name": "Shamrock", + "description": "Shamrock", + "code": "U+00002618" + }, + { + "id": "shark", + "name": "Shark", + "description": "Shark", + "code": "U+0001F988" + }, + { + "id": "shaved_ice", + "name": "ShavedIce", + "description": "Shaved ice", + "code": "U+0001F367" + }, + { + "id": "sheaf_of_rice", + "name": "SheafOfRice", + "description": "Sheaf of rice", + "code": "U+0001F33E" + }, + { + "id": "shield", + "name": "Shield", + "description": "Shield", + "code": "U+0001F6E1" + }, + { + "id": "shinto_shrine", + "name": "ShintoShrine", + "description": "Shinto shrine", + "code": "U+000026E9" + }, + { + "id": "ship", + "name": "Ship", + "description": "Ship", + "code": "U+0001F6A2" + }, + { + "id": "shooting_star", + "name": "ShootingStar", + "description": "Shooting star", + "code": "U+0001F320" + }, + { + "id": "shopping_bags", + "name": "ShoppingBags", + "description": "Shopping bags", + "code": "U+0001F6CD" + }, + { + "id": "shopping_cart", + "name": "ShoppingCart", + "description": "Shopping cart", + "code": "U+0001F6D2" + }, + { + "id": "shortcake", + "name": "Shortcake", + "description": "Shortcake", + "code": "U+0001F370" + }, + { + "id": "shorts", + "name": "Shorts", + "description": "Shorts", + "code": "U+0001FA73" + }, + { + "id": "shower", + "name": "Shower", + "description": "Shower", + "code": "U+0001F6BF" + }, + { + "id": "shrimp", + "name": "Shrimp", + "description": "Shrimp", + "code": "U+0001F990" + }, + { + "id": "shuffle_tracks_button", + "name": "ShuffleTracksButton", + "description": "Shuffle tracks button", + "code": "U+0001F500" + }, + { + "id": "shushing_face", + "name": "ShushingFace", + "description": "Shushing face", + "code": "U+0001F92B" + }, + { + "id": "sign_of_the_horns", + "name": "SignOfTheHorns", + "description": "Sign of the horns", + "code": "U+0001F918" + }, + { + "id": "six_o_clock", + "name": "SixOClock", + "description": "Six o clock", + "code": "U+0001F555" + }, + { + "id": "six_thirty", + "name": "SixThirty", + "description": "six thirty", + "code": "U+0001F561" + }, + { + "id": "skateboard", + "name": "Skateboard", + "description": "Skateboard", + "code": "U+0001F6F9" + }, + { + "id": "skier", + "name": "Skier", + "description": "Skier", + "code": "U+000026F7" + }, + { + "id": "skis", + "name": "Skis", + "description": "Skis", + "code": "U+0001F3BF" + }, + { + "id": "skull", + "name": "Skull", + "description": "Skull", + "code": "U+0001F480" + }, + { + "id": "skull_and_crossbones", + "name": "SkullAndCrossbones", + "description": "Skull and crossbones", + "code": "U+00002620" + }, + { + "id": "skunk", + "name": "Skunk", + "description": "Skunk", + "code": "U+0001F9A8" + }, + { + "id": "sled", + "name": "Sled", + "description": "Sled", + "code": "U+0001F6F7" + }, + { + "id": "sleeping_face", + "name": "SleepingFace", + "description": "Sleeping face", + "code": "U+0001F634" + }, + { + "id": "sleepy_face", + "name": "SleepyFace", + "description": "Sleepy face", + "code": "U+0001F62A" + }, + { + "id": "slightly_frowning_face", + "name": "SlightlyFrowningFace", + "description": "Slightly frowning face", + "code": "U+0001F641" + }, + { + "id": "slightly_smiling_face", + "name": "SlightlySmilingFace", + "description": "Slightly smiling face", + "code": "U+0001F642" + }, + { + "id": "sloth", + "name": "Sloth", + "description": "Sloth", + "code": "U+0001F9A5" + }, + { + "id": "slot_machine", + "name": "SlotMachine", + "description": "Slot machine", + "code": "U+0001F3B0" + }, + { + "id": "small_airplane", + "name": "SmallAirplane", + "description": "Small airplane", + "code": "U+0001F6E9" + }, + { + "id": "small_blue_diamond", + "name": "SmallBlueDiamond", + "description": "Small blue diamond", + "code": "U+0001F539" + }, + { + "id": "small_orange_diamond", + "name": "SmallOrangeDiamond", + "description": "Small orange diamond", + "code": "U+0001F538" + }, + { + "id": "smiling_cat_with_heart_eyes", + "name": "SmilingCatWithHeartEyes", + "description": "smiling cat with heart eyes", + "code": "U+0001F63B" + }, + { + "id": "smiling_face", + "name": "SmilingFace", + "description": "Smiling face", + "code": "U+0000263A" + }, + { + "id": "smiling_face_with_halo", + "name": "SmilingFaceWithHalo", + "description": "Smiling face with halo", + "code": "U+0001F607" + }, + { + "id": "smiling_face_with_heart_eyes", + "name": "SmilingFaceWithHeartEyes", + "description": "smiling face with heart eyes", + "code": "U+0001F60D" + }, + { + "id": "smiling_face_with_hearts", + "name": "SmilingFaceWithHearts", + "description": "Smiling face with hearts", + "code": "U+0001F970" + }, + { + "id": "smiling_face_with_horns", + "name": "SmilingFaceWithHorns", + "description": "Smiling face with horns", + "code": "U+0001F608" + }, + { + "id": "smiling_face_with_smiling_eyes", + "name": "SmilingFaceWithSmilingEyes", + "description": "Smiling face with smiling eyes", + "code": "U+0001F60A" + }, + { + "id": "smiling_face_with_sunglasses", + "name": "SmilingFaceWithSunglasses", + "description": "Smiling face with sunglasses", + "code": "U+0001F60E" + }, + { + "id": "smiling_face_with_tear", + "name": "SmilingFaceWithTear", + "description": "Smiling face with tear", + "code": "U+0001F972" + }, + { + "id": "smirking_face", + "name": "SmirkingFace", + "description": "Smirking face", + "code": "U+0001F60F" + }, + { + "id": "snail", + "name": "Snail", + "description": "Snail", + "code": "U+0001F40C" + }, + { + "id": "snake", + "name": "Snake", + "description": "Snake", + "code": "U+0001F40D" + }, + { + "id": "sneezing_face", + "name": "SneezingFace", + "description": "Sneezing face", + "code": "U+0001F927" + }, + { + "id": "snowboarder", + "name": "Snowboarder", + "description": "Snowboarder", + "code": "U+0001F3C2" + }, + { + "id": "snow_capped_mountain", + "name": "SnowCappedMountain", + "description": "snow capped mountain", + "code": "U+0001F3D4" + }, + { + "id": "snowflake", + "name": "Snowflake", + "description": "Snowflake", + "code": "U+00002744" + }, + { + "id": "snowman", + "name": "Snowman", + "description": "Snowman", + "code": "U+00002603" + }, + { + "id": "snowman_without_snow", + "name": "SnowmanWithoutSnow", + "description": "Snowman without snow", + "code": "U+000026C4" + }, + { + "id": "soap", + "name": "Soap", + "description": "Soap", + "code": "U+0001F9FC" + }, + { + "id": "soccer_ball", + "name": "SoccerBall", + "description": "Soccer ball", + "code": "U+000026BD" + }, + { + "id": "socks", + "name": "Socks", + "description": "Socks", + "code": "U+0001F9E6" + }, + { + "id": "softball", + "name": "Softball", + "description": "Softball", + "code": "U+0001F94E" + }, + { + "id": "soft_ice_cream", + "name": "SoftIceCream", + "description": "Soft ice cream", + "code": "U+0001F366" + }, + { + "id": "soon_arrow", + "name": "SoonArrow", + "description": "SOON arrow", + "code": "U+0001F51C" + }, + { + "id": "sos_button", + "name": "SosButton", + "description": "SOS button", + "code": "U+0001F198" + }, + { + "id": "spade_suit", + "name": "SpadeSuit", + "description": "Spade suit", + "code": "U+00002660" + }, + { + "id": "spaghetti", + "name": "Spaghetti", + "description": "Spaghetti", + "code": "U+0001F35D" + }, + { + "id": "sparkle", + "name": "Sparkle", + "description": "Sparkle", + "code": "U+00002747" + }, + { + "id": "sparkler", + "name": "Sparkler", + "description": "Sparkler", + "code": "U+0001F387" + }, + { + "id": "sparkles", + "name": "Sparkles", + "description": "Sparkles", + "code": "U+00002728" + }, + { + "id": "sparkling_heart", + "name": "SparklingHeart", + "description": "Sparkling heart", + "code": "U+0001F496" + }, + { + "id": "speaker_high_volume", + "name": "SpeakerHighVolume", + "description": "Speaker high volume", + "code": "U+0001F50A" + }, + { + "id": "speaker_low_volume", + "name": "SpeakerLowVolume", + "description": "Speaker low volume", + "code": "U+0001F508" + }, + { + "id": "speaker_medium_volume", + "name": "SpeakerMediumVolume", + "description": "Speaker medium volume", + "code": "U+0001F509" + }, + { + "id": "speaking_head", + "name": "SpeakingHead", + "description": "Speaking head", + "code": "U+0001F5E3" + }, + { + "id": "speak_no_evil_monkey", + "name": "SpeakNoEvilMonkey", + "description": "speak no evil monkey", + "code": "U+0001F64A" + }, + { + "id": "speech_balloon", + "name": "SpeechBalloon", + "description": "Speech balloon", + "code": "U+0001F4AC" + }, + { + "id": "speedboat", + "name": "Speedboat", + "description": "Speedboat", + "code": "U+0001F6A4" + }, + { + "id": "spider", + "name": "Spider", + "description": "Spider", + "code": "U+0001F577" + }, + { + "id": "spider_web", + "name": "SpiderWeb", + "description": "Spider web", + "code": "U+0001F578" + }, + { + "id": "spiral_calendar", + "name": "SpiralCalendar", + "description": "Spiral calendar", + "code": "U+0001F5D3" + }, + { + "id": "spiral_notepad", + "name": "SpiralNotepad", + "description": "Spiral notepad", + "code": "U+0001F5D2" + }, + { + "id": "spiral_shell", + "name": "SpiralShell", + "description": "Spiral shell", + "code": "U+0001F41A" + }, + { + "id": "sponge", + "name": "Sponge", + "description": "Sponge", + "code": "U+0001F9FD" + }, + { + "id": "spoon", + "name": "Spoon", + "description": "Spoon", + "code": "U+0001F944" + }, + { + "id": "sports_medal", + "name": "SportsMedal", + "description": "Sports medal", + "code": "U+0001F3C5" + }, + { + "id": "sport_utility_vehicle", + "name": "SportUtilityVehicle", + "description": "Sport utility vehicle", + "code": "U+0001F699" + }, + { + "id": "spouting_whale", + "name": "SpoutingWhale", + "description": "Spouting whale", + "code": "U+0001F433" + }, + { + "id": "squid", + "name": "Squid", + "description": "Squid", + "code": "U+0001F991" + }, + { + "id": "squinting_face_with_tongue", + "name": "SquintingFaceWithTongue", + "description": "Squinting face with tongue", + "code": "U+0001F61D" + }, + { + "id": "stadium", + "name": "Stadium", + "description": "Stadium", + "code": "U+0001F3DF" + }, + { + "id": "star", + "name": "Star", + "description": "Star", + "code": "U+00002B50" + }, + { + "id": "star_and_crescent", + "name": "StarAndCrescent", + "description": "Star and crescent", + "code": "U+0000262A" + }, + { + "id": "star_of_david", + "name": "StarOfDavid", + "description": "Star of david", + "code": "U+00002721" + }, + { + "id": "star_struck", + "name": "StarStruck", + "description": "star struck", + "code": "U+0001F929" + }, + { + "id": "station", + "name": "Station", + "description": "Station", + "code": "U+0001F689" + }, + { + "id": "statue_of_liberty", + "name": "StatueOfLiberty", + "description": "Statue of liberty", + "code": "U+0001F5FD" + }, + { + "id": "steaming_bowl", + "name": "SteamingBowl", + "description": "Steaming bowl", + "code": "U+0001F35C" + }, + { + "id": "stethoscope", + "name": "Stethoscope", + "description": "Stethoscope", + "code": "U+0001FA7A" + }, + { + "id": "stop_button", + "name": "StopButton", + "description": "Stop button", + "code": "U+000023F9" + }, + { + "id": "stop_sign", + "name": "StopSign", + "description": "Stop sign", + "code": "U+0001F6D1" + }, + { + "id": "stopwatch", + "name": "Stopwatch", + "description": "Stopwatch", + "code": "U+000023F1" + }, + { + "id": "straight_ruler", + "name": "StraightRuler", + "description": "Straight ruler", + "code": "U+0001F4CF" + }, + { + "id": "strawberry", + "name": "Strawberry", + "description": "Strawberry", + "code": "U+0001F353" + }, + { + "id": "studio_microphone", + "name": "StudioMicrophone", + "description": "Studio microphone", + "code": "U+0001F399" + }, + { + "id": "stuffed_flatbread", + "name": "StuffedFlatbread", + "description": "Stuffed flatbread", + "code": "U+0001F959" + }, + { + "id": "sun", + "name": "Sun", + "description": "Sun", + "code": "U+00002600" + }, + { + "id": "sun_behind_cloud", + "name": "SunBehindCloud", + "description": "Sun behind cloud", + "code": "U+000026C5" + }, + { + "id": "sun_behind_large_cloud", + "name": "SunBehindLargeCloud", + "description": "Sun behind large cloud", + "code": "U+0001F325" + }, + { + "id": "sun_behind_rain_cloud", + "name": "SunBehindRainCloud", + "description": "Sun behind rain cloud", + "code": "U+0001F326" + }, + { + "id": "sun_behind_small_cloud", + "name": "SunBehindSmallCloud", + "description": "Sun behind small cloud", + "code": "U+0001F324" + }, + { + "id": "sunflower", + "name": "Sunflower", + "description": "Sunflower", + "code": "U+0001F33B" + }, + { + "id": "sunglasses", + "name": "Sunglasses", + "description": "Sunglasses", + "code": "U+0001F576" + }, + { + "id": "sunrise", + "name": "Sunrise", + "description": "Sunrise", + "code": "U+0001F305" + }, + { + "id": "sunrise_over_mountains", + "name": "SunriseOverMountains", + "description": "Sunrise over mountains", + "code": "U+0001F304" + }, + { + "id": "sunset", + "name": "Sunset", + "description": "Sunset", + "code": "U+0001F307" + }, + { + "id": "sun_with_face", + "name": "SunWithFace", + "description": "Sun with face", + "code": "U+0001F31E" + }, + { + "id": "superhero", + "name": "Superhero", + "description": "Superhero", + "code": "U+0001F9B8" + }, + { + "id": "supervillain", + "name": "Supervillain", + "description": "Supervillain", + "code": "U+0001F9B9" + }, + { + "id": "sushi", + "name": "Sushi", + "description": "Sushi", + "code": "U+0001F363" + }, + { + "id": "suspension_railway", + "name": "SuspensionRailway", + "description": "Suspension railway", + "code": "U+0001F69F" + }, + { + "id": "swan", + "name": "Swan", + "description": "Swan", + "code": "U+0001F9A2" + }, + { + "id": "sweat_droplets", + "name": "SweatDroplets", + "description": "Sweat droplets", + "code": "U+0001F4A6" + }, + { + "id": "synagogue", + "name": "Synagogue", + "description": "Synagogue", + "code": "U+0001F54D" + }, + { + "id": "syringe", + "name": "Syringe", + "description": "Syringe", + "code": "U+0001F489" + }, + { + "id": "taco", + "name": "Taco", + "description": "Taco", + "code": "U+0001F32E" + }, + { + "id": "takeout_box", + "name": "TakeoutBox", + "description": "Takeout box", + "code": "U+0001F961" + }, + { + "id": "tamale", + "name": "Tamale", + "description": "Tamale", + "code": "U+0001FAD4" + }, + { + "id": "tanabata_tree", + "name": "TanabataTree", + "description": "Tanabata tree", + "code": "U+0001F38B" + }, + { + "id": "tangerine", + "name": "Tangerine", + "description": "Tangerine", + "code": "U+0001F34A" + }, + { + "id": "taurus", + "name": "Taurus", + "description": "Taurus", + "code": "U+00002649" + }, + { + "id": "taxi", + "name": "Taxi", + "description": "Taxi", + "code": "U+0001F695" + }, + { + "id": "teacup_without_handle", + "name": "TeacupWithoutHandle", + "description": "Teacup without handle", + "code": "U+0001F375" + }, + { + "id": "teapot", + "name": "Teapot", + "description": "Teapot", + "code": "U+0001FAD6" + }, + { + "id": "tear_off_calendar", + "name": "TearOffCalendar", + "description": "tear off calendar", + "code": "U+0001F4C6" + }, + { + "id": "teddy_bear", + "name": "TeddyBear", + "description": "Teddy bear", + "code": "U+0001F9F8" + }, + { + "id": "telephone", + "name": "Telephone", + "description": "Telephone", + "code": "U+0000260E" + }, + { + "id": "telephone_receiver", + "name": "TelephoneReceiver", + "description": "Telephone receiver", + "code": "U+0001F4DE" + }, + { + "id": "telescope", + "name": "Telescope", + "description": "Telescope", + "code": "U+0001F52D" + }, + { + "id": "television", + "name": "Television", + "description": "Television", + "code": "U+0001F4FA" + }, + { + "id": "tennis", + "name": "Tennis", + "description": "Tennis", + "code": "U+0001F3BE" + }, + { + "id": "ten_o_clock", + "name": "TenOClock", + "description": "Ten o clock", + "code": "U+0001F559" + }, + { + "id": "tent", + "name": "Tent", + "description": "Tent", + "code": "U+000026FA" + }, + { + "id": "ten_thirty", + "name": "TenThirty", + "description": "ten thirty", + "code": "U+0001F565" + }, + { + "id": "test_tube", + "name": "TestTube", + "description": "Test tube", + "code": "U+0001F9EA" + }, + { + "id": "thermometer", + "name": "Thermometer", + "description": "Thermometer", + "code": "U+0001F321" + }, + { + "id": "thinking_face", + "name": "ThinkingFace", + "description": "Thinking face", + "code": "U+0001F914" + }, + { + "id": "3rd_place_medal", + "name": "ThirdPlaceMedal", + "description": "3rd place medal", + "code": "U+0001F949" + }, + { + "id": "thong_sandal", + "name": "ThongSandal", + "description": "Thong sandal", + "code": "U+0001FA74" + }, + { + "id": "thought_balloon", + "name": "ThoughtBalloon", + "description": "Thought balloon", + "code": "U+0001F4AD" + }, + { + "id": "thread", + "name": "Thread", + "description": "Thread", + "code": "U+0001F9F5" + }, + { + "id": "three_o_clock", + "name": "ThreeOClock", + "description": "Three o clock", + "code": "U+0001F552" + }, + { + "id": "three_thirty", + "name": "ThreeThirty", + "description": "three thirty", + "code": "U+0001F55E" + }, + { + "id": "thumbs_down", + "name": "ThumbsDown", + "description": "Thumbs down", + "code": "U+0001F44E" + }, + { + "id": "thumbs_up", + "name": "ThumbsUp", + "description": "Thumbs up", + "code": "U+0001F44D" + }, + { + "id": "ticket", + "name": "Ticket", + "description": "Ticket", + "code": "U+0001F3AB" + }, + { + "id": "tiger", + "name": "Tiger", + "description": "Tiger", + "code": "U+0001F405" + }, + { + "id": "tiger_face", + "name": "TigerFace", + "description": "Tiger face", + "code": "U+0001F42F" + }, + { + "id": "timer_clock", + "name": "TimerClock", + "description": "Timer clock", + "code": "U+000023F2" + }, + { + "id": "tired_face", + "name": "TiredFace", + "description": "Tired face", + "code": "U+0001F62B" + }, + { + "id": "toilet", + "name": "Toilet", + "description": "Toilet", + "code": "U+0001F6BD" + }, + { + "id": "tokyo_tower", + "name": "TokyoTower", + "description": "Tokyo tower", + "code": "U+0001F5FC" + }, + { + "id": "tomato", + "name": "Tomato", + "description": "Tomato", + "code": "U+0001F345" + }, + { + "id": "tongue", + "name": "Tongue", + "description": "Tongue", + "code": "U+0001F445" + }, + { + "id": "toolbox", + "name": "Toolbox", + "description": "Toolbox", + "code": "U+0001F9F0" + }, + { + "id": "tooth", + "name": "Tooth", + "description": "Tooth", + "code": "U+0001F9B7" + }, + { + "id": "toothbrush", + "name": "Toothbrush", + "description": "Toothbrush", + "code": "U+0001FAA5" + }, + { + "id": "top_arrow", + "name": "TopArrow", + "description": "TOP arrow", + "code": "U+0001F51D" + }, + { + "id": "top_hat", + "name": "TopHat", + "description": "Top hat", + "code": "U+0001F3A9" + }, + { + "id": "tornado", + "name": "Tornado", + "description": "Tornado", + "code": "U+0001F32A" + }, + { + "id": "trackball", + "name": "Trackball", + "description": "Trackball", + "code": "U+0001F5B2" + }, + { + "id": "tractor", + "name": "Tractor", + "description": "Tractor", + "code": "U+0001F69C" + }, + { + "id": "trade_mark", + "name": "TradeMark", + "description": "Trade mark", + "code": "U+00002122" + }, + { + "id": "train", + "name": "Train", + "description": "Train", + "code": "U+0001F686" + }, + { + "id": "tram", + "name": "Tram", + "description": "Tram", + "code": "U+0001F68A" + }, + { + "id": "tram_car", + "name": "TramCar", + "description": "Tram car", + "code": "U+0001F68B" + }, + { + "id": "transgender_symbol", + "name": "TransgenderSymbol", + "description": "Transgender symbol", + "code": "U+000026A7" + }, + { + "id": "t_rex", + "name": "TRex", + "description": "T Rex", + "code": "U+0001F996" + }, + { + "id": "triangular_flag", + "name": "TriangularFlag", + "description": "Triangular flag", + "code": "U+0001F6A9" + }, + { + "id": "triangular_ruler", + "name": "TriangularRuler", + "description": "Triangular ruler", + "code": "U+0001F4D0" + }, + { + "id": "trident_emblem", + "name": "TridentEmblem", + "description": "Trident emblem", + "code": "U+0001F531" + }, + { + "id": "trolleybus", + "name": "Trolleybus", + "description": "Trolleybus", + "code": "U+0001F68E" + }, + { + "id": "trophy", + "name": "Trophy", + "description": "Trophy", + "code": "U+0001F3C6" + }, + { + "id": "tropical_drink", + "name": "TropicalDrink", + "description": "Tropical drink", + "code": "U+0001F379" + }, + { + "id": "tropical_fish", + "name": "TropicalFish", + "description": "Tropical fish", + "code": "U+0001F420" + }, + { + "id": "trumpet", + "name": "Trumpet", + "description": "Trumpet", + "code": "U+0001F3BA" + }, + { + "id": "t_shirt", + "name": "TShirt", + "description": "t shirt", + "code": "U+0001F455" + }, + { + "id": "tulip", + "name": "Tulip", + "description": "Tulip", + "code": "U+0001F337" + }, + { + "id": "tumbler_glass", + "name": "TumblerGlass", + "description": "Tumbler glass", + "code": "U+0001F943" + }, + { + "id": "turkey", + "name": "Turkey", + "description": "Turkey", + "code": "U+0001F983" + }, + { + "id": "turtle", + "name": "Turtle", + "description": "Turtle", + "code": "U+0001F422" + }, + { + "id": "twelve_o_clock", + "name": "TwelveOClock", + "description": "Twelve o clock", + "code": "U+0001F55B" + }, + { + "id": "twelve_thirty", + "name": "TwelveThirty", + "description": "twelve thirty", + "code": "U+0001F567" + }, + { + "id": "two_hearts", + "name": "TwoHearts", + "description": "Two hearts", + "code": "U+0001F495" + }, + { + "id": "two_hump_camel", + "name": "TwoHumpCamel", + "description": "two hump camel", + "code": "U+0001F42B" + }, + { + "id": "two_o_clock", + "name": "TwoOClock", + "description": "Two o clock", + "code": "U+0001F551" + }, + { + "id": "two_thirty", + "name": "TwoThirty", + "description": "two thirty", + "code": "U+0001F55D" + }, + { + "id": "umbrella", + "name": "Umbrella", + "description": "Umbrella", + "code": "U+00002602" + }, + { + "id": "umbrella_on_ground", + "name": "UmbrellaOnGround", + "description": "Umbrella on ground", + "code": "U+000026F1" + }, + { + "id": "umbrella_with_rain_drops", + "name": "UmbrellaWithRainDrops", + "description": "Umbrella with rain drops", + "code": "U+00002614" + }, + { + "id": "unamused_face", + "name": "UnamusedFace", + "description": "Unamused face", + "code": "U+0001F612" + }, + { + "id": "unicorn", + "name": "Unicorn", + "description": "Unicorn", + "code": "U+0001F984" + }, + { + "id": "unlocked", + "name": "Unlocked", + "description": "Unlocked", + "code": "U+0001F513" + }, + { + "id": "up_arrow", + "name": "UpArrow", + "description": "Up arrow", + "code": "U+00002B06" + }, + { + "id": "up_button", + "name": "UpButton", + "description": "UP button", + "code": "U+0001F199" + }, + { + "id": "up_down_arrow", + "name": "UpDownArrow", + "description": "up down arrow", + "code": "U+00002195" + }, + { + "id": "up_left_arrow", + "name": "UpLeftArrow", + "description": "up left arrow", + "code": "U+00002196" + }, + { + "id": "up_right_arrow", + "name": "UpRightArrow", + "description": "up right arrow", + "code": "U+00002197" + }, + { + "id": "upside_down_face", + "name": "UpsideDownFace", + "description": "upside down face", + "code": "U+0001F643" + }, + { + "id": "upwards_button", + "name": "UpwardsButton", + "description": "Upwards button", + "code": "U+0001F53C" + }, + { + "id": "vampire", + "name": "Vampire", + "description": "Vampire", + "code": "U+0001F9DB" + }, + { + "id": "vertical_traffic_light", + "name": "VerticalTrafficLight", + "description": "Vertical traffic light", + "code": "U+0001F6A6" + }, + { + "id": "vibration_mode", + "name": "VibrationMode", + "description": "Vibration mode", + "code": "U+0001F4F3" + }, + { + "id": "victory_hand", + "name": "VictoryHand", + "description": "Victory hand", + "code": "U+0000270C" + }, + { + "id": "video_camera", + "name": "VideoCamera", + "description": "Video camera", + "code": "U+0001F4F9" + }, + { + "id": "videocassette", + "name": "Videocassette", + "description": "Videocassette", + "code": "U+0001F4FC" + }, + { + "id": "video_game", + "name": "VideoGame", + "description": "Video game", + "code": "U+0001F3AE" + }, + { + "id": "violin", + "name": "Violin", + "description": "Violin", + "code": "U+0001F3BB" + }, + { + "id": "virgo", + "name": "Virgo", + "description": "Virgo", + "code": "U+0000264D" + }, + { + "id": "volcano", + "name": "Volcano", + "description": "Volcano", + "code": "U+0001F30B" + }, + { + "id": "volleyball", + "name": "Volleyball", + "description": "Volleyball", + "code": "U+0001F3D0" + }, + { + "id": "vs_button", + "name": "VsButton", + "description": "VS button", + "code": "U+0001F19A" + }, + { + "id": "vulcan_salute", + "name": "VulcanSalute", + "description": "Vulcan salute", + "code": "U+0001F596" + }, + { + "id": "waffle", + "name": "Waffle", + "description": "Waffle", + "code": "U+0001F9C7" + }, + { + "id": "waning_crescent_moon", + "name": "WaningCrescentMoon", + "description": "Waning crescent moon", + "code": "U+0001F318" + }, + { + "id": "waning_gibbous_moon", + "name": "WaningGibbousMoon", + "description": "Waning gibbous moon", + "code": "U+0001F316" + }, + { + "id": "warning", + "name": "Warning", + "description": "Warning", + "code": "U+000026A0" + }, + { + "id": "wastebasket", + "name": "Wastebasket", + "description": "Wastebasket", + "code": "U+0001F5D1" + }, + { + "id": "watch", + "name": "Watch", + "description": "Watch", + "code": "U+0000231A" + }, + { + "id": "water_buffalo", + "name": "WaterBuffalo", + "description": "Water buffalo", + "code": "U+0001F403" + }, + { + "id": "water_closet", + "name": "WaterCloset", + "description": "Water closet", + "code": "U+0001F6BE" + }, + { + "id": "watermelon", + "name": "Watermelon", + "description": "Watermelon", + "code": "U+0001F349" + }, + { + "id": "water_pistol", + "name": "WaterPistol", + "description": "Water pistol", + "code": "U+0001F52B" + }, + { + "id": "water_wave", + "name": "WaterWave", + "description": "Water wave", + "code": "U+0001F30A" + }, + { + "id": "waving_hand", + "name": "WavingHand", + "description": "Waving hand", + "code": "U+0001F44B" + }, + { + "id": "wavy_dash", + "name": "WavyDash", + "description": "Wavy dash", + "code": "U+00003030" + }, + { + "id": "waxing_crescent_moon", + "name": "WaxingCrescentMoon", + "description": "Waxing crescent moon", + "code": "U+0001F312" + }, + { + "id": "waxing_gibbous_moon", + "name": "WaxingGibbousMoon", + "description": "Waxing gibbous moon", + "code": "U+0001F314" + }, + { + "id": "weary_cat", + "name": "WearyCat", + "description": "Weary cat", + "code": "U+0001F640" + }, + { + "id": "weary_face", + "name": "WearyFace", + "description": "Weary face", + "code": "U+0001F629" + }, + { + "id": "wedding", + "name": "Wedding", + "description": "Wedding", + "code": "U+0001F492" + }, + { + "id": "whale", + "name": "Whale", + "description": "Whale", + "code": "U+0001F40B" + }, + { + "id": "wheelchair_symbol", + "name": "WheelchairSymbol", + "description": "Wheelchair symbol", + "code": "U+0000267F" + }, + { + "id": "wheel_of_dharma", + "name": "WheelOfDharma", + "description": "Wheel of dharma", + "code": "U+00002638" + }, + { + "id": "white_cane", + "name": "WhiteCane", + "description": "White cane", + "code": "U+0001F9AF" + }, + { + "id": "white_circle", + "name": "WhiteCircle", + "description": "White circle", + "code": "U+000026AA" + }, + { + "id": "white_exclamation_mark", + "name": "WhiteExclamationMark", + "description": "White exclamation mark", + "code": "U+00002755" + }, + { + "id": "white_flag", + "name": "WhiteFlag", + "description": "White flag", + "code": "U+0001F3F3" + }, + { + "id": "white_flower", + "name": "WhiteFlower", + "description": "White flower", + "code": "U+0001F4AE" + }, + { + "id": "white_hair", + "name": "WhiteHair", + "description": "White hair", + "code": "U+0001F9B3" + }, + { + "id": "white_heart", + "name": "WhiteHeart", + "description": "White heart", + "code": "U+0001F90D" + }, + { + "id": "white_large_square", + "name": "WhiteLargeSquare", + "description": "White large square", + "code": "U+00002B1C" + }, + { + "id": "white_medium_small_square", + "name": "WhiteMediumSmallSquare", + "description": "white medium small square", + "code": "U+000025FD" + }, + { + "id": "white_medium_square", + "name": "WhiteMediumSquare", + "description": "White medium square", + "code": "U+000025FB" + }, + { + "id": "white_question_mark", + "name": "WhiteQuestionMark", + "description": "White question mark", + "code": "U+00002754" + }, + { + "id": "white_small_square", + "name": "WhiteSmallSquare", + "description": "White small square", + "code": "U+000025AB" + }, + { + "id": "white_square_button", + "name": "WhiteSquareButton", + "description": "White square button", + "code": "U+0001F533" + }, + { + "id": "wilted_flower", + "name": "WiltedFlower", + "description": "Wilted flower", + "code": "U+0001F940" + }, + { + "id": "wind_chime", + "name": "WindChime", + "description": "Wind chime", + "code": "U+0001F390" + }, + { + "id": "wind_face", + "name": "WindFace", + "description": "Wind face", + "code": "U+0001F32C" + }, + { + "id": "window", + "name": "Window", + "description": "Window", + "code": "U+0001FA9F" + }, + { + "id": "wine_glass", + "name": "WineGlass", + "description": "Wine glass", + "code": "U+0001F377" + }, + { + "id": "winking_face", + "name": "WinkingFace", + "description": "Winking face", + "code": "U+0001F609" + }, + { + "id": "winking_face_with_tongue", + "name": "WinkingFaceWithTongue", + "description": "Winking face with tongue", + "code": "U+0001F61C" + }, + { + "id": "wolf", + "name": "Wolf", + "description": "Wolf", + "code": "U+0001F43A" + }, + { + "id": "woman", + "name": "Woman", + "description": "Woman", + "code": "U+0001F469" + }, + { + "id": "woman_and_man_holding_hands", + "name": "WomanAndManHoldingHands", + "description": "Woman and man holding hands", + "code": "U+0001F46B" + }, + { + "id": "woman_dancing", + "name": "WomanDancing", + "description": "Woman dancing", + "code": "U+0001F483" + }, + { + "id": "womans_boot", + "name": "WomansBoot", + "description": "Woman s boot", + "code": "U+0001F462" + }, + { + "id": "womans_clothes", + "name": "WomansClothes", + "description": "Woman s clothes", + "code": "U+0001F45A" + }, + { + "id": "womans_hat", + "name": "WomansHat", + "description": "Woman s hat", + "code": "U+0001F452" + }, + { + "id": "womans_sandal", + "name": "WomansSandal", + "description": "Woman s sandal", + "code": "U+0001F461" + }, + { + "id": "woman_with_headscarf", + "name": "WomanWithHeadscarf", + "description": "Woman with headscarf", + "code": "U+0001F9D5" + }, + { + "id": "women_holding_hands", + "name": "WomenHoldingHands", + "description": "Women holding hands", + "code": "U+0001F46D" + }, + { + "id": "womens_room", + "name": "WomensRoom", + "description": "Women s room", + "code": "U+0001F6BA" + }, + { + "id": "wood", + "name": "Wood", + "description": "Wood", + "code": "U+0001FAB5" + }, + { + "id": "woozy_face", + "name": "WoozyFace", + "description": "Woozy face", + "code": "U+0001F974" + }, + { + "id": "world_map", + "name": "WorldMap", + "description": "World map", + "code": "U+0001F5FA" + }, + { + "id": "worm", + "name": "Worm", + "description": "Worm", + "code": "U+0001FAB1" + }, + { + "id": "worried_face", + "name": "WorriedFace", + "description": "Worried face", + "code": "U+0001F61F" + }, + { + "id": "wrapped_gift", + "name": "WrappedGift", + "description": "Wrapped gift", + "code": "U+0001F381" + }, + { + "id": "wrench", + "name": "Wrench", + "description": "Wrench", + "code": "U+0001F527" + }, + { + "id": "writing_hand", + "name": "WritingHand", + "description": "Writing hand", + "code": "U+0000270D" + }, + { + "id": "yarn", + "name": "Yarn", + "description": "Yarn", + "code": "U+0001F9F6" + }, + { + "id": "yawning_face", + "name": "YawningFace", + "description": "Yawning face", + "code": "U+0001F971" + }, + { + "id": "yellow_circle", + "name": "YellowCircle", + "description": "Yellow circle", + "code": "U+0001F7E1" + }, + { + "id": "yellow_heart", + "name": "YellowHeart", + "description": "Yellow heart", + "code": "U+0001F49B" + }, + { + "id": "yellow_square", + "name": "YellowSquare", + "description": "Yellow square", + "code": "U+0001F7E8" + }, + { + "id": "yen_banknote", + "name": "YenBanknote", + "description": "Yen banknote", + "code": "U+0001F4B4" + }, + { + "id": "yin_yang", + "name": "YinYang", + "description": "Yin yang", + "code": "U+0000262F" + }, + { + "id": "yo_yo", + "name": "YoYo", + "description": "yo yo", + "code": "U+0001FA80" + }, + { + "id": "zany_face", + "name": "ZanyFace", + "description": "Zany face", + "code": "U+0001F92A" + }, + { + "id": "zebra", + "name": "Zebra", + "description": "Zebra", + "code": "U+0001F993" + }, + { + "id": "zipper_mouth_face", + "name": "ZipperMouthFace", + "description": "zipper mouth face", + "code": "U+0001F910" + }, + { + "id": "zombie", + "name": "Zombie", + "description": "Zombie", + "code": "U+0001F9DF" + }, + { + "id": "zzz", + "name": "Zzz", + "description": "Zzz", + "code": "U+0001F4A4" + } +] \ No newline at end of file diff --git a/docs/src/Extensions/DocumentExtensions.cs b/docs/src/Extensions/DocumentExtensions.cs index c497623..ed53a93 100644 --- a/docs/src/Extensions/DocumentExtensions.cs +++ b/docs/src/Extensions/DocumentExtensions.cs @@ -1,4 +1,4 @@ -using Statiq.Common; +using Statiq.Common; using System.Collections.Generic; using System.Linq; @@ -16,6 +16,11 @@ namespace Docs return !document.GetBool(Constants.Hidden, false); } + public static bool ShowLink(this IDocument document) + { + return !document.GetBool(Constants.NoLink, false); + } + public static IEnumerable OnlyVisible(this IEnumerable source) { return source.Where(x => x.IsVisible()); diff --git a/docs/src/Models/Emoji.cs b/docs/src/Models/Emoji.cs new file mode 100644 index 0000000..75eee53 --- /dev/null +++ b/docs/src/Models/Emoji.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Newtonsoft.Json; + +namespace Docs.Models +{ + public sealed class Emoji + { + public string Id { get; set; } + public string Name { get; set; } + public string Description { get; set; } + public string Code { get; set; } + + public static List Parse(string json) + { + return JsonConvert.DeserializeObject>(json); + } + } +} diff --git a/docs/src/Modules/ReadEmbedded.cs b/docs/src/Modules/ReadEmbedded.cs new file mode 100644 index 0000000..ba3e457 --- /dev/null +++ b/docs/src/Modules/ReadEmbedded.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using Statiq.Common; + +namespace Docs.Modules +{ + public sealed class ReadEmbedded : Module + { + private readonly System.Reflection.Assembly _assembly; + private readonly string _resource; + + public ReadEmbedded(System.Reflection.Assembly assembly, string resource) + { + _assembly = assembly ?? throw new ArgumentNullException(nameof(assembly)); + _resource = resource ?? throw new ArgumentNullException(nameof(resource)); + } + + protected override Task> ExecuteContextAsync(IExecutionContext context) + { + return Task.FromResult((IEnumerable)new[] + { + context.CreateDocument(ReadResource()), + }); + } + + private Stream ReadResource() + { + var resourceName = _resource.Replace("/", "."); + + var stream = _assembly.GetManifestResourceStream(resourceName); + if (stream == null) + { + throw new InvalidOperationException("Could not load manifest resource stream."); + } + + return stream; + } + } +} \ No newline at end of file diff --git a/docs/src/Pipelines/ColorsPipeline.cs b/docs/src/Pipelines/ColorsPipeline.cs index 4f52a1c..e8d220c 100644 --- a/docs/src/Pipelines/ColorsPipeline.cs +++ b/docs/src/Pipelines/ColorsPipeline.cs @@ -26,13 +26,8 @@ namespace Docs.Pipelines new ExecuteConfig( Config.FromDocument(async (doc, ctx) => { - var colors = Color.Parse(await doc.GetContentStringAsync()).ToList(); - var definitions = new List { colors.ToDocument(Constants.Colors.Root) }; - - return doc.Clone(new MetadataDictionary - { - [Constants.Colors.Root] = definitions - }); + var data = Color.Parse(await doc.GetContentStringAsync()).ToList(); + return data.ToDocument(Constants.Colors.Root); })) }; } diff --git a/docs/src/Pipelines/EmojiPipeline.cs b/docs/src/Pipelines/EmojiPipeline.cs new file mode 100644 index 0000000..ed6b408 --- /dev/null +++ b/docs/src/Pipelines/EmojiPipeline.cs @@ -0,0 +1,34 @@ +using System.Collections.Generic; +using Docs.Models; +using Docs.Modules; +using Statiq.Common; +using Statiq.Core; + +namespace Docs.Pipelines +{ + public class EmojiPipeline : Pipeline + { + public EmojiPipeline() + { + InputModules = new ModuleList + { + new ExecuteConfig( + Config.FromContext(ctx => { + return new ReadEmbedded( + typeof(EmojiPipeline).Assembly, + "Docs/src/Data/emojis.json"); + })) + }; + + ProcessModules = new ModuleList + { + new ExecuteConfig( + Config.FromDocument(async (doc, ctx) => + { + var data = Emoji.Parse(await doc.GetContentStringAsync()); + return data.ToDocument(Constants.Emojis.Root); + })) + }; + } + } +} \ No newline at end of file diff --git a/docs/src/Shortcodes/ColorTableShortcode.cs b/docs/src/Shortcodes/ColorTableShortcode.cs index 40a8f5a..865abc3 100644 --- a/docs/src/Shortcodes/ColorTableShortcode.cs +++ b/docs/src/Shortcodes/ColorTableShortcode.cs @@ -17,11 +17,10 @@ namespace Docs.Shortcodes // Get the definition. var colors = context.Outputs .FromPipeline(nameof(ColorsPipeline)) - .First() - .GetChildren(Constants.Colors.Root) .OfType>>() .First().Object; + // Headers var table = new XElement("table", new XAttribute("class", "table")); var header = new XElement("tr", new XAttribute("class", "color-row")); header.Add(new XElement("th", "")); diff --git a/docs/src/Shortcodes/EmojiTableShortcode.cs b/docs/src/Shortcodes/EmojiTableShortcode.cs new file mode 100644 index 0000000..8c26f59 --- /dev/null +++ b/docs/src/Shortcodes/EmojiTableShortcode.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Statiq.Common; +using System.Xml.Linq; +using Docs.Pipelines; +using Docs.Models; + +namespace Docs.Shortcodes +{ + public class EmojiTableShortcode : SyncShortcode + { + public override ShortcodeResult Execute(KeyValuePair[] args, string content, IDocument document, IExecutionContext context) + { + var emojis = context.Outputs + .FromPipeline(nameof(EmojiPipeline)) + .OfType>>() + .First().Object; + + // Headers + var table = new XElement("table", new XAttribute("class", "table")); + var header = new XElement("tr", new XAttribute("class", "emoji-row")); + header.Add(new XElement("th", "")); + header.Add(new XElement("th", "Markup")); + header.Add(new XElement("th", "Constant")); + table.Add(header); + + foreach (var emoji in emojis) + { + var code = emoji.Code.Replace("U+0000", "U+").Replace("U+000", "U+"); + var icon = string.Format("&#x{0};", emoji.Code.Replace("U+", string.Empty)); + + var row = new XElement("tr"); + row.Add(new XElement("td", icon)); + row.Add(new XElement("td", new XElement("code", $":{emoji.Id}:"))); + row.Add(new XElement("td", new XElement("code", emoji.Name))); + + table.Add(row); + } + + return table.ToString() + .Replace("&#x", "&#x"); + } + } +} \ No newline at end of file diff --git a/examples/Emojis/Emojis.csproj b/examples/Emojis/Emojis.csproj new file mode 100644 index 0000000..b0181c2 --- /dev/null +++ b/examples/Emojis/Emojis.csproj @@ -0,0 +1,14 @@ + + + + Exe + netcoreapp3.1 + false + Demonstrates how to render emojis. + + + + + + + diff --git a/examples/Emojis/Program.cs b/examples/Emojis/Program.cs new file mode 100644 index 0000000..87b0166 --- /dev/null +++ b/examples/Emojis/Program.cs @@ -0,0 +1,17 @@ +using System; +using Spectre.Console; + +namespace Emojis +{ + public static class Program + { + public static void Main(string[] args) + { + // Markup + AnsiConsole.Render( + new Panel("[yellow]Hello :globe_showing_europe_africa:![/]") + .RoundedBorder() + .SetHeader("Markup")); + } + } +} diff --git a/examples/Info/Program.cs b/examples/Info/Program.cs index ab6cdd8..1b66b39 100644 --- a/examples/Info/Program.cs +++ b/examples/Info/Program.cs @@ -12,8 +12,8 @@ namespace Info .AddRow("[b]:artist_palette: Color system[/]", $"{AnsiConsole.Capabilities.ColorSystem}") .AddRow("[b]:nail_polish: Supports ansi?[/]", $"{GetEmoji(AnsiConsole.Capabilities.SupportsAnsi)}") .AddRow("[b]:top_hat: Legacy console?[/]", $"{GetEmoji(AnsiConsole.Capabilities.LegacyConsole)}") - .AddRow("[b]:left-right_arrow: Buffer width[/]", $"{AnsiConsole.Console.Width}") - .AddRow("[b]:up-down_arrow: Buffer height[/]", $"{AnsiConsole.Console.Height}"); + .AddRow("[b]:left_right_arrow: Buffer width[/]", $"{AnsiConsole.Console.Width}") + .AddRow("[b]:up_down_arrow: Buffer height[/]", $"{AnsiConsole.Console.Height}"); AnsiConsole.Render( new Panel(grid) diff --git a/resources/scripts/Generate-Emoji.ps1 b/resources/scripts/Generate-Emoji.ps1 index de99bc0..074d414 100644 --- a/resources/scripts/Generate-Emoji.ps1 +++ b/resources/scripts/Generate-Emoji.ps1 @@ -4,6 +4,7 @@ $Output = Join-Path $PSScriptRoot "Temp" $Source = Join-Path $PSScriptRoot "/../../src/Spectre.Console" +$Docs = Join-Path $PSScriptRoot "/../../docs/src/Data" if(!(Test-Path $Output -PathType Container)) { New-Item -ItemType Directory -Path $Output | Out-Null @@ -11,7 +12,7 @@ if(!(Test-Path $Output -PathType Container)) { # Generate the files Push-Location Generator -&dotnet run -- emoji "$Output" +&dotnet run -- emoji "$Output" --input $Output if(!$?) { Pop-Location Throw "An error occured when generating code." @@ -19,4 +20,5 @@ if(!$?) { Pop-Location # Copy the files to the correct location -Copy-Item (Join-Path "$Output" "Emoji.Generated.cs") -Destination "$Source/Emoji.Generated.cs" \ No newline at end of file +Copy-Item (Join-Path "$Output" "Emoji.Generated.cs") -Destination "$Source/Emoji.Generated.cs" +Copy-Item (Join-Path "$Output" "emojis.json") -Destination "$Docs/emojis.json" \ No newline at end of file diff --git a/resources/scripts/Generator/Commands/ColorGeneratorCommand.cs b/resources/scripts/Generator/Commands/ColorGeneratorCommand.cs index f465b70..9255982 100644 --- a/resources/scripts/Generator/Commands/ColorGeneratorCommand.cs +++ b/resources/scripts/Generator/Commands/ColorGeneratorCommand.cs @@ -55,5 +55,8 @@ namespace Generator.Commands { [CommandArgument(0, "")] public string Output { get; set; } + + [CommandOption("-i|--input ")] + public string Input { get; set; } } } diff --git a/resources/scripts/Generator/Commands/EmojiGeneratorCommand.cs b/resources/scripts/Generator/Commands/EmojiGeneratorCommand.cs index 1054e14..0451dbf 100644 --- a/resources/scripts/Generator/Commands/EmojiGeneratorCommand.cs +++ b/resources/scripts/Generator/Commands/EmojiGeneratorCommand.cs @@ -1,3 +1,4 @@ +using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -10,52 +11,72 @@ using Scriban.Runtime; using Spectre.Cli; using Spectre.IO; using Path = Spectre.IO.Path; +using SpectreEnvironment = Spectre.IO.Environment; namespace Generator.Commands { public sealed class EmojiGeneratorCommand : AsyncCommand { private readonly IFileSystem _fileSystem; - + private readonly IEnvironment _environment; private readonly IHtmlParser _parser; + private readonly Dictionary _templates = new Dictionary + { + { "Templates/Emoji.Generated.template", "Emoji.Generated.cs" }, + { "Templates/Emoji.Json.template", "emojis.json" }, + }; + public EmojiGeneratorCommand() { _fileSystem = new FileSystem(); + _environment = new SpectreEnvironment(); _parser = new HtmlParser(); } public override async Task ExecuteAsync(CommandContext context, GeneratorCommandSettings settings) { var output = new DirectoryPath(settings.Output); - if (!_fileSystem.Directory.Exists(settings.Output)) { _fileSystem.Directory.Create(settings.Output); } - var templatePath = new FilePath("Templates/Emoji.Generated.template"); + var stream = await FetchEmojis(settings); + var document = await _parser.ParseDocumentAsync(stream); + var emojis = Emoji.Parse(document).OrderBy(x => x.Name) + .Where(emoji => !emoji.HasCombinators) + .ToList(); - var emojis = await FetchEmojis("http://www.unicode.org/emoji/charts/emoji-list.html"); + // Render all templates + foreach (var (templateFilename, outputFilename) in _templates) + { + var result = await RenderTemplate(new FilePath(templateFilename), emojis); - var result = await RenderTemplate(templatePath, emojis); - - var outputPath = output.CombineWithFilePath(templatePath.GetFilename().ChangeExtension(".cs")); - - await File.WriteAllTextAsync(outputPath.FullPath, result); + var outputPath = output.CombineWithFilePath(outputFilename); + await File.WriteAllTextAsync(outputPath.FullPath, result); + } return 0; } - private async Task> FetchEmojis(string url) + private async Task FetchEmojis(GeneratorCommandSettings settings) { - using var http = new HttpClient(); + var input = string.IsNullOrEmpty(settings.Input) + ? _environment.WorkingDirectory + : new DirectoryPath(settings.Input); - var htmlStream = await http.GetStreamAsync(url); + var file = _fileSystem.File.Retrieve(input.CombineWithFilePath("emoji-list.html")); + if (!file.Exists) + { + using var http = new HttpClient(); + using var httpStream = await http.GetStreamAsync("http://www.unicode.org/emoji/charts/emoji-list.html"); + using var outStream = file.OpenWrite(); - var document = await _parser.ParseDocumentAsync(htmlStream); + await httpStream.CopyToAsync(outStream); + } - return Emoji.Parse(document).OrderBy(x => x.Name).ToList(); + return file.OpenRead(); } private static async Task RenderTemplate(Path path, IReadOnlyCollection emojis) @@ -63,7 +84,6 @@ namespace Generator.Commands var text = await File.ReadAllTextAsync(path.FullPath); var template = Template.Parse(text); - var templateContext = new TemplateContext { // Because of the insane amount of Emojis, @@ -72,9 +92,7 @@ namespace Generator.Commands }; var scriptObject = new ScriptObject(); - scriptObject.Import(new { Emojis = emojis }); - templateContext.PushGlobal(scriptObject); return await template.RenderAsync(templateContext); diff --git a/resources/scripts/Generator/Generator.csproj b/resources/scripts/Generator/Generator.csproj index 438e44c..eef5405 100644 --- a/resources/scripts/Generator/Generator.csproj +++ b/resources/scripts/Generator/Generator.csproj @@ -24,6 +24,9 @@ Always + + Always + Always @@ -31,6 +34,7 @@ + diff --git a/resources/scripts/Generator/Models/Emoji.cs b/resources/scripts/Generator/Models/Emoji.cs index 2a7ca17..a7d4e73 100644 --- a/resources/scripts/Generator/Models/Emoji.cs +++ b/resources/scripts/Generator/Models/Emoji.cs @@ -3,6 +3,7 @@ using System.Linq; using System.Text; using AngleSharp.Dom; using AngleSharp.Html.Dom; +using Humanizer; namespace Generator.Models { @@ -10,15 +11,22 @@ namespace Generator.Models { private static readonly string[] _headers = { "count", "code", "sample", "name" }; - private Emoji(string code, string name) + private Emoji(string identifier, string name, string code, string description) { - Code = code; + Identifier = identifier; Name = name; + Code = code; + Description = description; + NormalizedCode = Code.Replace("\\U", "U+"); + HasCombinators = Code.Split(new[] { "\\U" }, System.StringSplitOptions.RemoveEmptyEntries).Length > 1; } + public string Identifier { get; set; } public string Code { get; } - + public string NormalizedCode { get; } public string Name { get; } + public string Description { get; set; } + public bool HasCombinators { get; set; } public static IEnumerable Parse(IHtmlDocument document) { @@ -30,13 +38,24 @@ namespace Generator.Models foreach (var row in rows) { var dictionary = _headers - .Zip(row.Cells, (header, cell) => (header, cell.TextContent.Trim())) + .Zip(row.Cells, (header, cell) => (Header: header, cell.TextContent.Trim())) .ToDictionary(x => x.Item1, x => x.Item2); var code = TransformCode(dictionary["code"]); - var name = TransformName(dictionary["name"]); + var identifier = TransformName(dictionary["name"]) + .Replace("-", "_") + .Replace("(", string.Empty) + .Replace(")", string.Empty); - yield return new Emoji(code, name); + var description = dictionary["name"].Humanize(); + + var name = identifier + .Replace("1st", "first") + .Replace("2nd", "second") + .Replace("3rd", "third") + .Pascalize(); + + yield return new Emoji(identifier, name, code, description); } } @@ -48,8 +67,14 @@ namespace Generator.Models .Replace("\u201c", string.Empty) .Replace("\u201d", string.Empty) .Replace("\u229b", string.Empty) - .Trim() .Replace(' ', '_') + .Replace("’s", "s") + .Replace("’", "_") + .Replace("&", "and") + .Replace("#", "hash") + .Replace("*", "star") + .Replace("!", string.Empty) + .Trim() .ToLowerInvariant(); } diff --git a/resources/scripts/Generator/Templates/Color.Generated.template b/resources/scripts/Generator/Templates/Color.Generated.template index ccf33e4..7f3d18f 100644 --- a/resources/scripts/Generator/Templates/Color.Generated.template +++ b/resources/scripts/Generator/Templates/Color.Generated.template @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Generated {{ date.now | date.to_string `%Y-%m-%d %k:%M` }} +// Generated {{ date.now | date.to_string `%F %R` }} // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/resources/scripts/Generator/Templates/ColorPalette.Generated.template b/resources/scripts/Generator/Templates/ColorPalette.Generated.template index 01f9422..0e3f3ca 100644 --- a/resources/scripts/Generator/Templates/ColorPalette.Generated.template +++ b/resources/scripts/Generator/Templates/ColorPalette.Generated.template @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Generated {{ date.now | date.to_string `%Y-%m-%d %k:%M` }} +// Generated {{ date.now | date.to_string `%F %R` }} // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/resources/scripts/Generator/Templates/ColorTable.Generated.template b/resources/scripts/Generator/Templates/ColorTable.Generated.template index 09f19c5..0cd0205 100644 --- a/resources/scripts/Generator/Templates/ColorTable.Generated.template +++ b/resources/scripts/Generator/Templates/ColorTable.Generated.template @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Generated {{ date.now | date.to_string `%Y-%m-%d %k:%M` }} +// Generated {{ date.now | date.to_string `%F %R` }} // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/resources/scripts/Generator/Templates/Emoji.Generated.template b/resources/scripts/Generator/Templates/Emoji.Generated.template index a0d61f7..c9e8cfc 100644 --- a/resources/scripts/Generator/Templates/Emoji.Generated.template +++ b/resources/scripts/Generator/Templates/Emoji.Generated.template @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Generated {{ date.now | date.to_string `%Y-%m-%d %k:%M` }} +// Generated {{ date.now | date.to_string `%F %R` }} // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -10,20 +10,34 @@ using System; using System.Collections.Generic; -using System.Diagnostics.CodeAnalysis; namespace Spectre.Console { /// - /// Utility class for working with emojis. + /// Utility for working with emojis. /// - internal static partial class Emoji + public static partial class Emoji { private static readonly Dictionary _emojis = new Dictionary(StringComparer.InvariantCultureIgnoreCase) { - {{~ for emoji in emojis }} { "{{ emoji.name }}", "{{ emoji.code }}" }, + {{~ for emoji in emojis ~}} + { "{{ emoji.identifier }}", Emoji.Known.{{ emoji.name }} }, {{~ end ~}} }; + + /// + /// Contains all predefined emojis. + /// + public static class Known + { + {{- for emoji in emojis }} + /// + /// Gets the "{{ emoji.identifier }}" emoji. + /// Description: {{ emoji.description }}. + /// + public const string {{ emoji.name }} = "{{ emoji.code }}"; + {{~ end ~}} + } } } diff --git a/resources/scripts/Generator/Templates/Emoji.Json.template b/resources/scripts/Generator/Templates/Emoji.Json.template new file mode 100644 index 0000000..f89b809 --- /dev/null +++ b/resources/scripts/Generator/Templates/Emoji.Json.template @@ -0,0 +1,10 @@ +[ + {{~ for x in 0..(emojis.size-1) ~}} + { + "id": "{{ emojis[x].identifier }}", + "name": "{{ emojis[x].name }}", + "description": "{{ emojis[x].description }}", + "code": "{{ emojis[x].normalized_code }}" + }{{ if x != (emojis.size-1) }},{{ end }} + {{~ end ~}} +] \ No newline at end of file diff --git a/src/Spectre.Console.Tests/Unit/EmojiTests.cs b/src/Spectre.Console.Tests/Unit/EmojiTests.cs new file mode 100644 index 0000000..da52b86 --- /dev/null +++ b/src/Spectre.Console.Tests/Unit/EmojiTests.cs @@ -0,0 +1,44 @@ +using Shouldly; +using Xunit; + +namespace Spectre.Console.Tests.Unit +{ + public sealed class EmojiTests + { + [Fact] + public void Should_Substitute_Emoji_Shortcodes_In_Markdown() + { + // Given + var console = new TestableAnsiConsole(ColorSystem.Standard, AnsiSupport.Yes); + + // When + console.Markup("Hello :globe_showing_europe_africa:!"); + + // Then + console.Output.ShouldBe("Hello 🌍!"); + } + + [Fact] + public void Should_Contain_Predefined_Emojis() + { + // Given, When + const string result = "Hello " + Emoji.Known.GlobeShowingEuropeAfrica + "!"; + + // Then + result.ShouldBe("Hello 🌍!"); + } + + public sealed class TheReplaceMethod + { + [Fact] + public void Should_Replace_Emojis_In_Text() + { + // Given, When + var result = Emoji.Replace("Hello :globe_showing_europe_africa:!"); + + // Then + result.ShouldBe("Hello 🌍!"); + } + } + } +} diff --git a/src/Spectre.Console.sln b/src/Spectre.Console.sln index 5b115ac..f7d4a58 100644 --- a/src/Spectre.Console.sln +++ b/src/Spectre.Console.sln @@ -33,6 +33,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Borders", "..\examples\Bord EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Links", "..\examples\Links\Links.csproj", "{6AF8C93B-AA41-4F44-8B1B-B8D166576174}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Emojis", "..\examples\Emojis\Emojis.csproj", "{1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -163,6 +165,18 @@ Global {6AF8C93B-AA41-4F44-8B1B-B8D166576174}.Release|x64.Build.0 = Release|Any CPU {6AF8C93B-AA41-4F44-8B1B-B8D166576174}.Release|x86.ActiveCfg = Release|Any CPU {6AF8C93B-AA41-4F44-8B1B-B8D166576174}.Release|x86.Build.0 = Release|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Debug|x64.ActiveCfg = Debug|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Debug|x64.Build.0 = Debug|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Debug|x86.ActiveCfg = Debug|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Debug|x86.Build.0 = Debug|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Release|Any CPU.Build.0 = Release|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Release|x64.ActiveCfg = Release|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Release|x64.Build.0 = Release|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Release|x86.ActiveCfg = Release|Any CPU + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -176,6 +190,7 @@ Global {225CE0D4-06AB-411A-8D29-707504FE53B3} = {F0575243-121F-4DEE-9F6B-246E26DC0844} {094245E6-4C94-485D-B5AC-3153E878B112} = {F0575243-121F-4DEE-9F6B-246E26DC0844} {6AF8C93B-AA41-4F44-8B1B-B8D166576174} = {F0575243-121F-4DEE-9F6B-246E26DC0844} + {1EABB956-957F-4C1A-8AC0-FD19C8F3C2F2} = {F0575243-121F-4DEE-9F6B-246E26DC0844} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {5729B071-67A0-48FB-8B1B-275E6822086C} diff --git a/src/Spectre.Console/Color.Generated.cs b/src/Spectre.Console/Color.Generated.cs index 1c3618b..2e5b699 100644 --- a/src/Spectre.Console/Color.Generated.cs +++ b/src/Spectre.Console/Color.Generated.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Generated 2020-08-03 15:17 +// Generated 2020-09-18 10:42 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Spectre.Console/Emoji.Generated.cs b/src/Spectre.Console/Emoji.Generated.cs index 1a2cd29..a546d67 100644 --- a/src/Spectre.Console/Emoji.Generated.cs +++ b/src/Spectre.Console/Emoji.Generated.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Generated 2020-09-15 22:49 +// Generated 2020-09-18 11:14 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -10,1834 +10,9291 @@ using System; using System.Collections.Generic; -using System.Diagnostics.CodeAnalysis; namespace Spectre.Console { /// - /// Utility class for working with emojis. + /// Utility for working with emojis. /// - internal static partial class Emoji + public static partial class Emoji { private static readonly Dictionary _emojis = new Dictionary(StringComparer.InvariantCultureIgnoreCase) { - { "1st_place_medal", "\U0001F947" }, - { "2nd_place_medal", "\U0001F948" }, - { "3rd_place_medal", "\U0001F949" }, - { "a_button_(blood_type)", "\U0001F170" }, - { "ab_button_(blood_type)", "\U0001F18E" }, - { "abacus", "\U0001F9EE" }, - { "accordion", "\U0001FA97" }, - { "adhesive_bandage", "\U0001FA79" }, - { "admission_tickets", "\U0001F39F" }, - { "aerial_tramway", "\U0001F6A1" }, - { "airplane", "\U00002708" }, - { "airplane_arrival", "\U0001F6EC" }, - { "airplane_departure", "\U0001F6EB" }, - { "alarm_clock", "\U000023F0" }, - { "alembic", "\U00002697" }, - { "alien", "\U0001F47D" }, - { "alien_monster", "\U0001F47E" }, - { "ambulance", "\U0001F691" }, - { "american_football", "\U0001F3C8" }, - { "amphora", "\U0001F3FA" }, - { "anatomical_heart", "\U0001FAC0" }, - { "anchor", "\U00002693" }, - { "anger_symbol", "\U0001F4A2" }, - { "angry_face", "\U0001F620" }, - { "angry_face_with_horns", "\U0001F47F" }, - { "anguished_face", "\U0001F627" }, - { "ant", "\U0001F41C" }, - { "antenna_bars", "\U0001F4F6" }, - { "anxious_face_with_sweat", "\U0001F630" }, - { "aquarius", "\U00002652" }, - { "aries", "\U00002648" }, - { "articulated_lorry", "\U0001F69B" }, - { "artist", "\U0001F9D1\U0000200D\U0001F3A8" }, - { "artist_palette", "\U0001F3A8" }, - { "astonished_face", "\U0001F632" }, - { "astronaut", "\U0001F9D1\U0000200D\U0001F680" }, - { "atm_sign", "\U0001F3E7" }, - { "atom_symbol", "\U0000269B" }, - { "auto_rickshaw", "\U0001F6FA" }, - { "automobile", "\U0001F697" }, - { "avocado", "\U0001F951" }, - { "axe", "\U0001FA93" }, - { "b_button_(blood_type)", "\U0001F171" }, - { "baby", "\U0001F476" }, - { "baby_angel", "\U0001F47C" }, - { "baby_bottle", "\U0001F37C" }, - { "baby_chick", "\U0001F424" }, - { "baby_symbol", "\U0001F6BC" }, - { "back_arrow", "\U0001F519" }, - { "backhand_index_pointing_down", "\U0001F447" }, - { "backhand_index_pointing_left", "\U0001F448" }, - { "backhand_index_pointing_right", "\U0001F449" }, - { "backhand_index_pointing_up", "\U0001F446" }, - { "backpack", "\U0001F392" }, - { "bacon", "\U0001F953" }, - { "badger", "\U0001F9A1" }, - { "badminton", "\U0001F3F8" }, - { "bagel", "\U0001F96F" }, - { "baggage_claim", "\U0001F6C4" }, - { "baguette_bread", "\U0001F956" }, - { "balance_scale", "\U00002696" }, - { "bald", "\U0001F9B2" }, - { "ballet_shoes", "\U0001FA70" }, - { "balloon", "\U0001F388" }, - { "ballot_box_with_ballot", "\U0001F5F3" }, - { "banana", "\U0001F34C" }, - { "banjo", "\U0001FA95" }, - { "bank", "\U0001F3E6" }, - { "bar_chart", "\U0001F4CA" }, - { "barber_pole", "\U0001F488" }, - { "baseball", "\U000026BE" }, - { "basket", "\U0001F9FA" }, - { "basketball", "\U0001F3C0" }, - { "bat", "\U0001F987" }, - { "bathtub", "\U0001F6C1" }, - { "battery", "\U0001F50B" }, - { "beach_with_umbrella", "\U0001F3D6" }, - { "beaming_face_with_smiling_eyes", "\U0001F601" }, - { "bear", "\U0001F43B" }, - { "beating_heart", "\U0001F493" }, - { "beaver", "\U0001F9AB" }, - { "bed", "\U0001F6CF" }, - { "beer_mug", "\U0001F37A" }, - { "beetle", "\U0001FAB2" }, - { "bell", "\U0001F514" }, - { "bell_pepper", "\U0001FAD1" }, - { "bell_with_slash", "\U0001F515" }, - { "bellhop_bell", "\U0001F6CE" }, - { "bento_box", "\U0001F371" }, - { "beverage_box", "\U0001F9C3" }, - { "bicycle", "\U0001F6B2" }, - { "bikini", "\U0001F459" }, - { "billed_cap", "\U0001F9E2" }, - { "biohazard", "\U00002623" }, - { "bird", "\U0001F426" }, - { "birthday_cake", "\U0001F382" }, - { "bison", "\U0001F9AC" }, - { "black_cat", "\U0001F408\U0000200D\U00002B1B" }, - { "black_circle", "\U000026AB" }, - { "black_flag", "\U0001F3F4" }, - { "black_heart", "\U0001F5A4" }, - { "black_large_square", "\U00002B1B" }, - { "black_medium_square", "\U000025FC" }, - { "black_medium-small_square", "\U000025FE" }, - { "black_nib", "\U00002712" }, - { "black_small_square", "\U000025AA" }, - { "black_square_button", "\U0001F532" }, - { "blossom", "\U0001F33C" }, - { "blowfish", "\U0001F421" }, - { "blue_book", "\U0001F4D8" }, - { "blue_circle", "\U0001F535" }, - { "blue_heart", "\U0001F499" }, - { "blue_square", "\U0001F7E6" }, - { "blueberries", "\U0001FAD0" }, - { "boar", "\U0001F417" }, - { "bomb", "\U0001F4A3" }, - { "bone", "\U0001F9B4" }, - { "bookmark", "\U0001F516" }, - { "bookmark_tabs", "\U0001F4D1" }, - { "books", "\U0001F4DA" }, - { "boomerang", "\U0001FA83" }, - { "bottle_with_popping_cork", "\U0001F37E" }, - { "bouquet", "\U0001F490" }, - { "bow_and_arrow", "\U0001F3F9" }, - { "bowl_with_spoon", "\U0001F963" }, - { "bowling", "\U0001F3B3" }, - { "boxing_glove", "\U0001F94A" }, - { "boy", "\U0001F466" }, - { "brain", "\U0001F9E0" }, - { "bread", "\U0001F35E" }, - { "breast-feeding", "\U0001F931" }, - { "brick", "\U0001F9F1" }, - { "bridge_at_night", "\U0001F309" }, - { "briefcase", "\U0001F4BC" }, - { "briefs", "\U0001FA72" }, - { "bright_button", "\U0001F506" }, - { "broccoli", "\U0001F966" }, - { "broken_heart", "\U0001F494" }, - { "broom", "\U0001F9F9" }, - { "brown_circle", "\U0001F7E4" }, - { "brown_heart", "\U0001F90E" }, - { "brown_square", "\U0001F7EB" }, - { "bubble_tea", "\U0001F9CB" }, - { "bucket", "\U0001FAA3" }, - { "bug", "\U0001F41B" }, - { "building_construction", "\U0001F3D7" }, - { "bullet_train", "\U0001F685" }, - { "bullseye", "\U0001F3AF" }, - { "burrito", "\U0001F32F" }, - { "bus", "\U0001F68C" }, - { "bus_stop", "\U0001F68F" }, - { "bust_in_silhouette", "\U0001F464" }, - { "busts_in_silhouette", "\U0001F465" }, - { "butter", "\U0001F9C8" }, - { "butterfly", "\U0001F98B" }, - { "cactus", "\U0001F335" }, - { "calendar", "\U0001F4C5" }, - { "call_me_hand", "\U0001F919" }, - { "camel", "\U0001F42A" }, - { "camera", "\U0001F4F7" }, - { "camera_with_flash", "\U0001F4F8" }, - { "camping", "\U0001F3D5" }, - { "cancer", "\U0000264B" }, - { "candle", "\U0001F56F" }, - { "candy", "\U0001F36C" }, - { "canned_food", "\U0001F96B" }, - { "canoe", "\U0001F6F6" }, - { "capricorn", "\U00002651" }, - { "card_file_box", "\U0001F5C3" }, - { "card_index", "\U0001F4C7" }, - { "card_index_dividers", "\U0001F5C2" }, - { "carousel_horse", "\U0001F3A0" }, - { "carp_streamer", "\U0001F38F" }, - { "carpentry_saw", "\U0001FA9A" }, - { "carrot", "\U0001F955" }, - { "castle", "\U0001F3F0" }, - { "cat", "\U0001F408" }, - { "cat_face", "\U0001F431" }, - { "cat_with_tears_of_joy", "\U0001F639" }, - { "cat_with_wry_smile", "\U0001F63C" }, - { "chains", "\U000026D3" }, - { "chair", "\U0001FA91" }, - { "chart_decreasing", "\U0001F4C9" }, - { "chart_increasing", "\U0001F4C8" }, - { "chart_increasing_with_yen", "\U0001F4B9" }, - { "check_box_with_check", "\U00002611" }, - { "check_mark", "\U00002714" }, - { "check_mark_button", "\U00002705" }, - { "cheese_wedge", "\U0001F9C0" }, - { "chequered_flag", "\U0001F3C1" }, - { "cherries", "\U0001F352" }, - { "cherry_blossom", "\U0001F338" }, - { "chess_pawn", "\U0000265F" }, - { "chestnut", "\U0001F330" }, - { "chicken", "\U0001F414" }, - { "child", "\U0001F9D2" }, - { "children_crossing", "\U0001F6B8" }, - { "chipmunk", "\U0001F43F" }, - { "chocolate_bar", "\U0001F36B" }, - { "chopsticks", "\U0001F962" }, - { "christmas_tree", "\U0001F384" }, - { "church", "\U000026EA" }, - { "cigarette", "\U0001F6AC" }, - { "cinema", "\U0001F3A6" }, - { "circled_m", "\U000024C2" }, - { "circus_tent", "\U0001F3AA" }, - { "cityscape", "\U0001F3D9" }, - { "cityscape_at_dusk", "\U0001F306" }, - { "cl_button", "\U0001F191" }, - { "clamp", "\U0001F5DC" }, - { "clapper_board", "\U0001F3AC" }, - { "clapping_hands", "\U0001F44F" }, - { "classical_building", "\U0001F3DB" }, - { "clinking_beer_mugs", "\U0001F37B" }, - { "clinking_glasses", "\U0001F942" }, - { "clipboard", "\U0001F4CB" }, - { "clockwise_vertical_arrows", "\U0001F503" }, - { "closed_book", "\U0001F4D5" }, - { "closed_mailbox_with_lowered_flag", "\U0001F4EA" }, - { "closed_mailbox_with_raised_flag", "\U0001F4EB" }, - { "closed_umbrella", "\U0001F302" }, - { "cloud", "\U00002601" }, - { "cloud_with_lightning", "\U0001F329" }, - { "cloud_with_lightning_and_rain", "\U000026C8" }, - { "cloud_with_rain", "\U0001F327" }, - { "cloud_with_snow", "\U0001F328" }, - { "clown_face", "\U0001F921" }, - { "club_suit", "\U00002663" }, - { "clutch_bag", "\U0001F45D" }, - { "coat", "\U0001F9E5" }, - { "cockroach", "\U0001FAB3" }, - { "cocktail_glass", "\U0001F378" }, - { "coconut", "\U0001F965" }, - { "coffin", "\U000026B0" }, - { "coin", "\U0001FA99" }, - { "cold_face", "\U0001F976" }, - { "collision", "\U0001F4A5" }, - { "comet", "\U00002604" }, - { "compass", "\U0001F9ED" }, - { "computer_disk", "\U0001F4BD" }, - { "computer_mouse", "\U0001F5B1" }, - { "confetti_ball", "\U0001F38A" }, - { "confounded_face", "\U0001F616" }, - { "confused_face", "\U0001F615" }, - { "construction", "\U0001F6A7" }, - { "construction_worker", "\U0001F477" }, - { "control_knobs", "\U0001F39B" }, - { "convenience_store", "\U0001F3EA" }, - { "cook", "\U0001F9D1\U0000200D\U0001F373" }, - { "cooked_rice", "\U0001F35A" }, - { "cookie", "\U0001F36A" }, - { "cooking", "\U0001F373" }, - { "cool_button", "\U0001F192" }, - { "copyright", "\U000000A9" }, - { "couch_and_lamp", "\U0001F6CB" }, - { "counterclockwise_arrows_button", "\U0001F504" }, - { "couple_with_heart", "\U0001F491" }, - { "couple_with_heart_man_man", "\U0001F468\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468" }, - { "couple_with_heart_woman_man", "\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468" }, - { "couple_with_heart_woman_woman", "\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469" }, - { "cow", "\U0001F404" }, - { "cow_face", "\U0001F42E" }, - { "cowboy_hat_face", "\U0001F920" }, - { "crab", "\U0001F980" }, - { "crayon", "\U0001F58D" }, - { "credit_card", "\U0001F4B3" }, - { "crescent_moon", "\U0001F319" }, - { "cricket", "\U0001F997" }, - { "cricket_game", "\U0001F3CF" }, - { "crocodile", "\U0001F40A" }, - { "croissant", "\U0001F950" }, - { "cross_mark", "\U0000274C" }, - { "cross_mark_button", "\U0000274E" }, - { "crossed_fingers", "\U0001F91E" }, - { "crossed_flags", "\U0001F38C" }, - { "crossed_swords", "\U00002694" }, - { "crown", "\U0001F451" }, - { "crying_cat", "\U0001F63F" }, - { "crying_face", "\U0001F622" }, - { "crystal_ball", "\U0001F52E" }, - { "cucumber", "\U0001F952" }, - { "cup_with_straw", "\U0001F964" }, - { "cupcake", "\U0001F9C1" }, - { "curling_stone", "\U0001F94C" }, - { "curly_hair", "\U0001F9B1" }, - { "curly_loop", "\U000027B0" }, - { "currency_exchange", "\U0001F4B1" }, - { "curry_rice", "\U0001F35B" }, - { "custard", "\U0001F36E" }, - { "customs", "\U0001F6C3" }, - { "cut_of_meat", "\U0001F969" }, - { "cyclone", "\U0001F300" }, - { "dagger", "\U0001F5E1" }, - { "dango", "\U0001F361" }, - { "dashing_away", "\U0001F4A8" }, - { "deaf_man", "\U0001F9CF\U0000200D\U00002642\U0000FE0F" }, - { "deaf_person", "\U0001F9CF" }, - { "deaf_woman", "\U0001F9CF\U0000200D\U00002640\U0000FE0F" }, - { "deciduous_tree", "\U0001F333" }, - { "deer", "\U0001F98C" }, - { "delivery_truck", "\U0001F69A" }, - { "department_store", "\U0001F3EC" }, - { "derelict_house", "\U0001F3DA" }, - { "desert", "\U0001F3DC" }, - { "desert_island", "\U0001F3DD" }, - { "desktop_computer", "\U0001F5A5" }, - { "detective", "\U0001F575" }, - { "diamond_suit", "\U00002666" }, - { "diamond_with_a_dot", "\U0001F4A0" }, - { "dim_button", "\U0001F505" }, - { "disappointed_face", "\U0001F61E" }, - { "disguised_face", "\U0001F978" }, - { "divide", "\U00002797" }, - { "diving_mask", "\U0001F93F" }, - { "diya_lamp", "\U0001FA94" }, - { "dizzy", "\U0001F4AB" }, - { "dna", "\U0001F9EC" }, - { "dodo", "\U0001F9A4" }, - { "dog", "\U0001F415" }, - { "dog_face", "\U0001F436" }, - { "dollar_banknote", "\U0001F4B5" }, - { "dolphin", "\U0001F42C" }, - { "door", "\U0001F6AA" }, - { "dotted_six-pointed_star", "\U0001F52F" }, - { "double_curly_loop", "\U000027BF" }, - { "double_exclamation_mark", "\U0000203C" }, - { "doughnut", "\U0001F369" }, - { "dove", "\U0001F54A" }, - { "down_arrow", "\U00002B07" }, - { "down-left_arrow", "\U00002199" }, - { "down-right_arrow", "\U00002198" }, - { "downcast_face_with_sweat", "\U0001F613" }, - { "downwards_button", "\U0001F53D" }, - { "dragon", "\U0001F409" }, - { "dragon_face", "\U0001F432" }, - { "dress", "\U0001F457" }, - { "drooling_face", "\U0001F924" }, - { "drop_of_blood", "\U0001FA78" }, - { "droplet", "\U0001F4A7" }, - { "drum", "\U0001F941" }, - { "duck", "\U0001F986" }, - { "dumpling", "\U0001F95F" }, - { "dvd", "\U0001F4C0" }, - { "e-mail", "\U0001F4E7" }, - { "eagle", "\U0001F985" }, - { "ear", "\U0001F442" }, - { "ear_of_corn", "\U0001F33D" }, - { "ear_with_hearing_aid", "\U0001F9BB" }, - { "egg", "\U0001F95A" }, - { "eggplant", "\U0001F346" }, - { "eight_o’clock", "\U0001F557" }, - { "eight-pointed_star", "\U00002734" }, - { "eight-spoked_asterisk", "\U00002733" }, - { "eight-thirty", "\U0001F563" }, - { "eject_button", "\U000023CF" }, - { "electric_plug", "\U0001F50C" }, - { "elephant", "\U0001F418" }, - { "elevator", "\U0001F6D7" }, - { "eleven_o’clock", "\U0001F55A" }, - { "eleven-thirty", "\U0001F566" }, - { "elf", "\U0001F9DD" }, - { "end_arrow", "\U0001F51A" }, - { "envelope", "\U00002709" }, - { "envelope_with_arrow", "\U0001F4E9" }, - { "euro_banknote", "\U0001F4B6" }, - { "evergreen_tree", "\U0001F332" }, - { "ewe", "\U0001F411" }, - { "exclamation_question_mark", "\U00002049" }, - { "exploding_head", "\U0001F92F" }, - { "expressionless_face", "\U0001F611" }, - { "eye", "\U0001F441" }, - { "eye_in_speech_bubble", "\U0001F441\U0000FE0F\U0000200D\U0001F5E8\U0000FE0F" }, - { "eyes", "\U0001F440" }, - { "face_blowing_a_kiss", "\U0001F618" }, - { "face_exhaling", "\U0001F62E\U0000200D\U0001F4A8" }, - { "face_in_clouds", "\U0001F636\U0000200D\U0001F32B\U0000FE0F" }, - { "face_savoring_food", "\U0001F60B" }, - { "face_screaming_in_fear", "\U0001F631" }, - { "face_vomiting", "\U0001F92E" }, - { "face_with_hand_over_mouth", "\U0001F92D" }, - { "face_with_head-bandage", "\U0001F915" }, - { "face_with_medical_mask", "\U0001F637" }, - { "face_with_monocle", "\U0001F9D0" }, - { "face_with_open_mouth", "\U0001F62E" }, - { "face_with_raised_eyebrow", "\U0001F928" }, - { "face_with_rolling_eyes", "\U0001F644" }, - { "face_with_spiral_eyes", "\U0001F635\U0000200D\U0001F4AB" }, - { "face_with_steam_from_nose", "\U0001F624" }, - { "face_with_symbols_on_mouth", "\U0001F92C" }, - { "face_with_tears_of_joy", "\U0001F602" }, - { "face_with_thermometer", "\U0001F912" }, - { "face_with_tongue", "\U0001F61B" }, - { "face_without_mouth", "\U0001F636" }, - { "factory", "\U0001F3ED" }, - { "factory_worker", "\U0001F9D1\U0000200D\U0001F3ED" }, - { "fairy", "\U0001F9DA" }, - { "falafel", "\U0001F9C6" }, - { "fallen_leaf", "\U0001F342" }, - { "family", "\U0001F46A" }, - { "family_man_boy", "\U0001F468\U0000200D\U0001F466" }, - { "family_man_boy_boy", "\U0001F468\U0000200D\U0001F466\U0000200D\U0001F466" }, - { "family_man_girl", "\U0001F468\U0000200D\U0001F467" }, - { "family_man_girl_boy", "\U0001F468\U0000200D\U0001F467\U0000200D\U0001F466" }, - { "family_man_girl_girl", "\U0001F468\U0000200D\U0001F467\U0000200D\U0001F467" }, - { "family_man_man_boy", "\U0001F468\U0000200D\U0001F468\U0000200D\U0001F466" }, - { "family_man_man_boy_boy", "\U0001F468\U0000200D\U0001F468\U0000200D\U0001F466\U0000200D\U0001F466" }, - { "family_man_man_girl", "\U0001F468\U0000200D\U0001F468\U0000200D\U0001F467" }, - { "family_man_man_girl_boy", "\U0001F468\U0000200D\U0001F468\U0000200D\U0001F467\U0000200D\U0001F466" }, - { "family_man_man_girl_girl", "\U0001F468\U0000200D\U0001F468\U0000200D\U0001F467\U0000200D\U0001F467" }, - { "family_man_woman_boy", "\U0001F468\U0000200D\U0001F469\U0000200D\U0001F466" }, - { "family_man_woman_boy_boy", "\U0001F468\U0000200D\U0001F469\U0000200D\U0001F466\U0000200D\U0001F466" }, - { "family_man_woman_girl", "\U0001F468\U0000200D\U0001F469\U0000200D\U0001F467" }, - { "family_man_woman_girl_boy", "\U0001F468\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F466" }, - { "family_man_woman_girl_girl", "\U0001F468\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F467" }, - { "family_woman_boy", "\U0001F469\U0000200D\U0001F466" }, - { "family_woman_boy_boy", "\U0001F469\U0000200D\U0001F466\U0000200D\U0001F466" }, - { "family_woman_girl", "\U0001F469\U0000200D\U0001F467" }, - { "family_woman_girl_boy", "\U0001F469\U0000200D\U0001F467\U0000200D\U0001F466" }, - { "family_woman_girl_girl", "\U0001F469\U0000200D\U0001F467\U0000200D\U0001F467" }, - { "family_woman_woman_boy", "\U0001F469\U0000200D\U0001F469\U0000200D\U0001F466" }, - { "family_woman_woman_boy_boy", "\U0001F469\U0000200D\U0001F469\U0000200D\U0001F466\U0000200D\U0001F466" }, - { "family_woman_woman_girl", "\U0001F469\U0000200D\U0001F469\U0000200D\U0001F467" }, - { "family_woman_woman_girl_boy", "\U0001F469\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F466" }, - { "family_woman_woman_girl_girl", "\U0001F469\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F467" }, - { "farmer", "\U0001F9D1\U0000200D\U0001F33E" }, - { "fast_down_button", "\U000023EC" }, - { "fast_reverse_button", "\U000023EA" }, - { "fast_up_button", "\U000023EB" }, - { "fast-forward_button", "\U000023E9" }, - { "fax_machine", "\U0001F4E0" }, - { "fearful_face", "\U0001F628" }, - { "feather", "\U0001FAB6" }, - { "female_sign", "\U00002640" }, - { "ferris_wheel", "\U0001F3A1" }, - { "ferry", "\U000026F4" }, - { "field_hockey", "\U0001F3D1" }, - { "file_cabinet", "\U0001F5C4" }, - { "file_folder", "\U0001F4C1" }, - { "film_frames", "\U0001F39E" }, - { "film_projector", "\U0001F4FD" }, - { "fire", "\U0001F525" }, - { "fire_engine", "\U0001F692" }, - { "fire_extinguisher", "\U0001F9EF" }, - { "firecracker", "\U0001F9E8" }, - { "firefighter", "\U0001F9D1\U0000200D\U0001F692" }, - { "fireworks", "\U0001F386" }, - { "first_quarter_moon", "\U0001F313" }, - { "first_quarter_moon_face", "\U0001F31B" }, - { "fish", "\U0001F41F" }, - { "fish_cake_with_swirl", "\U0001F365" }, - { "fishing_pole", "\U0001F3A3" }, - { "five_o’clock", "\U0001F554" }, - { "five-thirty", "\U0001F560" }, - { "flag_afghanistan", "\U0001F1E6\U0001F1EB" }, - { "flag_åland_islands", "\U0001F1E6\U0001F1FD" }, - { "flag_albania", "\U0001F1E6\U0001F1F1" }, - { "flag_algeria", "\U0001F1E9\U0001F1FF" }, - { "flag_american_samoa", "\U0001F1E6\U0001F1F8" }, - { "flag_andorra", "\U0001F1E6\U0001F1E9" }, - { "flag_angola", "\U0001F1E6\U0001F1F4" }, - { "flag_anguilla", "\U0001F1E6\U0001F1EE" }, - { "flag_antarctica", "\U0001F1E6\U0001F1F6" }, - { "flag_antigua_&_barbuda", "\U0001F1E6\U0001F1EC" }, - { "flag_argentina", "\U0001F1E6\U0001F1F7" }, - { "flag_armenia", "\U0001F1E6\U0001F1F2" }, - { "flag_aruba", "\U0001F1E6\U0001F1FC" }, - { "flag_ascension_island", "\U0001F1E6\U0001F1E8" }, - { "flag_australia", "\U0001F1E6\U0001F1FA" }, - { "flag_austria", "\U0001F1E6\U0001F1F9" }, - { "flag_azerbaijan", "\U0001F1E6\U0001F1FF" }, - { "flag_bahamas", "\U0001F1E7\U0001F1F8" }, - { "flag_bahrain", "\U0001F1E7\U0001F1ED" }, - { "flag_bangladesh", "\U0001F1E7\U0001F1E9" }, - { "flag_barbados", "\U0001F1E7\U0001F1E7" }, - { "flag_belarus", "\U0001F1E7\U0001F1FE" }, - { "flag_belgium", "\U0001F1E7\U0001F1EA" }, - { "flag_belize", "\U0001F1E7\U0001F1FF" }, - { "flag_benin", "\U0001F1E7\U0001F1EF" }, - { "flag_bermuda", "\U0001F1E7\U0001F1F2" }, - { "flag_bhutan", "\U0001F1E7\U0001F1F9" }, - { "flag_bolivia", "\U0001F1E7\U0001F1F4" }, - { "flag_bosnia_&_herzegovina", "\U0001F1E7\U0001F1E6" }, - { "flag_botswana", "\U0001F1E7\U0001F1FC" }, - { "flag_bouvet_island", "\U0001F1E7\U0001F1FB" }, - { "flag_brazil", "\U0001F1E7\U0001F1F7" }, - { "flag_british_indian_ocean_territory", "\U0001F1EE\U0001F1F4" }, - { "flag_british_virgin_islands", "\U0001F1FB\U0001F1EC" }, - { "flag_brunei", "\U0001F1E7\U0001F1F3" }, - { "flag_bulgaria", "\U0001F1E7\U0001F1EC" }, - { "flag_burkina_faso", "\U0001F1E7\U0001F1EB" }, - { "flag_burundi", "\U0001F1E7\U0001F1EE" }, - { "flag_cambodia", "\U0001F1F0\U0001F1ED" }, - { "flag_cameroon", "\U0001F1E8\U0001F1F2" }, - { "flag_canada", "\U0001F1E8\U0001F1E6" }, - { "flag_canary_islands", "\U0001F1EE\U0001F1E8" }, - { "flag_cape_verde", "\U0001F1E8\U0001F1FB" }, - { "flag_caribbean_netherlands", "\U0001F1E7\U0001F1F6" }, - { "flag_cayman_islands", "\U0001F1F0\U0001F1FE" }, - { "flag_central_african_republic", "\U0001F1E8\U0001F1EB" }, - { "flag_ceuta_&_melilla", "\U0001F1EA\U0001F1E6" }, - { "flag_chad", "\U0001F1F9\U0001F1E9" }, - { "flag_chile", "\U0001F1E8\U0001F1F1" }, - { "flag_china", "\U0001F1E8\U0001F1F3" }, - { "flag_christmas_island", "\U0001F1E8\U0001F1FD" }, - { "flag_clipperton_island", "\U0001F1E8\U0001F1F5" }, - { "flag_cocos_(keeling)_islands", "\U0001F1E8\U0001F1E8" }, - { "flag_colombia", "\U0001F1E8\U0001F1F4" }, - { "flag_comoros", "\U0001F1F0\U0001F1F2" }, - { "flag_congo_-_brazzaville", "\U0001F1E8\U0001F1EC" }, - { "flag_congo_-_kinshasa", "\U0001F1E8\U0001F1E9" }, - { "flag_cook_islands", "\U0001F1E8\U0001F1F0" }, - { "flag_costa_rica", "\U0001F1E8\U0001F1F7" }, - { "flag_côte_d’ivoire", "\U0001F1E8\U0001F1EE" }, - { "flag_croatia", "\U0001F1ED\U0001F1F7" }, - { "flag_cuba", "\U0001F1E8\U0001F1FA" }, - { "flag_curaçao", "\U0001F1E8\U0001F1FC" }, - { "flag_cyprus", "\U0001F1E8\U0001F1FE" }, - { "flag_czechia", "\U0001F1E8\U0001F1FF" }, - { "flag_denmark", "\U0001F1E9\U0001F1F0" }, - { "flag_diego_garcia", "\U0001F1E9\U0001F1EC" }, - { "flag_djibouti", "\U0001F1E9\U0001F1EF" }, - { "flag_dominica", "\U0001F1E9\U0001F1F2" }, - { "flag_dominican_republic", "\U0001F1E9\U0001F1F4" }, - { "flag_ecuador", "\U0001F1EA\U0001F1E8" }, - { "flag_egypt", "\U0001F1EA\U0001F1EC" }, - { "flag_el_salvador", "\U0001F1F8\U0001F1FB" }, - { "flag_england", "\U0001F3F4\U000E0067\U000E0062\U000E0065\U000E006E\U000E0067\U000E007F" }, - { "flag_equatorial_guinea", "\U0001F1EC\U0001F1F6" }, - { "flag_eritrea", "\U0001F1EA\U0001F1F7" }, - { "flag_estonia", "\U0001F1EA\U0001F1EA" }, - { "flag_eswatini", "\U0001F1F8\U0001F1FF" }, - { "flag_ethiopia", "\U0001F1EA\U0001F1F9" }, - { "flag_european_union", "\U0001F1EA\U0001F1FA" }, - { "flag_falkland_islands", "\U0001F1EB\U0001F1F0" }, - { "flag_faroe_islands", "\U0001F1EB\U0001F1F4" }, - { "flag_fiji", "\U0001F1EB\U0001F1EF" }, - { "flag_finland", "\U0001F1EB\U0001F1EE" }, - { "flag_france", "\U0001F1EB\U0001F1F7" }, - { "flag_french_guiana", "\U0001F1EC\U0001F1EB" }, - { "flag_french_polynesia", "\U0001F1F5\U0001F1EB" }, - { "flag_french_southern_territories", "\U0001F1F9\U0001F1EB" }, - { "flag_gabon", "\U0001F1EC\U0001F1E6" }, - { "flag_gambia", "\U0001F1EC\U0001F1F2" }, - { "flag_georgia", "\U0001F1EC\U0001F1EA" }, - { "flag_germany", "\U0001F1E9\U0001F1EA" }, - { "flag_ghana", "\U0001F1EC\U0001F1ED" }, - { "flag_gibraltar", "\U0001F1EC\U0001F1EE" }, - { "flag_greece", "\U0001F1EC\U0001F1F7" }, - { "flag_greenland", "\U0001F1EC\U0001F1F1" }, - { "flag_grenada", "\U0001F1EC\U0001F1E9" }, - { "flag_guadeloupe", "\U0001F1EC\U0001F1F5" }, - { "flag_guam", "\U0001F1EC\U0001F1FA" }, - { "flag_guatemala", "\U0001F1EC\U0001F1F9" }, - { "flag_guernsey", "\U0001F1EC\U0001F1EC" }, - { "flag_guinea", "\U0001F1EC\U0001F1F3" }, - { "flag_guinea-bissau", "\U0001F1EC\U0001F1FC" }, - { "flag_guyana", "\U0001F1EC\U0001F1FE" }, - { "flag_haiti", "\U0001F1ED\U0001F1F9" }, - { "flag_heard_&_mcdonald_islands", "\U0001F1ED\U0001F1F2" }, - { "flag_honduras", "\U0001F1ED\U0001F1F3" }, - { "flag_hong_kong_sar_china", "\U0001F1ED\U0001F1F0" }, - { "flag_hungary", "\U0001F1ED\U0001F1FA" }, - { "flag_iceland", "\U0001F1EE\U0001F1F8" }, - { "flag_in_hole", "\U000026F3" }, - { "flag_india", "\U0001F1EE\U0001F1F3" }, - { "flag_indonesia", "\U0001F1EE\U0001F1E9" }, - { "flag_iran", "\U0001F1EE\U0001F1F7" }, - { "flag_iraq", "\U0001F1EE\U0001F1F6" }, - { "flag_ireland", "\U0001F1EE\U0001F1EA" }, - { "flag_isle_of_man", "\U0001F1EE\U0001F1F2" }, - { "flag_israel", "\U0001F1EE\U0001F1F1" }, - { "flag_italy", "\U0001F1EE\U0001F1F9" }, - { "flag_jamaica", "\U0001F1EF\U0001F1F2" }, - { "flag_japan", "\U0001F1EF\U0001F1F5" }, - { "flag_jersey", "\U0001F1EF\U0001F1EA" }, - { "flag_jordan", "\U0001F1EF\U0001F1F4" }, - { "flag_kazakhstan", "\U0001F1F0\U0001F1FF" }, - { "flag_kenya", "\U0001F1F0\U0001F1EA" }, - { "flag_kiribati", "\U0001F1F0\U0001F1EE" }, - { "flag_kosovo", "\U0001F1FD\U0001F1F0" }, - { "flag_kuwait", "\U0001F1F0\U0001F1FC" }, - { "flag_kyrgyzstan", "\U0001F1F0\U0001F1EC" }, - { "flag_laos", "\U0001F1F1\U0001F1E6" }, - { "flag_latvia", "\U0001F1F1\U0001F1FB" }, - { "flag_lebanon", "\U0001F1F1\U0001F1E7" }, - { "flag_lesotho", "\U0001F1F1\U0001F1F8" }, - { "flag_liberia", "\U0001F1F1\U0001F1F7" }, - { "flag_libya", "\U0001F1F1\U0001F1FE" }, - { "flag_liechtenstein", "\U0001F1F1\U0001F1EE" }, - { "flag_lithuania", "\U0001F1F1\U0001F1F9" }, - { "flag_luxembourg", "\U0001F1F1\U0001F1FA" }, - { "flag_macao_sar_china", "\U0001F1F2\U0001F1F4" }, - { "flag_madagascar", "\U0001F1F2\U0001F1EC" }, - { "flag_malawi", "\U0001F1F2\U0001F1FC" }, - { "flag_malaysia", "\U0001F1F2\U0001F1FE" }, - { "flag_maldives", "\U0001F1F2\U0001F1FB" }, - { "flag_mali", "\U0001F1F2\U0001F1F1" }, - { "flag_malta", "\U0001F1F2\U0001F1F9" }, - { "flag_marshall_islands", "\U0001F1F2\U0001F1ED" }, - { "flag_martinique", "\U0001F1F2\U0001F1F6" }, - { "flag_mauritania", "\U0001F1F2\U0001F1F7" }, - { "flag_mauritius", "\U0001F1F2\U0001F1FA" }, - { "flag_mayotte", "\U0001F1FE\U0001F1F9" }, - { "flag_mexico", "\U0001F1F2\U0001F1FD" }, - { "flag_micronesia", "\U0001F1EB\U0001F1F2" }, - { "flag_moldova", "\U0001F1F2\U0001F1E9" }, - { "flag_monaco", "\U0001F1F2\U0001F1E8" }, - { "flag_mongolia", "\U0001F1F2\U0001F1F3" }, - { "flag_montenegro", "\U0001F1F2\U0001F1EA" }, - { "flag_montserrat", "\U0001F1F2\U0001F1F8" }, - { "flag_morocco", "\U0001F1F2\U0001F1E6" }, - { "flag_mozambique", "\U0001F1F2\U0001F1FF" }, - { "flag_myanmar_(burma)", "\U0001F1F2\U0001F1F2" }, - { "flag_namibia", "\U0001F1F3\U0001F1E6" }, - { "flag_nauru", "\U0001F1F3\U0001F1F7" }, - { "flag_nepal", "\U0001F1F3\U0001F1F5" }, - { "flag_netherlands", "\U0001F1F3\U0001F1F1" }, - { "flag_new_caledonia", "\U0001F1F3\U0001F1E8" }, - { "flag_new_zealand", "\U0001F1F3\U0001F1FF" }, - { "flag_nicaragua", "\U0001F1F3\U0001F1EE" }, - { "flag_niger", "\U0001F1F3\U0001F1EA" }, - { "flag_nigeria", "\U0001F1F3\U0001F1EC" }, - { "flag_niue", "\U0001F1F3\U0001F1FA" }, - { "flag_norfolk_island", "\U0001F1F3\U0001F1EB" }, - { "flag_north_korea", "\U0001F1F0\U0001F1F5" }, - { "flag_north_macedonia", "\U0001F1F2\U0001F1F0" }, - { "flag_northern_mariana_islands", "\U0001F1F2\U0001F1F5" }, - { "flag_norway", "\U0001F1F3\U0001F1F4" }, - { "flag_oman", "\U0001F1F4\U0001F1F2" }, - { "flag_pakistan", "\U0001F1F5\U0001F1F0" }, - { "flag_palau", "\U0001F1F5\U0001F1FC" }, - { "flag_palestinian_territories", "\U0001F1F5\U0001F1F8" }, - { "flag_panama", "\U0001F1F5\U0001F1E6" }, - { "flag_papua_new_guinea", "\U0001F1F5\U0001F1EC" }, - { "flag_paraguay", "\U0001F1F5\U0001F1FE" }, - { "flag_peru", "\U0001F1F5\U0001F1EA" }, - { "flag_philippines", "\U0001F1F5\U0001F1ED" }, - { "flag_pitcairn_islands", "\U0001F1F5\U0001F1F3" }, - { "flag_poland", "\U0001F1F5\U0001F1F1" }, - { "flag_portugal", "\U0001F1F5\U0001F1F9" }, - { "flag_puerto_rico", "\U0001F1F5\U0001F1F7" }, - { "flag_qatar", "\U0001F1F6\U0001F1E6" }, - { "flag_réunion", "\U0001F1F7\U0001F1EA" }, - { "flag_romania", "\U0001F1F7\U0001F1F4" }, - { "flag_russia", "\U0001F1F7\U0001F1FA" }, - { "flag_rwanda", "\U0001F1F7\U0001F1FC" }, - { "flag_samoa", "\U0001F1FC\U0001F1F8" }, - { "flag_san_marino", "\U0001F1F8\U0001F1F2" }, - { "flag_são_tomé_&_príncipe", "\U0001F1F8\U0001F1F9" }, - { "flag_saudi_arabia", "\U0001F1F8\U0001F1E6" }, - { "flag_scotland", "\U0001F3F4\U000E0067\U000E0062\U000E0073\U000E0063\U000E0074\U000E007F" }, - { "flag_senegal", "\U0001F1F8\U0001F1F3" }, - { "flag_serbia", "\U0001F1F7\U0001F1F8" }, - { "flag_seychelles", "\U0001F1F8\U0001F1E8" }, - { "flag_sierra_leone", "\U0001F1F8\U0001F1F1" }, - { "flag_singapore", "\U0001F1F8\U0001F1EC" }, - { "flag_sint_maarten", "\U0001F1F8\U0001F1FD" }, - { "flag_slovakia", "\U0001F1F8\U0001F1F0" }, - { "flag_slovenia", "\U0001F1F8\U0001F1EE" }, - { "flag_solomon_islands", "\U0001F1F8\U0001F1E7" }, - { "flag_somalia", "\U0001F1F8\U0001F1F4" }, - { "flag_south_africa", "\U0001F1FF\U0001F1E6" }, - { "flag_south_georgia_&_south_sandwich_islands", "\U0001F1EC\U0001F1F8" }, - { "flag_south_korea", "\U0001F1F0\U0001F1F7" }, - { "flag_south_sudan", "\U0001F1F8\U0001F1F8" }, - { "flag_spain", "\U0001F1EA\U0001F1F8" }, - { "flag_sri_lanka", "\U0001F1F1\U0001F1F0" }, - { "flag_st_barthélemy", "\U0001F1E7\U0001F1F1" }, - { "flag_st_helena", "\U0001F1F8\U0001F1ED" }, - { "flag_st_kitts_&_nevis", "\U0001F1F0\U0001F1F3" }, - { "flag_st_lucia", "\U0001F1F1\U0001F1E8" }, - { "flag_st_martin", "\U0001F1F2\U0001F1EB" }, - { "flag_st_pierre_&_miquelon", "\U0001F1F5\U0001F1F2" }, - { "flag_st_vincent_&_grenadines", "\U0001F1FB\U0001F1E8" }, - { "flag_sudan", "\U0001F1F8\U0001F1E9" }, - { "flag_suriname", "\U0001F1F8\U0001F1F7" }, - { "flag_svalbard_&_jan_mayen", "\U0001F1F8\U0001F1EF" }, - { "flag_sweden", "\U0001F1F8\U0001F1EA" }, - { "flag_switzerland", "\U0001F1E8\U0001F1ED" }, - { "flag_syria", "\U0001F1F8\U0001F1FE" }, - { "flag_taiwan", "\U0001F1F9\U0001F1FC" }, - { "flag_tajikistan", "\U0001F1F9\U0001F1EF" }, - { "flag_tanzania", "\U0001F1F9\U0001F1FF" }, - { "flag_thailand", "\U0001F1F9\U0001F1ED" }, - { "flag_timor-leste", "\U0001F1F9\U0001F1F1" }, - { "flag_togo", "\U0001F1F9\U0001F1EC" }, - { "flag_tokelau", "\U0001F1F9\U0001F1F0" }, - { "flag_tonga", "\U0001F1F9\U0001F1F4" }, - { "flag_trinidad_&_tobago", "\U0001F1F9\U0001F1F9" }, - { "flag_tristan_da_cunha", "\U0001F1F9\U0001F1E6" }, - { "flag_tunisia", "\U0001F1F9\U0001F1F3" }, - { "flag_turkey", "\U0001F1F9\U0001F1F7" }, - { "flag_turkmenistan", "\U0001F1F9\U0001F1F2" }, - { "flag_turks_&_caicos_islands", "\U0001F1F9\U0001F1E8" }, - { "flag_tuvalu", "\U0001F1F9\U0001F1FB" }, - { "flag_uganda", "\U0001F1FA\U0001F1EC" }, - { "flag_ukraine", "\U0001F1FA\U0001F1E6" }, - { "flag_united_arab_emirates", "\U0001F1E6\U0001F1EA" }, - { "flag_united_kingdom", "\U0001F1EC\U0001F1E7" }, - { "flag_united_nations", "\U0001F1FA\U0001F1F3" }, - { "flag_united_states", "\U0001F1FA\U0001F1F8" }, - { "flag_uruguay", "\U0001F1FA\U0001F1FE" }, - { "flag_us_outlying_islands", "\U0001F1FA\U0001F1F2" }, - { "flag_us_virgin_islands", "\U0001F1FB\U0001F1EE" }, - { "flag_uzbekistan", "\U0001F1FA\U0001F1FF" }, - { "flag_vanuatu", "\U0001F1FB\U0001F1FA" }, - { "flag_vatican_city", "\U0001F1FB\U0001F1E6" }, - { "flag_venezuela", "\U0001F1FB\U0001F1EA" }, - { "flag_vietnam", "\U0001F1FB\U0001F1F3" }, - { "flag_wales", "\U0001F3F4\U000E0067\U000E0062\U000E0077\U000E006C\U000E0073\U000E007F" }, - { "flag_wallis_&_futuna", "\U0001F1FC\U0001F1EB" }, - { "flag_western_sahara", "\U0001F1EA\U0001F1ED" }, - { "flag_yemen", "\U0001F1FE\U0001F1EA" }, - { "flag_zambia", "\U0001F1FF\U0001F1F2" }, - { "flag_zimbabwe", "\U0001F1FF\U0001F1FC" }, - { "flamingo", "\U0001F9A9" }, - { "flashlight", "\U0001F526" }, - { "flat_shoe", "\U0001F97F" }, - { "flatbread", "\U0001FAD3" }, - { "fleur-de-lis", "\U0000269C" }, - { "flexed_biceps", "\U0001F4AA" }, - { "floppy_disk", "\U0001F4BE" }, - { "flower_playing_cards", "\U0001F3B4" }, - { "flushed_face", "\U0001F633" }, - { "fly", "\U0001FAB0" }, - { "flying_disc", "\U0001F94F" }, - { "flying_saucer", "\U0001F6F8" }, - { "fog", "\U0001F32B" }, - { "foggy", "\U0001F301" }, - { "folded_hands", "\U0001F64F" }, - { "fondue", "\U0001FAD5" }, - { "foot", "\U0001F9B6" }, - { "footprints", "\U0001F463" }, - { "fork_and_knife", "\U0001F374" }, - { "fork_and_knife_with_plate", "\U0001F37D" }, - { "fortune_cookie", "\U0001F960" }, - { "fountain", "\U000026F2" }, - { "fountain_pen", "\U0001F58B" }, - { "four_leaf_clover", "\U0001F340" }, - { "four_o’clock", "\U0001F553" }, - { "four-thirty", "\U0001F55F" }, - { "fox", "\U0001F98A" }, - { "framed_picture", "\U0001F5BC" }, - { "free_button", "\U0001F193" }, - { "french_fries", "\U0001F35F" }, - { "fried_shrimp", "\U0001F364" }, - { "frog", "\U0001F438" }, - { "front-facing_baby_chick", "\U0001F425" }, - { "frowning_face", "\U00002639" }, - { "frowning_face_with_open_mouth", "\U0001F626" }, - { "fuel_pump", "\U000026FD" }, - { "full_moon", "\U0001F315" }, - { "full_moon_face", "\U0001F31D" }, - { "funeral_urn", "\U000026B1" }, - { "game_die", "\U0001F3B2" }, - { "garlic", "\U0001F9C4" }, - { "gear", "\U00002699" }, - { "gem_stone", "\U0001F48E" }, - { "gemini", "\U0000264A" }, - { "genie", "\U0001F9DE" }, - { "ghost", "\U0001F47B" }, - { "giraffe", "\U0001F992" }, - { "girl", "\U0001F467" }, - { "glass_of_milk", "\U0001F95B" }, - { "glasses", "\U0001F453" }, - { "globe_showing_americas", "\U0001F30E" }, - { "globe_showing_asia-australia", "\U0001F30F" }, - { "globe_showing_europe-africa", "\U0001F30D" }, - { "globe_with_meridians", "\U0001F310" }, - { "gloves", "\U0001F9E4" }, - { "glowing_star", "\U0001F31F" }, - { "goal_net", "\U0001F945" }, - { "goat", "\U0001F410" }, - { "goblin", "\U0001F47A" }, - { "goggles", "\U0001F97D" }, - { "gorilla", "\U0001F98D" }, - { "graduation_cap", "\U0001F393" }, - { "grapes", "\U0001F347" }, - { "green_apple", "\U0001F34F" }, - { "green_book", "\U0001F4D7" }, - { "green_circle", "\U0001F7E2" }, - { "green_heart", "\U0001F49A" }, - { "green_salad", "\U0001F957" }, - { "green_square", "\U0001F7E9" }, - { "grimacing_face", "\U0001F62C" }, - { "grinning_cat", "\U0001F63A" }, - { "grinning_cat_with_smiling_eyes", "\U0001F638" }, - { "grinning_face", "\U0001F600" }, - { "grinning_face_with_big_eyes", "\U0001F603" }, - { "grinning_face_with_smiling_eyes", "\U0001F604" }, - { "grinning_face_with_sweat", "\U0001F605" }, - { "grinning_squinting_face", "\U0001F606" }, - { "growing_heart", "\U0001F497" }, - { "guard", "\U0001F482" }, - { "guide_dog", "\U0001F9AE" }, - { "guitar", "\U0001F3B8" }, - { "hamburger", "\U0001F354" }, - { "hammer", "\U0001F528" }, - { "hammer_and_pick", "\U00002692" }, - { "hammer_and_wrench", "\U0001F6E0" }, - { "hamster", "\U0001F439" }, - { "hand_with_fingers_splayed", "\U0001F590" }, - { "handbag", "\U0001F45C" }, - { "handshake", "\U0001F91D" }, - { "hatching_chick", "\U0001F423" }, - { "headphone", "\U0001F3A7" }, - { "headstone", "\U0001FAA6" }, - { "health_worker", "\U0001F9D1\U0000200D\U00002695\U0000FE0F" }, - { "hear-no-evil_monkey", "\U0001F649" }, - { "heart_decoration", "\U0001F49F" }, - { "heart_exclamation", "\U00002763" }, - { "heart_on_fire", "\U00002764\U0000FE0F\U0000200D\U0001F525" }, - { "heart_suit", "\U00002665" }, - { "heart_with_arrow", "\U0001F498" }, - { "heart_with_ribbon", "\U0001F49D" }, - { "heavy_dollar_sign", "\U0001F4B2" }, - { "hedgehog", "\U0001F994" }, - { "helicopter", "\U0001F681" }, - { "herb", "\U0001F33F" }, - { "hibiscus", "\U0001F33A" }, - { "high_voltage", "\U000026A1" }, - { "high-heeled_shoe", "\U0001F460" }, - { "high-speed_train", "\U0001F684" }, - { "hiking_boot", "\U0001F97E" }, - { "hindu_temple", "\U0001F6D5" }, - { "hippopotamus", "\U0001F99B" }, - { "hole", "\U0001F573" }, - { "hollow_red_circle", "\U00002B55" }, - { "honey_pot", "\U0001F36F" }, - { "honeybee", "\U0001F41D" }, - { "hook", "\U0001FA9D" }, - { "horizontal_traffic_light", "\U0001F6A5" }, - { "horse", "\U0001F40E" }, - { "horse_face", "\U0001F434" }, - { "horse_racing", "\U0001F3C7" }, - { "hospital", "\U0001F3E5" }, - { "hot_beverage", "\U00002615" }, - { "hot_dog", "\U0001F32D" }, - { "hot_face", "\U0001F975" }, - { "hot_pepper", "\U0001F336" }, - { "hot_springs", "\U00002668" }, - { "hotel", "\U0001F3E8" }, - { "hourglass_done", "\U0000231B" }, - { "hourglass_not_done", "\U000023F3" }, - { "house", "\U0001F3E0" }, - { "house_with_garden", "\U0001F3E1" }, - { "houses", "\U0001F3D8" }, - { "hugging_face", "\U0001F917" }, - { "hundred_points", "\U0001F4AF" }, - { "hushed_face", "\U0001F62F" }, - { "hut", "\U0001F6D6" }, - { "ice", "\U0001F9CA" }, - { "ice_cream", "\U0001F368" }, - { "ice_hockey", "\U0001F3D2" }, - { "ice_skate", "\U000026F8" }, - { "id_button", "\U0001F194" }, - { "inbox_tray", "\U0001F4E5" }, - { "incoming_envelope", "\U0001F4E8" }, - { "index_pointing_up", "\U0000261D" }, - { "infinity", "\U0000267E" }, - { "information", "\U00002139" }, - { "input_latin_letters", "\U0001F524" }, - { "input_latin_lowercase", "\U0001F521" }, - { "input_latin_uppercase", "\U0001F520" }, - { "input_numbers", "\U0001F522" }, - { "input_symbols", "\U0001F523" }, - { "jack-o-lantern", "\U0001F383" }, - { "japanese_acceptable_button", "\U0001F251" }, - { "japanese_application_button", "\U0001F238" }, - { "japanese_bargain_button", "\U0001F250" }, - { "japanese_castle", "\U0001F3EF" }, - { "japanese_congratulations_button", "\U00003297" }, - { "japanese_discount_button", "\U0001F239" }, - { "japanese_dolls", "\U0001F38E" }, - { "japanese_free_of_charge_button", "\U0001F21A" }, - { "japanese_here_button", "\U0001F201" }, - { "japanese_monthly_amount_button", "\U0001F237" }, - { "japanese_no_vacancy_button", "\U0001F235" }, - { "japanese_not_free_of_charge_button", "\U0001F236" }, - { "japanese_open_for_business_button", "\U0001F23A" }, - { "japanese_passing_grade_button", "\U0001F234" }, - { "japanese_post_office", "\U0001F3E3" }, - { "japanese_prohibited_button", "\U0001F232" }, - { "japanese_reserved_button", "\U0001F22F" }, - { "japanese_secret_button", "\U00003299" }, - { "japanese_service_charge_button", "\U0001F202" }, - { "japanese_symbol_for_beginner", "\U0001F530" }, - { "japanese_vacancy_button", "\U0001F233" }, - { "jeans", "\U0001F456" }, - { "joker", "\U0001F0CF" }, - { "joystick", "\U0001F579" }, - { "judge", "\U0001F9D1\U0000200D\U00002696\U0000FE0F" }, - { "kaaba", "\U0001F54B" }, - { "kangaroo", "\U0001F998" }, - { "key", "\U0001F511" }, - { "keyboard", "\U00002328" }, - { "keycap_*", "\U0000002A\U0000FE0F\U000020E3" }, - { "keycap_#", "\U00000023\U0000FE0F\U000020E3" }, - { "keycap_0", "\U00000030\U0000FE0F\U000020E3" }, - { "keycap_1", "\U00000031\U0000FE0F\U000020E3" }, - { "keycap_10", "\U0001F51F" }, - { "keycap_2", "\U00000032\U0000FE0F\U000020E3" }, - { "keycap_3", "\U00000033\U0000FE0F\U000020E3" }, - { "keycap_4", "\U00000034\U0000FE0F\U000020E3" }, - { "keycap_5", "\U00000035\U0000FE0F\U000020E3" }, - { "keycap_6", "\U00000036\U0000FE0F\U000020E3" }, - { "keycap_7", "\U00000037\U0000FE0F\U000020E3" }, - { "keycap_8", "\U00000038\U0000FE0F\U000020E3" }, - { "keycap_9", "\U00000039\U0000FE0F\U000020E3" }, - { "kick_scooter", "\U0001F6F4" }, - { "kimono", "\U0001F458" }, - { "kiss", "\U0001F48F" }, - { "kiss_man_man", "\U0001F468\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468" }, - { "kiss_mark", "\U0001F48B" }, - { "kiss_woman_man", "\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468" }, - { "kiss_woman_woman", "\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469" }, - { "kissing_cat", "\U0001F63D" }, - { "kissing_face", "\U0001F617" }, - { "kissing_face_with_closed_eyes", "\U0001F61A" }, - { "kissing_face_with_smiling_eyes", "\U0001F619" }, - { "kitchen_knife", "\U0001F52A" }, - { "kite", "\U0001FA81" }, - { "kiwi_fruit", "\U0001F95D" }, - { "knocked-out_face", "\U0001F635" }, - { "knot", "\U0001FAA2" }, - { "koala", "\U0001F428" }, - { "lab_coat", "\U0001F97C" }, - { "label", "\U0001F3F7" }, - { "lacrosse", "\U0001F94D" }, - { "ladder", "\U0001FA9C" }, - { "lady_beetle", "\U0001F41E" }, - { "laptop", "\U0001F4BB" }, - { "large_blue_diamond", "\U0001F537" }, - { "large_orange_diamond", "\U0001F536" }, - { "last_quarter_moon", "\U0001F317" }, - { "last_quarter_moon_face", "\U0001F31C" }, - { "last_track_button", "\U000023EE" }, - { "latin_cross", "\U0000271D" }, - { "leaf_fluttering_in_wind", "\U0001F343" }, - { "leafy_green", "\U0001F96C" }, - { "ledger", "\U0001F4D2" }, - { "left_arrow", "\U00002B05" }, - { "left_arrow_curving_right", "\U000021AA" }, - { "left_luggage", "\U0001F6C5" }, - { "left_speech_bubble", "\U0001F5E8" }, - { "left-facing_fist", "\U0001F91B" }, - { "left-right_arrow", "\U00002194" }, - { "leg", "\U0001F9B5" }, - { "lemon", "\U0001F34B" }, - { "leo", "\U0000264C" }, - { "leopard", "\U0001F406" }, - { "level_slider", "\U0001F39A" }, - { "libra", "\U0000264E" }, - { "light_bulb", "\U0001F4A1" }, - { "light_rail", "\U0001F688" }, - { "link", "\U0001F517" }, - { "linked_paperclips", "\U0001F587" }, - { "lion", "\U0001F981" }, - { "lipstick", "\U0001F484" }, - { "litter_in_bin_sign", "\U0001F6AE" }, - { "lizard", "\U0001F98E" }, - { "llama", "\U0001F999" }, - { "lobster", "\U0001F99E" }, - { "locked", "\U0001F512" }, - { "locked_with_key", "\U0001F510" }, - { "locked_with_pen", "\U0001F50F" }, - { "locomotive", "\U0001F682" }, - { "lollipop", "\U0001F36D" }, - { "long_drum", "\U0001FA98" }, - { "lotion_bottle", "\U0001F9F4" }, - { "loudly_crying_face", "\U0001F62D" }, - { "loudspeaker", "\U0001F4E2" }, - { "love_hotel", "\U0001F3E9" }, - { "love_letter", "\U0001F48C" }, - { "love-you_gesture", "\U0001F91F" }, - { "luggage", "\U0001F9F3" }, - { "lungs", "\U0001FAC1" }, - { "lying_face", "\U0001F925" }, - { "mage", "\U0001F9D9" }, - { "magic_wand", "\U0001FA84" }, - { "magnet", "\U0001F9F2" }, - { "magnifying_glass_tilted_left", "\U0001F50D" }, - { "magnifying_glass_tilted_right", "\U0001F50E" }, - { "mahjong_red_dragon", "\U0001F004" }, - { "male_sign", "\U00002642" }, - { "mammoth", "\U0001F9A3" }, - { "man", "\U0001F468" }, - { "man_artist", "\U0001F468\U0000200D\U0001F3A8" }, - { "man_astronaut", "\U0001F468\U0000200D\U0001F680" }, - { "man_bald", "\U0001F468\U0000200D\U0001F9B2" }, - { "man_beard", "\U0001F9D4\U0000200D\U00002642\U0000FE0F" }, - { "man_biking", "\U0001F6B4\U0000200D\U00002642\U0000FE0F" }, - { "man_blond_hair", "\U0001F471\U0000200D\U00002642\U0000FE0F" }, - { "man_bouncing_ball", "\U000026F9\U0000FE0F\U0000200D\U00002642\U0000FE0F" }, - { "man_bowing", "\U0001F647\U0000200D\U00002642\U0000FE0F" }, - { "man_cartwheeling", "\U0001F938\U0000200D\U00002642\U0000FE0F" }, - { "man_climbing", "\U0001F9D7\U0000200D\U00002642\U0000FE0F" }, - { "man_construction_worker", "\U0001F477\U0000200D\U00002642\U0000FE0F" }, - { "man_cook", "\U0001F468\U0000200D\U0001F373" }, - { "man_curly_hair", "\U0001F468\U0000200D\U0001F9B1" }, - { "man_dancing", "\U0001F57A" }, - { "man_detective", "\U0001F575\U0000FE0F\U0000200D\U00002642\U0000FE0F" }, - { "man_elf", "\U0001F9DD\U0000200D\U00002642\U0000FE0F" }, - { "man_facepalming", "\U0001F926\U0000200D\U00002642\U0000FE0F" }, - { "man_factory_worker", "\U0001F468\U0000200D\U0001F3ED" }, - { "man_fairy", "\U0001F9DA\U0000200D\U00002642\U0000FE0F" }, - { "man_farmer", "\U0001F468\U0000200D\U0001F33E" }, - { "man_feeding_baby", "\U0001F468\U0000200D\U0001F37C" }, - { "man_firefighter", "\U0001F468\U0000200D\U0001F692" }, - { "man_frowning", "\U0001F64D\U0000200D\U00002642\U0000FE0F" }, - { "man_genie", "\U0001F9DE\U0000200D\U00002642\U0000FE0F" }, - { "man_gesturing_no", "\U0001F645\U0000200D\U00002642\U0000FE0F" }, - { "man_gesturing_ok", "\U0001F646\U0000200D\U00002642\U0000FE0F" }, - { "man_getting_haircut", "\U0001F487\U0000200D\U00002642\U0000FE0F" }, - { "man_getting_massage", "\U0001F486\U0000200D\U00002642\U0000FE0F" }, - { "man_golfing", "\U0001F3CC\U0000FE0F\U0000200D\U00002642\U0000FE0F" }, - { "man_guard", "\U0001F482\U0000200D\U00002642\U0000FE0F" }, - { "man_health_worker", "\U0001F468\U0000200D\U00002695\U0000FE0F" }, - { "man_in_lotus_position", "\U0001F9D8\U0000200D\U00002642\U0000FE0F" }, - { "man_in_manual_wheelchair", "\U0001F468\U0000200D\U0001F9BD" }, - { "man_in_motorized_wheelchair", "\U0001F468\U0000200D\U0001F9BC" }, - { "man_in_steamy_room", "\U0001F9D6\U0000200D\U00002642\U0000FE0F" }, - { "man_in_tuxedo", "\U0001F935\U0000200D\U00002642\U0000FE0F" }, - { "man_judge", "\U0001F468\U0000200D\U00002696\U0000FE0F" }, - { "man_juggling", "\U0001F939\U0000200D\U00002642\U0000FE0F" }, - { "man_kneeling", "\U0001F9CE\U0000200D\U00002642\U0000FE0F" }, - { "man_lifting_weights", "\U0001F3CB\U0000FE0F\U0000200D\U00002642\U0000FE0F" }, - { "man_mage", "\U0001F9D9\U0000200D\U00002642\U0000FE0F" }, - { "man_mechanic", "\U0001F468\U0000200D\U0001F527" }, - { "man_mountain_biking", "\U0001F6B5\U0000200D\U00002642\U0000FE0F" }, - { "man_office_worker", "\U0001F468\U0000200D\U0001F4BC" }, - { "man_pilot", "\U0001F468\U0000200D\U00002708\U0000FE0F" }, - { "man_playing_handball", "\U0001F93E\U0000200D\U00002642\U0000FE0F" }, - { "man_playing_water_polo", "\U0001F93D\U0000200D\U00002642\U0000FE0F" }, - { "man_police_officer", "\U0001F46E\U0000200D\U00002642\U0000FE0F" }, - { "man_pouting", "\U0001F64E\U0000200D\U00002642\U0000FE0F" }, - { "man_raising_hand", "\U0001F64B\U0000200D\U00002642\U0000FE0F" }, - { "man_red_hair", "\U0001F468\U0000200D\U0001F9B0" }, - { "man_rowing_boat", "\U0001F6A3\U0000200D\U00002642\U0000FE0F" }, - { "man_running", "\U0001F3C3\U0000200D\U00002642\U0000FE0F" }, - { "man_scientist", "\U0001F468\U0000200D\U0001F52C" }, - { "man_shrugging", "\U0001F937\U0000200D\U00002642\U0000FE0F" }, - { "man_singer", "\U0001F468\U0000200D\U0001F3A4" }, - { "man_standing", "\U0001F9CD\U0000200D\U00002642\U0000FE0F" }, - { "man_student", "\U0001F468\U0000200D\U0001F393" }, - { "man_superhero", "\U0001F9B8\U0000200D\U00002642\U0000FE0F" }, - { "man_supervillain", "\U0001F9B9\U0000200D\U00002642\U0000FE0F" }, - { "man_surfing", "\U0001F3C4\U0000200D\U00002642\U0000FE0F" }, - { "man_swimming", "\U0001F3CA\U0000200D\U00002642\U0000FE0F" }, - { "man_teacher", "\U0001F468\U0000200D\U0001F3EB" }, - { "man_technologist", "\U0001F468\U0000200D\U0001F4BB" }, - { "man_tipping_hand", "\U0001F481\U0000200D\U00002642\U0000FE0F" }, - { "man_vampire", "\U0001F9DB\U0000200D\U00002642\U0000FE0F" }, - { "man_walking", "\U0001F6B6\U0000200D\U00002642\U0000FE0F" }, - { "man_wearing_turban", "\U0001F473\U0000200D\U00002642\U0000FE0F" }, - { "man_white_hair", "\U0001F468\U0000200D\U0001F9B3" }, - { "man_with_veil", "\U0001F470\U0000200D\U00002642\U0000FE0F" }, - { "man_with_white_cane", "\U0001F468\U0000200D\U0001F9AF" }, - { "man_zombie", "\U0001F9DF\U0000200D\U00002642\U0000FE0F" }, - { "man’s_shoe", "\U0001F45E" }, - { "mango", "\U0001F96D" }, - { "mantelpiece_clock", "\U0001F570" }, - { "manual_wheelchair", "\U0001F9BD" }, - { "map_of_japan", "\U0001F5FE" }, - { "maple_leaf", "\U0001F341" }, - { "martial_arts_uniform", "\U0001F94B" }, - { "mate", "\U0001F9C9" }, - { "meat_on_bone", "\U0001F356" }, - { "mechanic", "\U0001F9D1\U0000200D\U0001F527" }, - { "mechanical_arm", "\U0001F9BE" }, - { "mechanical_leg", "\U0001F9BF" }, - { "medical_symbol", "\U00002695" }, - { "megaphone", "\U0001F4E3" }, - { "melon", "\U0001F348" }, - { "memo", "\U0001F4DD" }, - { "men_holding_hands", "\U0001F46C" }, - { "men_with_bunny_ears", "\U0001F46F\U0000200D\U00002642\U0000FE0F" }, - { "men_wrestling", "\U0001F93C\U0000200D\U00002642\U0000FE0F" }, - { "men’s_room", "\U0001F6B9" }, - { "mending_heart", "\U00002764\U0000FE0F\U0000200D\U0001FA79" }, - { "menorah", "\U0001F54E" }, - { "mermaid", "\U0001F9DC\U0000200D\U00002640\U0000FE0F" }, - { "merman", "\U0001F9DC\U0000200D\U00002642\U0000FE0F" }, - { "merperson", "\U0001F9DC" }, - { "metro", "\U0001F687" }, - { "microbe", "\U0001F9A0" }, - { "microphone", "\U0001F3A4" }, - { "microscope", "\U0001F52C" }, - { "middle_finger", "\U0001F595" }, - { "military_helmet", "\U0001FA96" }, - { "military_medal", "\U0001F396" }, - { "milky_way", "\U0001F30C" }, - { "minibus", "\U0001F690" }, - { "minus", "\U00002796" }, - { "mirror", "\U0001FA9E" }, - { "moai", "\U0001F5FF" }, - { "mobile_phone", "\U0001F4F1" }, - { "mobile_phone_off", "\U0001F4F4" }, - { "mobile_phone_with_arrow", "\U0001F4F2" }, - { "money_bag", "\U0001F4B0" }, - { "money_with_wings", "\U0001F4B8" }, - { "money-mouth_face", "\U0001F911" }, - { "monkey", "\U0001F412" }, - { "monkey_face", "\U0001F435" }, - { "monorail", "\U0001F69D" }, - { "moon_cake", "\U0001F96E" }, - { "moon_viewing_ceremony", "\U0001F391" }, - { "mosque", "\U0001F54C" }, - { "mosquito", "\U0001F99F" }, - { "motor_boat", "\U0001F6E5" }, - { "motor_scooter", "\U0001F6F5" }, - { "motorcycle", "\U0001F3CD" }, - { "motorized_wheelchair", "\U0001F9BC" }, - { "motorway", "\U0001F6E3" }, - { "mount_fuji", "\U0001F5FB" }, - { "mountain", "\U000026F0" }, - { "mountain_cableway", "\U0001F6A0" }, - { "mountain_railway", "\U0001F69E" }, - { "mouse", "\U0001F401" }, - { "mouse_face", "\U0001F42D" }, - { "mouse_trap", "\U0001FAA4" }, - { "mouth", "\U0001F444" }, - { "movie_camera", "\U0001F3A5" }, - { "mrs_claus", "\U0001F936" }, - { "multiply", "\U00002716" }, - { "mushroom", "\U0001F344" }, - { "musical_keyboard", "\U0001F3B9" }, - { "musical_note", "\U0001F3B5" }, - { "musical_notes", "\U0001F3B6" }, - { "musical_score", "\U0001F3BC" }, - { "muted_speaker", "\U0001F507" }, - { "mx_claus", "\U0001F9D1\U0000200D\U0001F384" }, - { "nail_polish", "\U0001F485" }, - { "name_badge", "\U0001F4DB" }, - { "national_park", "\U0001F3DE" }, - { "nauseated_face", "\U0001F922" }, - { "nazar_amulet", "\U0001F9FF" }, - { "necktie", "\U0001F454" }, - { "nerd_face", "\U0001F913" }, - { "nesting_dolls", "\U0001FA86" }, - { "neutral_face", "\U0001F610" }, - { "new_button", "\U0001F195" }, - { "new_moon", "\U0001F311" }, - { "new_moon_face", "\U0001F31A" }, - { "newspaper", "\U0001F4F0" }, - { "next_track_button", "\U000023ED" }, - { "ng_button", "\U0001F196" }, - { "night_with_stars", "\U0001F303" }, - { "nine_o’clock", "\U0001F558" }, - { "nine-thirty", "\U0001F564" }, - { "ninja", "\U0001F977" }, - { "no_bicycles", "\U0001F6B3" }, - { "no_entry", "\U000026D4" }, - { "no_littering", "\U0001F6AF" }, - { "no_mobile_phones", "\U0001F4F5" }, - { "no_one_under_eighteen", "\U0001F51E" }, - { "no_pedestrians", "\U0001F6B7" }, - { "no_smoking", "\U0001F6AD" }, - { "non-potable_water", "\U0001F6B1" }, - { "nose", "\U0001F443" }, - { "notebook", "\U0001F4D3" }, - { "notebook_with_decorative_cover", "\U0001F4D4" }, - { "nut_and_bolt", "\U0001F529" }, - { "o_button_(blood_type)", "\U0001F17E" }, - { "octopus", "\U0001F419" }, - { "oden", "\U0001F362" }, - { "office_building", "\U0001F3E2" }, - { "office_worker", "\U0001F9D1\U0000200D\U0001F4BC" }, - { "ogre", "\U0001F479" }, - { "oil_drum", "\U0001F6E2" }, - { "ok_button", "\U0001F197" }, - { "ok_hand", "\U0001F44C" }, - { "old_key", "\U0001F5DD" }, - { "old_man", "\U0001F474" }, - { "old_woman", "\U0001F475" }, - { "older_person", "\U0001F9D3" }, - { "olive", "\U0001FAD2" }, - { "om", "\U0001F549" }, - { "on!_arrow", "\U0001F51B" }, - { "oncoming_automobile", "\U0001F698" }, - { "oncoming_bus", "\U0001F68D" }, - { "oncoming_fist", "\U0001F44A" }, - { "oncoming_police_car", "\U0001F694" }, - { "oncoming_taxi", "\U0001F696" }, - { "one_o’clock", "\U0001F550" }, - { "one-piece_swimsuit", "\U0001FA71" }, - { "one-thirty", "\U0001F55C" }, - { "onion", "\U0001F9C5" }, - { "open_book", "\U0001F4D6" }, - { "open_file_folder", "\U0001F4C2" }, - { "open_hands", "\U0001F450" }, - { "open_mailbox_with_lowered_flag", "\U0001F4ED" }, - { "open_mailbox_with_raised_flag", "\U0001F4EC" }, - { "ophiuchus", "\U000026CE" }, - { "optical_disk", "\U0001F4BF" }, - { "orange_book", "\U0001F4D9" }, - { "orange_circle", "\U0001F7E0" }, - { "orange_heart", "\U0001F9E1" }, - { "orange_square", "\U0001F7E7" }, - { "orangutan", "\U0001F9A7" }, - { "orthodox_cross", "\U00002626" }, - { "otter", "\U0001F9A6" }, - { "outbox_tray", "\U0001F4E4" }, - { "owl", "\U0001F989" }, - { "ox", "\U0001F402" }, - { "oyster", "\U0001F9AA" }, - { "p_button", "\U0001F17F" }, - { "package", "\U0001F4E6" }, - { "page_facing_up", "\U0001F4C4" }, - { "page_with_curl", "\U0001F4C3" }, - { "pager", "\U0001F4DF" }, - { "paintbrush", "\U0001F58C" }, - { "palm_tree", "\U0001F334" }, - { "palms_up_together", "\U0001F932" }, - { "pancakes", "\U0001F95E" }, - { "panda", "\U0001F43C" }, - { "paperclip", "\U0001F4CE" }, - { "parachute", "\U0001FA82" }, - { "parrot", "\U0001F99C" }, - { "part_alternation_mark", "\U0000303D" }, - { "party_popper", "\U0001F389" }, - { "partying_face", "\U0001F973" }, - { "passenger_ship", "\U0001F6F3" }, - { "passport_control", "\U0001F6C2" }, - { "pause_button", "\U000023F8" }, - { "paw_prints", "\U0001F43E" }, - { "peace_symbol", "\U0000262E" }, - { "peach", "\U0001F351" }, - { "peacock", "\U0001F99A" }, - { "peanuts", "\U0001F95C" }, - { "pear", "\U0001F350" }, - { "pen", "\U0001F58A" }, - { "pencil", "\U0000270F" }, - { "penguin", "\U0001F427" }, - { "pensive_face", "\U0001F614" }, - { "people_holding_hands", "\U0001F9D1\U0000200D\U0001F91D\U0000200D\U0001F9D1" }, - { "people_hugging", "\U0001FAC2" }, - { "people_with_bunny_ears", "\U0001F46F" }, - { "people_wrestling", "\U0001F93C" }, - { "performing_arts", "\U0001F3AD" }, - { "persevering_face", "\U0001F623" }, - { "person", "\U0001F9D1" }, - { "person_bald", "\U0001F9D1\U0000200D\U0001F9B2" }, - { "person_beard", "\U0001F9D4" }, - { "person_biking", "\U0001F6B4" }, - { "person_blond_hair", "\U0001F471" }, - { "person_bouncing_ball", "\U000026F9" }, - { "person_bowing", "\U0001F647" }, - { "person_cartwheeling", "\U0001F938" }, - { "person_climbing", "\U0001F9D7" }, - { "person_curly_hair", "\U0001F9D1\U0000200D\U0001F9B1" }, - { "person_facepalming", "\U0001F926" }, - { "person_feeding_baby", "\U0001F9D1\U0000200D\U0001F37C" }, - { "person_fencing", "\U0001F93A" }, - { "person_frowning", "\U0001F64D" }, - { "person_gesturing_no", "\U0001F645" }, - { "person_gesturing_ok", "\U0001F646" }, - { "person_getting_haircut", "\U0001F487" }, - { "person_getting_massage", "\U0001F486" }, - { "person_golfing", "\U0001F3CC" }, - { "person_in_bed", "\U0001F6CC" }, - { "person_in_lotus_position", "\U0001F9D8" }, - { "person_in_manual_wheelchair", "\U0001F9D1\U0000200D\U0001F9BD" }, - { "person_in_motorized_wheelchair", "\U0001F9D1\U0000200D\U0001F9BC" }, - { "person_in_steamy_room", "\U0001F9D6" }, - { "person_in_suit_levitating", "\U0001F574" }, - { "person_in_tuxedo", "\U0001F935" }, - { "person_juggling", "\U0001F939" }, - { "person_kneeling", "\U0001F9CE" }, - { "person_lifting_weights", "\U0001F3CB" }, - { "person_mountain_biking", "\U0001F6B5" }, - { "person_playing_handball", "\U0001F93E" }, - { "person_playing_water_polo", "\U0001F93D" }, - { "person_pouting", "\U0001F64E" }, - { "person_raising_hand", "\U0001F64B" }, - { "person_red_hair", "\U0001F9D1\U0000200D\U0001F9B0" }, - { "person_rowing_boat", "\U0001F6A3" }, - { "person_running", "\U0001F3C3" }, - { "person_shrugging", "\U0001F937" }, - { "person_standing", "\U0001F9CD" }, - { "person_surfing", "\U0001F3C4" }, - { "person_swimming", "\U0001F3CA" }, - { "person_taking_bath", "\U0001F6C0" }, - { "person_tipping_hand", "\U0001F481" }, - { "person_walking", "\U0001F6B6" }, - { "person_wearing_turban", "\U0001F473" }, - { "person_white_hair", "\U0001F9D1\U0000200D\U0001F9B3" }, - { "person_with_skullcap", "\U0001F472" }, - { "person_with_veil", "\U0001F470" }, - { "person_with_white_cane", "\U0001F9D1\U0000200D\U0001F9AF" }, - { "petri_dish", "\U0001F9EB" }, - { "pick", "\U000026CF" }, - { "pickup_truck", "\U0001F6FB" }, - { "pie", "\U0001F967" }, - { "pig", "\U0001F416" }, - { "pig_face", "\U0001F437" }, - { "pig_nose", "\U0001F43D" }, - { "pile_of_poo", "\U0001F4A9" }, - { "pill", "\U0001F48A" }, - { "pilot", "\U0001F9D1\U0000200D\U00002708\U0000FE0F" }, - { "piñata", "\U0001FA85" }, - { "pinched_fingers", "\U0001F90C" }, - { "pinching_hand", "\U0001F90F" }, - { "pine_decoration", "\U0001F38D" }, - { "pineapple", "\U0001F34D" }, - { "ping_pong", "\U0001F3D3" }, - { "pirate_flag", "\U0001F3F4\U0000200D\U00002620\U0000FE0F" }, - { "pisces", "\U00002653" }, - { "pizza", "\U0001F355" }, - { "placard", "\U0001FAA7" }, - { "place_of_worship", "\U0001F6D0" }, - { "play_button", "\U000025B6" }, - { "play_or_pause_button", "\U000023EF" }, - { "pleading_face", "\U0001F97A" }, - { "plunger", "\U0001FAA0" }, - { "plus", "\U00002795" }, - { "polar_bear", "\U0001F43B\U0000200D\U00002744\U0000FE0F" }, - { "police_car", "\U0001F693" }, - { "police_car_light", "\U0001F6A8" }, - { "police_officer", "\U0001F46E" }, - { "poodle", "\U0001F429" }, - { "pool_8_ball", "\U0001F3B1" }, - { "popcorn", "\U0001F37F" }, - { "post_office", "\U0001F3E4" }, - { "postal_horn", "\U0001F4EF" }, - { "postbox", "\U0001F4EE" }, - { "pot_of_food", "\U0001F372" }, - { "potable_water", "\U0001F6B0" }, - { "potato", "\U0001F954" }, - { "potted_plant", "\U0001FAB4" }, - { "poultry_leg", "\U0001F357" }, - { "pound_banknote", "\U0001F4B7" }, - { "pouting_cat", "\U0001F63E" }, - { "pouting_face", "\U0001F621" }, - { "prayer_beads", "\U0001F4FF" }, - { "pregnant_woman", "\U0001F930" }, - { "pretzel", "\U0001F968" }, - { "prince", "\U0001F934" }, - { "princess", "\U0001F478" }, - { "printer", "\U0001F5A8" }, - { "prohibited", "\U0001F6AB" }, - { "purple_circle", "\U0001F7E3" }, - { "purple_heart", "\U0001F49C" }, - { "purple_square", "\U0001F7EA" }, - { "purse", "\U0001F45B" }, - { "pushpin", "\U0001F4CC" }, - { "puzzle_piece", "\U0001F9E9" }, - { "rabbit", "\U0001F407" }, - { "rabbit_face", "\U0001F430" }, - { "raccoon", "\U0001F99D" }, - { "racing_car", "\U0001F3CE" }, - { "radio", "\U0001F4FB" }, - { "radio_button", "\U0001F518" }, - { "radioactive", "\U00002622" }, - { "railway_car", "\U0001F683" }, - { "railway_track", "\U0001F6E4" }, - { "rainbow", "\U0001F308" }, - { "rainbow_flag", "\U0001F3F3\U0000FE0F\U0000200D\U0001F308" }, - { "raised_back_of_hand", "\U0001F91A" }, - { "raised_fist", "\U0000270A" }, - { "raised_hand", "\U0000270B" }, - { "raising_hands", "\U0001F64C" }, - { "ram", "\U0001F40F" }, - { "rat", "\U0001F400" }, - { "razor", "\U0001FA92" }, - { "receipt", "\U0001F9FE" }, - { "record_button", "\U000023FA" }, - { "recycling_symbol", "\U0000267B" }, - { "red_apple", "\U0001F34E" }, - { "red_circle", "\U0001F534" }, - { "red_envelope", "\U0001F9E7" }, - { "red_exclamation_mark", "\U00002757" }, - { "red_hair", "\U0001F9B0" }, - { "red_heart", "\U00002764" }, - { "red_paper_lantern", "\U0001F3EE" }, - { "red_question_mark", "\U00002753" }, - { "red_square", "\U0001F7E5" }, - { "red_triangle_pointed_down", "\U0001F53B" }, - { "red_triangle_pointed_up", "\U0001F53A" }, - { "registered", "\U000000AE" }, - { "relieved_face", "\U0001F60C" }, - { "reminder_ribbon", "\U0001F397" }, - { "repeat_button", "\U0001F501" }, - { "repeat_single_button", "\U0001F502" }, - { "rescue_worker’s_helmet", "\U000026D1" }, - { "restroom", "\U0001F6BB" }, - { "reverse_button", "\U000025C0" }, - { "revolving_hearts", "\U0001F49E" }, - { "rhinoceros", "\U0001F98F" }, - { "ribbon", "\U0001F380" }, - { "rice_ball", "\U0001F359" }, - { "rice_cracker", "\U0001F358" }, - { "right_anger_bubble", "\U0001F5EF" }, - { "right_arrow", "\U000027A1" }, - { "right_arrow_curving_down", "\U00002935" }, - { "right_arrow_curving_left", "\U000021A9" }, - { "right_arrow_curving_up", "\U00002934" }, - { "right-facing_fist", "\U0001F91C" }, - { "ring", "\U0001F48D" }, - { "ringed_planet", "\U0001FA90" }, - { "roasted_sweet_potato", "\U0001F360" }, - { "robot", "\U0001F916" }, - { "rock", "\U0001FAA8" }, - { "rocket", "\U0001F680" }, - { "roll_of_paper", "\U0001F9FB" }, - { "rolled-up_newspaper", "\U0001F5DE" }, - { "roller_coaster", "\U0001F3A2" }, - { "roller_skate", "\U0001F6FC" }, - { "rolling_on_the_floor_laughing", "\U0001F923" }, - { "rooster", "\U0001F413" }, - { "rose", "\U0001F339" }, - { "rosette", "\U0001F3F5" }, - { "round_pushpin", "\U0001F4CD" }, - { "rugby_football", "\U0001F3C9" }, - { "running_shirt", "\U0001F3BD" }, - { "running_shoe", "\U0001F45F" }, - { "sad_but_relieved_face", "\U0001F625" }, - { "safety_pin", "\U0001F9F7" }, - { "safety_vest", "\U0001F9BA" }, - { "sagittarius", "\U00002650" }, - { "sailboat", "\U000026F5" }, - { "sake", "\U0001F376" }, - { "salt", "\U0001F9C2" }, - { "sandwich", "\U0001F96A" }, - { "santa_claus", "\U0001F385" }, - { "sari", "\U0001F97B" }, - { "satellite", "\U0001F6F0" }, - { "satellite_antenna", "\U0001F4E1" }, - { "sauropod", "\U0001F995" }, - { "saxophone", "\U0001F3B7" }, - { "scarf", "\U0001F9E3" }, - { "school", "\U0001F3EB" }, - { "scientist", "\U0001F9D1\U0000200D\U0001F52C" }, - { "scissors", "\U00002702" }, - { "scorpio", "\U0000264F" }, - { "scorpion", "\U0001F982" }, - { "screwdriver", "\U0001FA9B" }, - { "scroll", "\U0001F4DC" }, - { "seal", "\U0001F9AD" }, - { "seat", "\U0001F4BA" }, - { "see-no-evil_monkey", "\U0001F648" }, - { "seedling", "\U0001F331" }, - { "selfie", "\U0001F933" }, - { "service_dog", "\U0001F415\U0000200D\U0001F9BA" }, - { "seven_o’clock", "\U0001F556" }, - { "seven-thirty", "\U0001F562" }, - { "sewing_needle", "\U0001FAA1" }, - { "shallow_pan_of_food", "\U0001F958" }, - { "shamrock", "\U00002618" }, - { "shark", "\U0001F988" }, - { "shaved_ice", "\U0001F367" }, - { "sheaf_of_rice", "\U0001F33E" }, - { "shield", "\U0001F6E1" }, - { "shinto_shrine", "\U000026E9" }, - { "ship", "\U0001F6A2" }, - { "shooting_star", "\U0001F320" }, - { "shopping_bags", "\U0001F6CD" }, - { "shopping_cart", "\U0001F6D2" }, - { "shortcake", "\U0001F370" }, - { "shorts", "\U0001FA73" }, - { "shower", "\U0001F6BF" }, - { "shrimp", "\U0001F990" }, - { "shuffle_tracks_button", "\U0001F500" }, - { "shushing_face", "\U0001F92B" }, - { "sign_of_the_horns", "\U0001F918" }, - { "singer", "\U0001F9D1\U0000200D\U0001F3A4" }, - { "six_o’clock", "\U0001F555" }, - { "six-thirty", "\U0001F561" }, - { "skateboard", "\U0001F6F9" }, - { "skier", "\U000026F7" }, - { "skis", "\U0001F3BF" }, - { "skull", "\U0001F480" }, - { "skull_and_crossbones", "\U00002620" }, - { "skunk", "\U0001F9A8" }, - { "sled", "\U0001F6F7" }, - { "sleeping_face", "\U0001F634" }, - { "sleepy_face", "\U0001F62A" }, - { "slightly_frowning_face", "\U0001F641" }, - { "slightly_smiling_face", "\U0001F642" }, - { "slot_machine", "\U0001F3B0" }, - { "sloth", "\U0001F9A5" }, - { "small_airplane", "\U0001F6E9" }, - { "small_blue_diamond", "\U0001F539" }, - { "small_orange_diamond", "\U0001F538" }, - { "smiling_cat_with_heart-eyes", "\U0001F63B" }, - { "smiling_face", "\U0000263A" }, - { "smiling_face_with_halo", "\U0001F607" }, - { "smiling_face_with_heart-eyes", "\U0001F60D" }, - { "smiling_face_with_hearts", "\U0001F970" }, - { "smiling_face_with_horns", "\U0001F608" }, - { "smiling_face_with_smiling_eyes", "\U0001F60A" }, - { "smiling_face_with_sunglasses", "\U0001F60E" }, - { "smiling_face_with_tear", "\U0001F972" }, - { "smirking_face", "\U0001F60F" }, - { "snail", "\U0001F40C" }, - { "snake", "\U0001F40D" }, - { "sneezing_face", "\U0001F927" }, - { "snow-capped_mountain", "\U0001F3D4" }, - { "snowboarder", "\U0001F3C2" }, - { "snowflake", "\U00002744" }, - { "snowman", "\U00002603" }, - { "snowman_without_snow", "\U000026C4" }, - { "soap", "\U0001F9FC" }, - { "soccer_ball", "\U000026BD" }, - { "socks", "\U0001F9E6" }, - { "soft_ice_cream", "\U0001F366" }, - { "softball", "\U0001F94E" }, - { "soon_arrow", "\U0001F51C" }, - { "sos_button", "\U0001F198" }, - { "spade_suit", "\U00002660" }, - { "spaghetti", "\U0001F35D" }, - { "sparkle", "\U00002747" }, - { "sparkler", "\U0001F387" }, - { "sparkles", "\U00002728" }, - { "sparkling_heart", "\U0001F496" }, - { "speak-no-evil_monkey", "\U0001F64A" }, - { "speaker_high_volume", "\U0001F50A" }, - { "speaker_low_volume", "\U0001F508" }, - { "speaker_medium_volume", "\U0001F509" }, - { "speaking_head", "\U0001F5E3" }, - { "speech_balloon", "\U0001F4AC" }, - { "speedboat", "\U0001F6A4" }, - { "spider", "\U0001F577" }, - { "spider_web", "\U0001F578" }, - { "spiral_calendar", "\U0001F5D3" }, - { "spiral_notepad", "\U0001F5D2" }, - { "spiral_shell", "\U0001F41A" }, - { "sponge", "\U0001F9FD" }, - { "spoon", "\U0001F944" }, - { "sport_utility_vehicle", "\U0001F699" }, - { "sports_medal", "\U0001F3C5" }, - { "spouting_whale", "\U0001F433" }, - { "squid", "\U0001F991" }, - { "squinting_face_with_tongue", "\U0001F61D" }, - { "stadium", "\U0001F3DF" }, - { "star", "\U00002B50" }, - { "star_and_crescent", "\U0000262A" }, - { "star_of_david", "\U00002721" }, - { "star-struck", "\U0001F929" }, - { "station", "\U0001F689" }, - { "statue_of_liberty", "\U0001F5FD" }, - { "steaming_bowl", "\U0001F35C" }, - { "stethoscope", "\U0001FA7A" }, - { "stop_button", "\U000023F9" }, - { "stop_sign", "\U0001F6D1" }, - { "stopwatch", "\U000023F1" }, - { "straight_ruler", "\U0001F4CF" }, - { "strawberry", "\U0001F353" }, - { "student", "\U0001F9D1\U0000200D\U0001F393" }, - { "studio_microphone", "\U0001F399" }, - { "stuffed_flatbread", "\U0001F959" }, - { "sun", "\U00002600" }, - { "sun_behind_cloud", "\U000026C5" }, - { "sun_behind_large_cloud", "\U0001F325" }, - { "sun_behind_rain_cloud", "\U0001F326" }, - { "sun_behind_small_cloud", "\U0001F324" }, - { "sun_with_face", "\U0001F31E" }, - { "sunflower", "\U0001F33B" }, - { "sunglasses", "\U0001F576" }, - { "sunrise", "\U0001F305" }, - { "sunrise_over_mountains", "\U0001F304" }, - { "sunset", "\U0001F307" }, - { "superhero", "\U0001F9B8" }, - { "supervillain", "\U0001F9B9" }, - { "sushi", "\U0001F363" }, - { "suspension_railway", "\U0001F69F" }, - { "swan", "\U0001F9A2" }, - { "sweat_droplets", "\U0001F4A6" }, - { "synagogue", "\U0001F54D" }, - { "syringe", "\U0001F489" }, - { "t-rex", "\U0001F996" }, - { "t-shirt", "\U0001F455" }, - { "taco", "\U0001F32E" }, - { "takeout_box", "\U0001F961" }, - { "tamale", "\U0001FAD4" }, - { "tanabata_tree", "\U0001F38B" }, - { "tangerine", "\U0001F34A" }, - { "taurus", "\U00002649" }, - { "taxi", "\U0001F695" }, - { "teacher", "\U0001F9D1\U0000200D\U0001F3EB" }, - { "teacup_without_handle", "\U0001F375" }, - { "teapot", "\U0001FAD6" }, - { "tear-off_calendar", "\U0001F4C6" }, - { "technologist", "\U0001F9D1\U0000200D\U0001F4BB" }, - { "teddy_bear", "\U0001F9F8" }, - { "telephone", "\U0000260E" }, - { "telephone_receiver", "\U0001F4DE" }, - { "telescope", "\U0001F52D" }, - { "television", "\U0001F4FA" }, - { "ten_o’clock", "\U0001F559" }, - { "ten-thirty", "\U0001F565" }, - { "tennis", "\U0001F3BE" }, - { "tent", "\U000026FA" }, - { "test_tube", "\U0001F9EA" }, - { "thermometer", "\U0001F321" }, - { "thinking_face", "\U0001F914" }, - { "thong_sandal", "\U0001FA74" }, - { "thought_balloon", "\U0001F4AD" }, - { "thread", "\U0001F9F5" }, - { "three_o’clock", "\U0001F552" }, - { "three-thirty", "\U0001F55E" }, - { "thumbs_down", "\U0001F44E" }, - { "thumbs_up", "\U0001F44D" }, - { "ticket", "\U0001F3AB" }, - { "tiger", "\U0001F405" }, - { "tiger_face", "\U0001F42F" }, - { "timer_clock", "\U000023F2" }, - { "tired_face", "\U0001F62B" }, - { "toilet", "\U0001F6BD" }, - { "tokyo_tower", "\U0001F5FC" }, - { "tomato", "\U0001F345" }, - { "tongue", "\U0001F445" }, - { "toolbox", "\U0001F9F0" }, - { "tooth", "\U0001F9B7" }, - { "toothbrush", "\U0001FAA5" }, - { "top_arrow", "\U0001F51D" }, - { "top_hat", "\U0001F3A9" }, - { "tornado", "\U0001F32A" }, - { "trackball", "\U0001F5B2" }, - { "tractor", "\U0001F69C" }, - { "trade_mark", "\U00002122" }, - { "train", "\U0001F686" }, - { "tram", "\U0001F68A" }, - { "tram_car", "\U0001F68B" }, - { "transgender_flag", "\U0001F3F3\U0000FE0F\U0000200D\U000026A7\U0000FE0F" }, - { "transgender_symbol", "\U000026A7" }, - { "triangular_flag", "\U0001F6A9" }, - { "triangular_ruler", "\U0001F4D0" }, - { "trident_emblem", "\U0001F531" }, - { "trolleybus", "\U0001F68E" }, - { "trophy", "\U0001F3C6" }, - { "tropical_drink", "\U0001F379" }, - { "tropical_fish", "\U0001F420" }, - { "trumpet", "\U0001F3BA" }, - { "tulip", "\U0001F337" }, - { "tumbler_glass", "\U0001F943" }, - { "turkey", "\U0001F983" }, - { "turtle", "\U0001F422" }, - { "twelve_o’clock", "\U0001F55B" }, - { "twelve-thirty", "\U0001F567" }, - { "two_hearts", "\U0001F495" }, - { "two_o’clock", "\U0001F551" }, - { "two-hump_camel", "\U0001F42B" }, - { "two-thirty", "\U0001F55D" }, - { "umbrella", "\U00002602" }, - { "umbrella_on_ground", "\U000026F1" }, - { "umbrella_with_rain_drops", "\U00002614" }, - { "unamused_face", "\U0001F612" }, - { "unicorn", "\U0001F984" }, - { "unlocked", "\U0001F513" }, - { "up_arrow", "\U00002B06" }, - { "up-down_arrow", "\U00002195" }, - { "up-left_arrow", "\U00002196" }, - { "up-right_arrow", "\U00002197" }, - { "up!_button", "\U0001F199" }, - { "upside-down_face", "\U0001F643" }, - { "upwards_button", "\U0001F53C" }, - { "vampire", "\U0001F9DB" }, - { "vertical_traffic_light", "\U0001F6A6" }, - { "vibration_mode", "\U0001F4F3" }, - { "victory_hand", "\U0000270C" }, - { "video_camera", "\U0001F4F9" }, - { "video_game", "\U0001F3AE" }, - { "videocassette", "\U0001F4FC" }, - { "violin", "\U0001F3BB" }, - { "virgo", "\U0000264D" }, - { "volcano", "\U0001F30B" }, - { "volleyball", "\U0001F3D0" }, - { "vs_button", "\U0001F19A" }, - { "vulcan_salute", "\U0001F596" }, - { "waffle", "\U0001F9C7" }, - { "waning_crescent_moon", "\U0001F318" }, - { "waning_gibbous_moon", "\U0001F316" }, - { "warning", "\U000026A0" }, - { "wastebasket", "\U0001F5D1" }, - { "watch", "\U0000231A" }, - { "water_buffalo", "\U0001F403" }, - { "water_closet", "\U0001F6BE" }, - { "water_pistol", "\U0001F52B" }, - { "water_wave", "\U0001F30A" }, - { "watermelon", "\U0001F349" }, - { "waving_hand", "\U0001F44B" }, - { "wavy_dash", "\U00003030" }, - { "waxing_crescent_moon", "\U0001F312" }, - { "waxing_gibbous_moon", "\U0001F314" }, - { "weary_cat", "\U0001F640" }, - { "weary_face", "\U0001F629" }, - { "wedding", "\U0001F492" }, - { "whale", "\U0001F40B" }, - { "wheel_of_dharma", "\U00002638" }, - { "wheelchair_symbol", "\U0000267F" }, - { "white_cane", "\U0001F9AF" }, - { "white_circle", "\U000026AA" }, - { "white_exclamation_mark", "\U00002755" }, - { "white_flag", "\U0001F3F3" }, - { "white_flower", "\U0001F4AE" }, - { "white_hair", "\U0001F9B3" }, - { "white_heart", "\U0001F90D" }, - { "white_large_square", "\U00002B1C" }, - { "white_medium_square", "\U000025FB" }, - { "white_medium-small_square", "\U000025FD" }, - { "white_question_mark", "\U00002754" }, - { "white_small_square", "\U000025AB" }, - { "white_square_button", "\U0001F533" }, - { "wilted_flower", "\U0001F940" }, - { "wind_chime", "\U0001F390" }, - { "wind_face", "\U0001F32C" }, - { "window", "\U0001FA9F" }, - { "wine_glass", "\U0001F377" }, - { "winking_face", "\U0001F609" }, - { "winking_face_with_tongue", "\U0001F61C" }, - { "wolf", "\U0001F43A" }, - { "woman", "\U0001F469" }, - { "woman_and_man_holding_hands", "\U0001F46B" }, - { "woman_artist", "\U0001F469\U0000200D\U0001F3A8" }, - { "woman_astronaut", "\U0001F469\U0000200D\U0001F680" }, - { "woman_bald", "\U0001F469\U0000200D\U0001F9B2" }, - { "woman_beard", "\U0001F9D4\U0000200D\U00002640\U0000FE0F" }, - { "woman_biking", "\U0001F6B4\U0000200D\U00002640\U0000FE0F" }, - { "woman_blond_hair", "\U0001F471\U0000200D\U00002640\U0000FE0F" }, - { "woman_bouncing_ball", "\U000026F9\U0000FE0F\U0000200D\U00002640\U0000FE0F" }, - { "woman_bowing", "\U0001F647\U0000200D\U00002640\U0000FE0F" }, - { "woman_cartwheeling", "\U0001F938\U0000200D\U00002640\U0000FE0F" }, - { "woman_climbing", "\U0001F9D7\U0000200D\U00002640\U0000FE0F" }, - { "woman_construction_worker", "\U0001F477\U0000200D\U00002640\U0000FE0F" }, - { "woman_cook", "\U0001F469\U0000200D\U0001F373" }, - { "woman_curly_hair", "\U0001F469\U0000200D\U0001F9B1" }, - { "woman_dancing", "\U0001F483" }, - { "woman_detective", "\U0001F575\U0000FE0F\U0000200D\U00002640\U0000FE0F" }, - { "woman_elf", "\U0001F9DD\U0000200D\U00002640\U0000FE0F" }, - { "woman_facepalming", "\U0001F926\U0000200D\U00002640\U0000FE0F" }, - { "woman_factory_worker", "\U0001F469\U0000200D\U0001F3ED" }, - { "woman_fairy", "\U0001F9DA\U0000200D\U00002640\U0000FE0F" }, - { "woman_farmer", "\U0001F469\U0000200D\U0001F33E" }, - { "woman_feeding_baby", "\U0001F469\U0000200D\U0001F37C" }, - { "woman_firefighter", "\U0001F469\U0000200D\U0001F692" }, - { "woman_frowning", "\U0001F64D\U0000200D\U00002640\U0000FE0F" }, - { "woman_genie", "\U0001F9DE\U0000200D\U00002640\U0000FE0F" }, - { "woman_gesturing_no", "\U0001F645\U0000200D\U00002640\U0000FE0F" }, - { "woman_gesturing_ok", "\U0001F646\U0000200D\U00002640\U0000FE0F" }, - { "woman_getting_haircut", "\U0001F487\U0000200D\U00002640\U0000FE0F" }, - { "woman_getting_massage", "\U0001F486\U0000200D\U00002640\U0000FE0F" }, - { "woman_golfing", "\U0001F3CC\U0000FE0F\U0000200D\U00002640\U0000FE0F" }, - { "woman_guard", "\U0001F482\U0000200D\U00002640\U0000FE0F" }, - { "woman_health_worker", "\U0001F469\U0000200D\U00002695\U0000FE0F" }, - { "woman_in_lotus_position", "\U0001F9D8\U0000200D\U00002640\U0000FE0F" }, - { "woman_in_manual_wheelchair", "\U0001F469\U0000200D\U0001F9BD" }, - { "woman_in_motorized_wheelchair", "\U0001F469\U0000200D\U0001F9BC" }, - { "woman_in_steamy_room", "\U0001F9D6\U0000200D\U00002640\U0000FE0F" }, - { "woman_in_tuxedo", "\U0001F935\U0000200D\U00002640\U0000FE0F" }, - { "woman_judge", "\U0001F469\U0000200D\U00002696\U0000FE0F" }, - { "woman_juggling", "\U0001F939\U0000200D\U00002640\U0000FE0F" }, - { "woman_kneeling", "\U0001F9CE\U0000200D\U00002640\U0000FE0F" }, - { "woman_lifting_weights", "\U0001F3CB\U0000FE0F\U0000200D\U00002640\U0000FE0F" }, - { "woman_mage", "\U0001F9D9\U0000200D\U00002640\U0000FE0F" }, - { "woman_mechanic", "\U0001F469\U0000200D\U0001F527" }, - { "woman_mountain_biking", "\U0001F6B5\U0000200D\U00002640\U0000FE0F" }, - { "woman_office_worker", "\U0001F469\U0000200D\U0001F4BC" }, - { "woman_pilot", "\U0001F469\U0000200D\U00002708\U0000FE0F" }, - { "woman_playing_handball", "\U0001F93E\U0000200D\U00002640\U0000FE0F" }, - { "woman_playing_water_polo", "\U0001F93D\U0000200D\U00002640\U0000FE0F" }, - { "woman_police_officer", "\U0001F46E\U0000200D\U00002640\U0000FE0F" }, - { "woman_pouting", "\U0001F64E\U0000200D\U00002640\U0000FE0F" }, - { "woman_raising_hand", "\U0001F64B\U0000200D\U00002640\U0000FE0F" }, - { "woman_red_hair", "\U0001F469\U0000200D\U0001F9B0" }, - { "woman_rowing_boat", "\U0001F6A3\U0000200D\U00002640\U0000FE0F" }, - { "woman_running", "\U0001F3C3\U0000200D\U00002640\U0000FE0F" }, - { "woman_scientist", "\U0001F469\U0000200D\U0001F52C" }, - { "woman_shrugging", "\U0001F937\U0000200D\U00002640\U0000FE0F" }, - { "woman_singer", "\U0001F469\U0000200D\U0001F3A4" }, - { "woman_standing", "\U0001F9CD\U0000200D\U00002640\U0000FE0F" }, - { "woman_student", "\U0001F469\U0000200D\U0001F393" }, - { "woman_superhero", "\U0001F9B8\U0000200D\U00002640\U0000FE0F" }, - { "woman_supervillain", "\U0001F9B9\U0000200D\U00002640\U0000FE0F" }, - { "woman_surfing", "\U0001F3C4\U0000200D\U00002640\U0000FE0F" }, - { "woman_swimming", "\U0001F3CA\U0000200D\U00002640\U0000FE0F" }, - { "woman_teacher", "\U0001F469\U0000200D\U0001F3EB" }, - { "woman_technologist", "\U0001F469\U0000200D\U0001F4BB" }, - { "woman_tipping_hand", "\U0001F481\U0000200D\U00002640\U0000FE0F" }, - { "woman_vampire", "\U0001F9DB\U0000200D\U00002640\U0000FE0F" }, - { "woman_walking", "\U0001F6B6\U0000200D\U00002640\U0000FE0F" }, - { "woman_wearing_turban", "\U0001F473\U0000200D\U00002640\U0000FE0F" }, - { "woman_white_hair", "\U0001F469\U0000200D\U0001F9B3" }, - { "woman_with_headscarf", "\U0001F9D5" }, - { "woman_with_veil", "\U0001F470\U0000200D\U00002640\U0000FE0F" }, - { "woman_with_white_cane", "\U0001F469\U0000200D\U0001F9AF" }, - { "woman_zombie", "\U0001F9DF\U0000200D\U00002640\U0000FE0F" }, - { "woman’s_boot", "\U0001F462" }, - { "woman’s_clothes", "\U0001F45A" }, - { "woman’s_hat", "\U0001F452" }, - { "woman’s_sandal", "\U0001F461" }, - { "women_holding_hands", "\U0001F46D" }, - { "women_with_bunny_ears", "\U0001F46F\U0000200D\U00002640\U0000FE0F" }, - { "women_wrestling", "\U0001F93C\U0000200D\U00002640\U0000FE0F" }, - { "women’s_room", "\U0001F6BA" }, - { "wood", "\U0001FAB5" }, - { "woozy_face", "\U0001F974" }, - { "world_map", "\U0001F5FA" }, - { "worm", "\U0001FAB1" }, - { "worried_face", "\U0001F61F" }, - { "wrapped_gift", "\U0001F381" }, - { "wrench", "\U0001F527" }, - { "writing_hand", "\U0000270D" }, - { "yarn", "\U0001F9F6" }, - { "yawning_face", "\U0001F971" }, - { "yellow_circle", "\U0001F7E1" }, - { "yellow_heart", "\U0001F49B" }, - { "yellow_square", "\U0001F7E8" }, - { "yen_banknote", "\U0001F4B4" }, - { "yin_yang", "\U0000262F" }, - { "yo-yo", "\U0001FA80" }, - { "zany_face", "\U0001F92A" }, - { "zebra", "\U0001F993" }, - { "zipper-mouth_face", "\U0001F910" }, - { "zombie", "\U0001F9DF" }, - { "zzz", "\U0001F4A4" }, + { "abacus", Emoji.Known.Abacus }, + { "ab_button_blood_type", Emoji.Known.AbButtonBloodType }, + { "a_button_blood_type", Emoji.Known.AButtonBloodType }, + { "accordion", Emoji.Known.Accordion }, + { "adhesive_bandage", Emoji.Known.AdhesiveBandage }, + { "admission_tickets", Emoji.Known.AdmissionTickets }, + { "aerial_tramway", Emoji.Known.AerialTramway }, + { "airplane", Emoji.Known.Airplane }, + { "airplane_arrival", Emoji.Known.AirplaneArrival }, + { "airplane_departure", Emoji.Known.AirplaneDeparture }, + { "alarm_clock", Emoji.Known.AlarmClock }, + { "alembic", Emoji.Known.Alembic }, + { "alien", Emoji.Known.Alien }, + { "alien_monster", Emoji.Known.AlienMonster }, + { "ambulance", Emoji.Known.Ambulance }, + { "american_football", Emoji.Known.AmericanFootball }, + { "amphora", Emoji.Known.Amphora }, + { "anatomical_heart", Emoji.Known.AnatomicalHeart }, + { "anchor", Emoji.Known.Anchor }, + { "anger_symbol", Emoji.Known.AngerSymbol }, + { "angry_face", Emoji.Known.AngryFace }, + { "angry_face_with_horns", Emoji.Known.AngryFaceWithHorns }, + { "anguished_face", Emoji.Known.AnguishedFace }, + { "ant", Emoji.Known.Ant }, + { "antenna_bars", Emoji.Known.AntennaBars }, + { "anxious_face_with_sweat", Emoji.Known.AnxiousFaceWithSweat }, + { "aquarius", Emoji.Known.Aquarius }, + { "aries", Emoji.Known.Aries }, + { "articulated_lorry", Emoji.Known.ArticulatedLorry }, + { "artist_palette", Emoji.Known.ArtistPalette }, + { "astonished_face", Emoji.Known.AstonishedFace }, + { "atm_sign", Emoji.Known.AtmSign }, + { "atom_symbol", Emoji.Known.AtomSymbol }, + { "automobile", Emoji.Known.Automobile }, + { "auto_rickshaw", Emoji.Known.AutoRickshaw }, + { "avocado", Emoji.Known.Avocado }, + { "axe", Emoji.Known.Axe }, + { "baby", Emoji.Known.Baby }, + { "baby_angel", Emoji.Known.BabyAngel }, + { "baby_bottle", Emoji.Known.BabyBottle }, + { "baby_chick", Emoji.Known.BabyChick }, + { "baby_symbol", Emoji.Known.BabySymbol }, + { "back_arrow", Emoji.Known.BackArrow }, + { "backhand_index_pointing_down", Emoji.Known.BackhandIndexPointingDown }, + { "backhand_index_pointing_left", Emoji.Known.BackhandIndexPointingLeft }, + { "backhand_index_pointing_right", Emoji.Known.BackhandIndexPointingRight }, + { "backhand_index_pointing_up", Emoji.Known.BackhandIndexPointingUp }, + { "backpack", Emoji.Known.Backpack }, + { "bacon", Emoji.Known.Bacon }, + { "badger", Emoji.Known.Badger }, + { "badminton", Emoji.Known.Badminton }, + { "bagel", Emoji.Known.Bagel }, + { "baggage_claim", Emoji.Known.BaggageClaim }, + { "baguette_bread", Emoji.Known.BaguetteBread }, + { "balance_scale", Emoji.Known.BalanceScale }, + { "bald", Emoji.Known.Bald }, + { "ballet_shoes", Emoji.Known.BalletShoes }, + { "balloon", Emoji.Known.Balloon }, + { "ballot_box_with_ballot", Emoji.Known.BallotBoxWithBallot }, + { "banana", Emoji.Known.Banana }, + { "banjo", Emoji.Known.Banjo }, + { "bank", Emoji.Known.Bank }, + { "barber_pole", Emoji.Known.BarberPole }, + { "bar_chart", Emoji.Known.BarChart }, + { "baseball", Emoji.Known.Baseball }, + { "basket", Emoji.Known.Basket }, + { "basketball", Emoji.Known.Basketball }, + { "bat", Emoji.Known.Bat }, + { "bathtub", Emoji.Known.Bathtub }, + { "battery", Emoji.Known.Battery }, + { "b_button_blood_type", Emoji.Known.BButtonBloodType }, + { "beach_with_umbrella", Emoji.Known.BeachWithUmbrella }, + { "beaming_face_with_smiling_eyes", Emoji.Known.BeamingFaceWithSmilingEyes }, + { "bear", Emoji.Known.Bear }, + { "beating_heart", Emoji.Known.BeatingHeart }, + { "beaver", Emoji.Known.Beaver }, + { "bed", Emoji.Known.Bed }, + { "beer_mug", Emoji.Known.BeerMug }, + { "beetle", Emoji.Known.Beetle }, + { "bell", Emoji.Known.Bell }, + { "bellhop_bell", Emoji.Known.BellhopBell }, + { "bell_pepper", Emoji.Known.BellPepper }, + { "bell_with_slash", Emoji.Known.BellWithSlash }, + { "bento_box", Emoji.Known.BentoBox }, + { "beverage_box", Emoji.Known.BeverageBox }, + { "bicycle", Emoji.Known.Bicycle }, + { "bikini", Emoji.Known.Bikini }, + { "billed_cap", Emoji.Known.BilledCap }, + { "biohazard", Emoji.Known.Biohazard }, + { "bird", Emoji.Known.Bird }, + { "birthday_cake", Emoji.Known.BirthdayCake }, + { "bison", Emoji.Known.Bison }, + { "black_circle", Emoji.Known.BlackCircle }, + { "black_flag", Emoji.Known.BlackFlag }, + { "black_heart", Emoji.Known.BlackHeart }, + { "black_large_square", Emoji.Known.BlackLargeSquare }, + { "black_medium_small_square", Emoji.Known.BlackMediumSmallSquare }, + { "black_medium_square", Emoji.Known.BlackMediumSquare }, + { "black_nib", Emoji.Known.BlackNib }, + { "black_small_square", Emoji.Known.BlackSmallSquare }, + { "black_square_button", Emoji.Known.BlackSquareButton }, + { "blossom", Emoji.Known.Blossom }, + { "blowfish", Emoji.Known.Blowfish }, + { "blueberries", Emoji.Known.Blueberries }, + { "blue_book", Emoji.Known.BlueBook }, + { "blue_circle", Emoji.Known.BlueCircle }, + { "blue_heart", Emoji.Known.BlueHeart }, + { "blue_square", Emoji.Known.BlueSquare }, + { "boar", Emoji.Known.Boar }, + { "bomb", Emoji.Known.Bomb }, + { "bone", Emoji.Known.Bone }, + { "bookmark", Emoji.Known.Bookmark }, + { "bookmark_tabs", Emoji.Known.BookmarkTabs }, + { "books", Emoji.Known.Books }, + { "boomerang", Emoji.Known.Boomerang }, + { "bottle_with_popping_cork", Emoji.Known.BottleWithPoppingCork }, + { "bouquet", Emoji.Known.Bouquet }, + { "bow_and_arrow", Emoji.Known.BowAndArrow }, + { "bowling", Emoji.Known.Bowling }, + { "bowl_with_spoon", Emoji.Known.BowlWithSpoon }, + { "boxing_glove", Emoji.Known.BoxingGlove }, + { "boy", Emoji.Known.Boy }, + { "brain", Emoji.Known.Brain }, + { "bread", Emoji.Known.Bread }, + { "breast_feeding", Emoji.Known.BreastFeeding }, + { "brick", Emoji.Known.Brick }, + { "bridge_at_night", Emoji.Known.BridgeAtNight }, + { "briefcase", Emoji.Known.Briefcase }, + { "briefs", Emoji.Known.Briefs }, + { "bright_button", Emoji.Known.BrightButton }, + { "broccoli", Emoji.Known.Broccoli }, + { "broken_heart", Emoji.Known.BrokenHeart }, + { "broom", Emoji.Known.Broom }, + { "brown_circle", Emoji.Known.BrownCircle }, + { "brown_heart", Emoji.Known.BrownHeart }, + { "brown_square", Emoji.Known.BrownSquare }, + { "bubble_tea", Emoji.Known.BubbleTea }, + { "bucket", Emoji.Known.Bucket }, + { "bug", Emoji.Known.Bug }, + { "building_construction", Emoji.Known.BuildingConstruction }, + { "bullet_train", Emoji.Known.BulletTrain }, + { "bullseye", Emoji.Known.Bullseye }, + { "burrito", Emoji.Known.Burrito }, + { "bus", Emoji.Known.Bus }, + { "bus_stop", Emoji.Known.BusStop }, + { "bust_in_silhouette", Emoji.Known.BustInSilhouette }, + { "busts_in_silhouette", Emoji.Known.BustsInSilhouette }, + { "butter", Emoji.Known.Butter }, + { "butterfly", Emoji.Known.Butterfly }, + { "cactus", Emoji.Known.Cactus }, + { "calendar", Emoji.Known.Calendar }, + { "call_me_hand", Emoji.Known.CallMeHand }, + { "camel", Emoji.Known.Camel }, + { "camera", Emoji.Known.Camera }, + { "camera_with_flash", Emoji.Known.CameraWithFlash }, + { "camping", Emoji.Known.Camping }, + { "cancer", Emoji.Known.Cancer }, + { "candle", Emoji.Known.Candle }, + { "candy", Emoji.Known.Candy }, + { "canned_food", Emoji.Known.CannedFood }, + { "canoe", Emoji.Known.Canoe }, + { "capricorn", Emoji.Known.Capricorn }, + { "card_file_box", Emoji.Known.CardFileBox }, + { "card_index", Emoji.Known.CardIndex }, + { "card_index_dividers", Emoji.Known.CardIndexDividers }, + { "carousel_horse", Emoji.Known.CarouselHorse }, + { "carpentry_saw", Emoji.Known.CarpentrySaw }, + { "carp_streamer", Emoji.Known.CarpStreamer }, + { "carrot", Emoji.Known.Carrot }, + { "castle", Emoji.Known.Castle }, + { "cat", Emoji.Known.Cat }, + { "cat_face", Emoji.Known.CatFace }, + { "cat_with_tears_of_joy", Emoji.Known.CatWithTearsOfJoy }, + { "cat_with_wry_smile", Emoji.Known.CatWithWrySmile }, + { "chains", Emoji.Known.Chains }, + { "chair", Emoji.Known.Chair }, + { "chart_decreasing", Emoji.Known.ChartDecreasing }, + { "chart_increasing", Emoji.Known.ChartIncreasing }, + { "chart_increasing_with_yen", Emoji.Known.ChartIncreasingWithYen }, + { "check_box_with_check", Emoji.Known.CheckBoxWithCheck }, + { "check_mark", Emoji.Known.CheckMark }, + { "check_mark_button", Emoji.Known.CheckMarkButton }, + { "cheese_wedge", Emoji.Known.CheeseWedge }, + { "chequered_flag", Emoji.Known.ChequeredFlag }, + { "cherries", Emoji.Known.Cherries }, + { "cherry_blossom", Emoji.Known.CherryBlossom }, + { "chess_pawn", Emoji.Known.ChessPawn }, + { "chestnut", Emoji.Known.Chestnut }, + { "chicken", Emoji.Known.Chicken }, + { "child", Emoji.Known.Child }, + { "children_crossing", Emoji.Known.ChildrenCrossing }, + { "chipmunk", Emoji.Known.Chipmunk }, + { "chocolate_bar", Emoji.Known.ChocolateBar }, + { "chopsticks", Emoji.Known.Chopsticks }, + { "christmas_tree", Emoji.Known.ChristmasTree }, + { "church", Emoji.Known.Church }, + { "cigarette", Emoji.Known.Cigarette }, + { "cinema", Emoji.Known.Cinema }, + { "circled_m", Emoji.Known.CircledM }, + { "circus_tent", Emoji.Known.CircusTent }, + { "cityscape", Emoji.Known.Cityscape }, + { "cityscape_at_dusk", Emoji.Known.CityscapeAtDusk }, + { "clamp", Emoji.Known.Clamp }, + { "clapper_board", Emoji.Known.ClapperBoard }, + { "clapping_hands", Emoji.Known.ClappingHands }, + { "classical_building", Emoji.Known.ClassicalBuilding }, + { "cl_button", Emoji.Known.ClButton }, + { "clinking_beer_mugs", Emoji.Known.ClinkingBeerMugs }, + { "clinking_glasses", Emoji.Known.ClinkingGlasses }, + { "clipboard", Emoji.Known.Clipboard }, + { "clockwise_vertical_arrows", Emoji.Known.ClockwiseVerticalArrows }, + { "closed_book", Emoji.Known.ClosedBook }, + { "closed_mailbox_with_lowered_flag", Emoji.Known.ClosedMailboxWithLoweredFlag }, + { "closed_mailbox_with_raised_flag", Emoji.Known.ClosedMailboxWithRaisedFlag }, + { "closed_umbrella", Emoji.Known.ClosedUmbrella }, + { "cloud", Emoji.Known.Cloud }, + { "cloud_with_lightning", Emoji.Known.CloudWithLightning }, + { "cloud_with_lightning_and_rain", Emoji.Known.CloudWithLightningAndRain }, + { "cloud_with_rain", Emoji.Known.CloudWithRain }, + { "cloud_with_snow", Emoji.Known.CloudWithSnow }, + { "clown_face", Emoji.Known.ClownFace }, + { "club_suit", Emoji.Known.ClubSuit }, + { "clutch_bag", Emoji.Known.ClutchBag }, + { "coat", Emoji.Known.Coat }, + { "cockroach", Emoji.Known.Cockroach }, + { "cocktail_glass", Emoji.Known.CocktailGlass }, + { "coconut", Emoji.Known.Coconut }, + { "coffin", Emoji.Known.Coffin }, + { "coin", Emoji.Known.Coin }, + { "cold_face", Emoji.Known.ColdFace }, + { "collision", Emoji.Known.Collision }, + { "comet", Emoji.Known.Comet }, + { "compass", Emoji.Known.Compass }, + { "computer_disk", Emoji.Known.ComputerDisk }, + { "computer_mouse", Emoji.Known.ComputerMouse }, + { "confetti_ball", Emoji.Known.ConfettiBall }, + { "confounded_face", Emoji.Known.ConfoundedFace }, + { "confused_face", Emoji.Known.ConfusedFace }, + { "construction", Emoji.Known.Construction }, + { "construction_worker", Emoji.Known.ConstructionWorker }, + { "control_knobs", Emoji.Known.ControlKnobs }, + { "convenience_store", Emoji.Known.ConvenienceStore }, + { "cooked_rice", Emoji.Known.CookedRice }, + { "cookie", Emoji.Known.Cookie }, + { "cooking", Emoji.Known.Cooking }, + { "cool_button", Emoji.Known.CoolButton }, + { "copyright", Emoji.Known.Copyright }, + { "couch_and_lamp", Emoji.Known.CouchAndLamp }, + { "counterclockwise_arrows_button", Emoji.Known.CounterclockwiseArrowsButton }, + { "couple_with_heart", Emoji.Known.CoupleWithHeart }, + { "cow", Emoji.Known.Cow }, + { "cowboy_hat_face", Emoji.Known.CowboyHatFace }, + { "cow_face", Emoji.Known.CowFace }, + { "crab", Emoji.Known.Crab }, + { "crayon", Emoji.Known.Crayon }, + { "credit_card", Emoji.Known.CreditCard }, + { "crescent_moon", Emoji.Known.CrescentMoon }, + { "cricket", Emoji.Known.Cricket }, + { "cricket_game", Emoji.Known.CricketGame }, + { "crocodile", Emoji.Known.Crocodile }, + { "croissant", Emoji.Known.Croissant }, + { "crossed_fingers", Emoji.Known.CrossedFingers }, + { "crossed_flags", Emoji.Known.CrossedFlags }, + { "crossed_swords", Emoji.Known.CrossedSwords }, + { "cross_mark", Emoji.Known.CrossMark }, + { "cross_mark_button", Emoji.Known.CrossMarkButton }, + { "crown", Emoji.Known.Crown }, + { "crying_cat", Emoji.Known.CryingCat }, + { "crying_face", Emoji.Known.CryingFace }, + { "crystal_ball", Emoji.Known.CrystalBall }, + { "cucumber", Emoji.Known.Cucumber }, + { "cupcake", Emoji.Known.Cupcake }, + { "cup_with_straw", Emoji.Known.CupWithStraw }, + { "curling_stone", Emoji.Known.CurlingStone }, + { "curly_hair", Emoji.Known.CurlyHair }, + { "curly_loop", Emoji.Known.CurlyLoop }, + { "currency_exchange", Emoji.Known.CurrencyExchange }, + { "curry_rice", Emoji.Known.CurryRice }, + { "custard", Emoji.Known.Custard }, + { "customs", Emoji.Known.Customs }, + { "cut_of_meat", Emoji.Known.CutOfMeat }, + { "cyclone", Emoji.Known.Cyclone }, + { "dagger", Emoji.Known.Dagger }, + { "dango", Emoji.Known.Dango }, + { "dashing_away", Emoji.Known.DashingAway }, + { "deaf_person", Emoji.Known.DeafPerson }, + { "deciduous_tree", Emoji.Known.DeciduousTree }, + { "deer", Emoji.Known.Deer }, + { "delivery_truck", Emoji.Known.DeliveryTruck }, + { "department_store", Emoji.Known.DepartmentStore }, + { "derelict_house", Emoji.Known.DerelictHouse }, + { "desert", Emoji.Known.Desert }, + { "desert_island", Emoji.Known.DesertIsland }, + { "desktop_computer", Emoji.Known.DesktopComputer }, + { "detective", Emoji.Known.Detective }, + { "diamond_suit", Emoji.Known.DiamondSuit }, + { "diamond_with_a_dot", Emoji.Known.DiamondWithADot }, + { "dim_button", Emoji.Known.DimButton }, + { "disappointed_face", Emoji.Known.DisappointedFace }, + { "disguised_face", Emoji.Known.DisguisedFace }, + { "divide", Emoji.Known.Divide }, + { "diving_mask", Emoji.Known.DivingMask }, + { "diya_lamp", Emoji.Known.DiyaLamp }, + { "dizzy", Emoji.Known.Dizzy }, + { "dna", Emoji.Known.Dna }, + { "dodo", Emoji.Known.Dodo }, + { "dog", Emoji.Known.Dog }, + { "dog_face", Emoji.Known.DogFace }, + { "dollar_banknote", Emoji.Known.DollarBanknote }, + { "dolphin", Emoji.Known.Dolphin }, + { "door", Emoji.Known.Door }, + { "dotted_six_pointed_star", Emoji.Known.DottedSixPointedStar }, + { "double_curly_loop", Emoji.Known.DoubleCurlyLoop }, + { "double_exclamation_mark", Emoji.Known.DoubleExclamationMark }, + { "doughnut", Emoji.Known.Doughnut }, + { "dove", Emoji.Known.Dove }, + { "down_arrow", Emoji.Known.DownArrow }, + { "downcast_face_with_sweat", Emoji.Known.DowncastFaceWithSweat }, + { "down_left_arrow", Emoji.Known.DownLeftArrow }, + { "down_right_arrow", Emoji.Known.DownRightArrow }, + { "downwards_button", Emoji.Known.DownwardsButton }, + { "dragon", Emoji.Known.Dragon }, + { "dragon_face", Emoji.Known.DragonFace }, + { "dress", Emoji.Known.Dress }, + { "drooling_face", Emoji.Known.DroolingFace }, + { "droplet", Emoji.Known.Droplet }, + { "drop_of_blood", Emoji.Known.DropOfBlood }, + { "drum", Emoji.Known.Drum }, + { "duck", Emoji.Known.Duck }, + { "dumpling", Emoji.Known.Dumpling }, + { "dvd", Emoji.Known.Dvd }, + { "eagle", Emoji.Known.Eagle }, + { "ear", Emoji.Known.Ear }, + { "ear_of_corn", Emoji.Known.EarOfCorn }, + { "ear_with_hearing_aid", Emoji.Known.EarWithHearingAid }, + { "egg", Emoji.Known.Egg }, + { "eggplant", Emoji.Known.Eggplant }, + { "eight_o_clock", Emoji.Known.EightOClock }, + { "eight_pointed_star", Emoji.Known.EightPointedStar }, + { "eight_spoked_asterisk", Emoji.Known.EightSpokedAsterisk }, + { "eight_thirty", Emoji.Known.EightThirty }, + { "eject_button", Emoji.Known.EjectButton }, + { "electric_plug", Emoji.Known.ElectricPlug }, + { "elephant", Emoji.Known.Elephant }, + { "elevator", Emoji.Known.Elevator }, + { "eleven_o_clock", Emoji.Known.ElevenOClock }, + { "eleven_thirty", Emoji.Known.ElevenThirty }, + { "elf", Emoji.Known.Elf }, + { "e_mail", Emoji.Known.EMail }, + { "end_arrow", Emoji.Known.EndArrow }, + { "envelope", Emoji.Known.Envelope }, + { "envelope_with_arrow", Emoji.Known.EnvelopeWithArrow }, + { "euro_banknote", Emoji.Known.EuroBanknote }, + { "evergreen_tree", Emoji.Known.EvergreenTree }, + { "ewe", Emoji.Known.Ewe }, + { "exclamation_question_mark", Emoji.Known.ExclamationQuestionMark }, + { "exploding_head", Emoji.Known.ExplodingHead }, + { "expressionless_face", Emoji.Known.ExpressionlessFace }, + { "eye", Emoji.Known.Eye }, + { "eyes", Emoji.Known.Eyes }, + { "face_blowing_a_kiss", Emoji.Known.FaceBlowingAKiss }, + { "face_savoring_food", Emoji.Known.FaceSavoringFood }, + { "face_screaming_in_fear", Emoji.Known.FaceScreamingInFear }, + { "face_vomiting", Emoji.Known.FaceVomiting }, + { "face_with_hand_over_mouth", Emoji.Known.FaceWithHandOverMouth }, + { "face_with_head_bandage", Emoji.Known.FaceWithHeadBandage }, + { "face_with_medical_mask", Emoji.Known.FaceWithMedicalMask }, + { "face_with_monocle", Emoji.Known.FaceWithMonocle }, + { "face_with_open_mouth", Emoji.Known.FaceWithOpenMouth }, + { "face_without_mouth", Emoji.Known.FaceWithoutMouth }, + { "face_with_raised_eyebrow", Emoji.Known.FaceWithRaisedEyebrow }, + { "face_with_rolling_eyes", Emoji.Known.FaceWithRollingEyes }, + { "face_with_steam_from_nose", Emoji.Known.FaceWithSteamFromNose }, + { "face_with_symbols_on_mouth", Emoji.Known.FaceWithSymbolsOnMouth }, + { "face_with_tears_of_joy", Emoji.Known.FaceWithTearsOfJoy }, + { "face_with_thermometer", Emoji.Known.FaceWithThermometer }, + { "face_with_tongue", Emoji.Known.FaceWithTongue }, + { "factory", Emoji.Known.Factory }, + { "fairy", Emoji.Known.Fairy }, + { "falafel", Emoji.Known.Falafel }, + { "fallen_leaf", Emoji.Known.FallenLeaf }, + { "family", Emoji.Known.Family }, + { "fast_down_button", Emoji.Known.FastDownButton }, + { "fast_forward_button", Emoji.Known.FastForwardButton }, + { "fast_reverse_button", Emoji.Known.FastReverseButton }, + { "fast_up_button", Emoji.Known.FastUpButton }, + { "fax_machine", Emoji.Known.FaxMachine }, + { "fearful_face", Emoji.Known.FearfulFace }, + { "feather", Emoji.Known.Feather }, + { "female_sign", Emoji.Known.FemaleSign }, + { "ferris_wheel", Emoji.Known.FerrisWheel }, + { "ferry", Emoji.Known.Ferry }, + { "field_hockey", Emoji.Known.FieldHockey }, + { "file_cabinet", Emoji.Known.FileCabinet }, + { "file_folder", Emoji.Known.FileFolder }, + { "film_frames", Emoji.Known.FilmFrames }, + { "film_projector", Emoji.Known.FilmProjector }, + { "fire", Emoji.Known.Fire }, + { "firecracker", Emoji.Known.Firecracker }, + { "fire_engine", Emoji.Known.FireEngine }, + { "fire_extinguisher", Emoji.Known.FireExtinguisher }, + { "fireworks", Emoji.Known.Fireworks }, + { "1st_place_medal", Emoji.Known.FirstPlaceMedal }, + { "first_quarter_moon", Emoji.Known.FirstQuarterMoon }, + { "first_quarter_moon_face", Emoji.Known.FirstQuarterMoonFace }, + { "fish", Emoji.Known.Fish }, + { "fish_cake_with_swirl", Emoji.Known.FishCakeWithSwirl }, + { "fishing_pole", Emoji.Known.FishingPole }, + { "five_o_clock", Emoji.Known.FiveOClock }, + { "five_thirty", Emoji.Known.FiveThirty }, + { "flag_in_hole", Emoji.Known.FlagInHole }, + { "flamingo", Emoji.Known.Flamingo }, + { "flashlight", Emoji.Known.Flashlight }, + { "flatbread", Emoji.Known.Flatbread }, + { "flat_shoe", Emoji.Known.FlatShoe }, + { "fleur_de_lis", Emoji.Known.FleurDeLis }, + { "flexed_biceps", Emoji.Known.FlexedBiceps }, + { "floppy_disk", Emoji.Known.FloppyDisk }, + { "flower_playing_cards", Emoji.Known.FlowerPlayingCards }, + { "flushed_face", Emoji.Known.FlushedFace }, + { "fly", Emoji.Known.Fly }, + { "flying_disc", Emoji.Known.FlyingDisc }, + { "flying_saucer", Emoji.Known.FlyingSaucer }, + { "fog", Emoji.Known.Fog }, + { "foggy", Emoji.Known.Foggy }, + { "folded_hands", Emoji.Known.FoldedHands }, + { "fondue", Emoji.Known.Fondue }, + { "foot", Emoji.Known.Foot }, + { "footprints", Emoji.Known.Footprints }, + { "fork_and_knife", Emoji.Known.ForkAndKnife }, + { "fork_and_knife_with_plate", Emoji.Known.ForkAndKnifeWithPlate }, + { "fortune_cookie", Emoji.Known.FortuneCookie }, + { "fountain", Emoji.Known.Fountain }, + { "fountain_pen", Emoji.Known.FountainPen }, + { "four_leaf_clover", Emoji.Known.FourLeafClover }, + { "four_o_clock", Emoji.Known.FourOClock }, + { "four_thirty", Emoji.Known.FourThirty }, + { "fox", Emoji.Known.Fox }, + { "framed_picture", Emoji.Known.FramedPicture }, + { "free_button", Emoji.Known.FreeButton }, + { "french_fries", Emoji.Known.FrenchFries }, + { "fried_shrimp", Emoji.Known.FriedShrimp }, + { "frog", Emoji.Known.Frog }, + { "front_facing_baby_chick", Emoji.Known.FrontFacingBabyChick }, + { "frowning_face", Emoji.Known.FrowningFace }, + { "frowning_face_with_open_mouth", Emoji.Known.FrowningFaceWithOpenMouth }, + { "fuel_pump", Emoji.Known.FuelPump }, + { "full_moon", Emoji.Known.FullMoon }, + { "full_moon_face", Emoji.Known.FullMoonFace }, + { "funeral_urn", Emoji.Known.FuneralUrn }, + { "game_die", Emoji.Known.GameDie }, + { "garlic", Emoji.Known.Garlic }, + { "gear", Emoji.Known.Gear }, + { "gemini", Emoji.Known.Gemini }, + { "gem_stone", Emoji.Known.GemStone }, + { "genie", Emoji.Known.Genie }, + { "ghost", Emoji.Known.Ghost }, + { "giraffe", Emoji.Known.Giraffe }, + { "girl", Emoji.Known.Girl }, + { "glasses", Emoji.Known.Glasses }, + { "glass_of_milk", Emoji.Known.GlassOfMilk }, + { "globe_showing_americas", Emoji.Known.GlobeShowingAmericas }, + { "globe_showing_asia_australia", Emoji.Known.GlobeShowingAsiaAustralia }, + { "globe_showing_europe_africa", Emoji.Known.GlobeShowingEuropeAfrica }, + { "globe_with_meridians", Emoji.Known.GlobeWithMeridians }, + { "gloves", Emoji.Known.Gloves }, + { "glowing_star", Emoji.Known.GlowingStar }, + { "goal_net", Emoji.Known.GoalNet }, + { "goat", Emoji.Known.Goat }, + { "goblin", Emoji.Known.Goblin }, + { "goggles", Emoji.Known.Goggles }, + { "gorilla", Emoji.Known.Gorilla }, + { "graduation_cap", Emoji.Known.GraduationCap }, + { "grapes", Emoji.Known.Grapes }, + { "green_apple", Emoji.Known.GreenApple }, + { "green_book", Emoji.Known.GreenBook }, + { "green_circle", Emoji.Known.GreenCircle }, + { "green_heart", Emoji.Known.GreenHeart }, + { "green_salad", Emoji.Known.GreenSalad }, + { "green_square", Emoji.Known.GreenSquare }, + { "grimacing_face", Emoji.Known.GrimacingFace }, + { "grinning_cat", Emoji.Known.GrinningCat }, + { "grinning_cat_with_smiling_eyes", Emoji.Known.GrinningCatWithSmilingEyes }, + { "grinning_face", Emoji.Known.GrinningFace }, + { "grinning_face_with_big_eyes", Emoji.Known.GrinningFaceWithBigEyes }, + { "grinning_face_with_smiling_eyes", Emoji.Known.GrinningFaceWithSmilingEyes }, + { "grinning_face_with_sweat", Emoji.Known.GrinningFaceWithSweat }, + { "grinning_squinting_face", Emoji.Known.GrinningSquintingFace }, + { "growing_heart", Emoji.Known.GrowingHeart }, + { "guard", Emoji.Known.Guard }, + { "guide_dog", Emoji.Known.GuideDog }, + { "guitar", Emoji.Known.Guitar }, + { "hamburger", Emoji.Known.Hamburger }, + { "hammer", Emoji.Known.Hammer }, + { "hammer_and_pick", Emoji.Known.HammerAndPick }, + { "hammer_and_wrench", Emoji.Known.HammerAndWrench }, + { "hamster", Emoji.Known.Hamster }, + { "handbag", Emoji.Known.Handbag }, + { "handshake", Emoji.Known.Handshake }, + { "hand_with_fingers_splayed", Emoji.Known.HandWithFingersSplayed }, + { "hatching_chick", Emoji.Known.HatchingChick }, + { "headphone", Emoji.Known.Headphone }, + { "headstone", Emoji.Known.Headstone }, + { "hear_no_evil_monkey", Emoji.Known.HearNoEvilMonkey }, + { "heart_decoration", Emoji.Known.HeartDecoration }, + { "heart_exclamation", Emoji.Known.HeartExclamation }, + { "heart_suit", Emoji.Known.HeartSuit }, + { "heart_with_arrow", Emoji.Known.HeartWithArrow }, + { "heart_with_ribbon", Emoji.Known.HeartWithRibbon }, + { "heavy_dollar_sign", Emoji.Known.HeavyDollarSign }, + { "hedgehog", Emoji.Known.Hedgehog }, + { "helicopter", Emoji.Known.Helicopter }, + { "herb", Emoji.Known.Herb }, + { "hibiscus", Emoji.Known.Hibiscus }, + { "high_heeled_shoe", Emoji.Known.HighHeeledShoe }, + { "high_speed_train", Emoji.Known.HighSpeedTrain }, + { "high_voltage", Emoji.Known.HighVoltage }, + { "hiking_boot", Emoji.Known.HikingBoot }, + { "hindu_temple", Emoji.Known.HinduTemple }, + { "hippopotamus", Emoji.Known.Hippopotamus }, + { "hole", Emoji.Known.Hole }, + { "hollow_red_circle", Emoji.Known.HollowRedCircle }, + { "honeybee", Emoji.Known.Honeybee }, + { "honey_pot", Emoji.Known.HoneyPot }, + { "hook", Emoji.Known.Hook }, + { "horizontal_traffic_light", Emoji.Known.HorizontalTrafficLight }, + { "horse", Emoji.Known.Horse }, + { "horse_face", Emoji.Known.HorseFace }, + { "horse_racing", Emoji.Known.HorseRacing }, + { "hospital", Emoji.Known.Hospital }, + { "hot_beverage", Emoji.Known.HotBeverage }, + { "hot_dog", Emoji.Known.HotDog }, + { "hotel", Emoji.Known.Hotel }, + { "hot_face", Emoji.Known.HotFace }, + { "hot_pepper", Emoji.Known.HotPepper }, + { "hot_springs", Emoji.Known.HotSprings }, + { "hourglass_done", Emoji.Known.HourglassDone }, + { "hourglass_not_done", Emoji.Known.HourglassNotDone }, + { "house", Emoji.Known.House }, + { "houses", Emoji.Known.Houses }, + { "house_with_garden", Emoji.Known.HouseWithGarden }, + { "hugging_face", Emoji.Known.HuggingFace }, + { "hundred_points", Emoji.Known.HundredPoints }, + { "hushed_face", Emoji.Known.HushedFace }, + { "hut", Emoji.Known.Hut }, + { "ice", Emoji.Known.Ice }, + { "ice_cream", Emoji.Known.IceCream }, + { "ice_hockey", Emoji.Known.IceHockey }, + { "ice_skate", Emoji.Known.IceSkate }, + { "id_button", Emoji.Known.IdButton }, + { "inbox_tray", Emoji.Known.InboxTray }, + { "incoming_envelope", Emoji.Known.IncomingEnvelope }, + { "index_pointing_up", Emoji.Known.IndexPointingUp }, + { "infinity", Emoji.Known.Infinity }, + { "information", Emoji.Known.Information }, + { "input_latin_letters", Emoji.Known.InputLatinLetters }, + { "input_latin_lowercase", Emoji.Known.InputLatinLowercase }, + { "input_latin_uppercase", Emoji.Known.InputLatinUppercase }, + { "input_numbers", Emoji.Known.InputNumbers }, + { "input_symbols", Emoji.Known.InputSymbols }, + { "jack_o_lantern", Emoji.Known.JackOLantern }, + { "japanese_acceptable_button", Emoji.Known.JapaneseAcceptableButton }, + { "japanese_application_button", Emoji.Known.JapaneseApplicationButton }, + { "japanese_bargain_button", Emoji.Known.JapaneseBargainButton }, + { "japanese_castle", Emoji.Known.JapaneseCastle }, + { "japanese_congratulations_button", Emoji.Known.JapaneseCongratulationsButton }, + { "japanese_discount_button", Emoji.Known.JapaneseDiscountButton }, + { "japanese_dolls", Emoji.Known.JapaneseDolls }, + { "japanese_free_of_charge_button", Emoji.Known.JapaneseFreeOfChargeButton }, + { "japanese_here_button", Emoji.Known.JapaneseHereButton }, + { "japanese_monthly_amount_button", Emoji.Known.JapaneseMonthlyAmountButton }, + { "japanese_not_free_of_charge_button", Emoji.Known.JapaneseNotFreeOfChargeButton }, + { "japanese_no_vacancy_button", Emoji.Known.JapaneseNoVacancyButton }, + { "japanese_open_for_business_button", Emoji.Known.JapaneseOpenForBusinessButton }, + { "japanese_passing_grade_button", Emoji.Known.JapanesePassingGradeButton }, + { "japanese_post_office", Emoji.Known.JapanesePostOffice }, + { "japanese_prohibited_button", Emoji.Known.JapaneseProhibitedButton }, + { "japanese_reserved_button", Emoji.Known.JapaneseReservedButton }, + { "japanese_secret_button", Emoji.Known.JapaneseSecretButton }, + { "japanese_service_charge_button", Emoji.Known.JapaneseServiceChargeButton }, + { "japanese_symbol_for_beginner", Emoji.Known.JapaneseSymbolForBeginner }, + { "japanese_vacancy_button", Emoji.Known.JapaneseVacancyButton }, + { "jeans", Emoji.Known.Jeans }, + { "joker", Emoji.Known.Joker }, + { "joystick", Emoji.Known.Joystick }, + { "kaaba", Emoji.Known.Kaaba }, + { "kangaroo", Emoji.Known.Kangaroo }, + { "key", Emoji.Known.Key }, + { "keyboard", Emoji.Known.Keyboard }, + { "keycap_10", Emoji.Known.Keycap10 }, + { "kick_scooter", Emoji.Known.KickScooter }, + { "kimono", Emoji.Known.Kimono }, + { "kiss", Emoji.Known.Kiss }, + { "kissing_cat", Emoji.Known.KissingCat }, + { "kissing_face", Emoji.Known.KissingFace }, + { "kissing_face_with_closed_eyes", Emoji.Known.KissingFaceWithClosedEyes }, + { "kissing_face_with_smiling_eyes", Emoji.Known.KissingFaceWithSmilingEyes }, + { "kiss_mark", Emoji.Known.KissMark }, + { "kitchen_knife", Emoji.Known.KitchenKnife }, + { "kite", Emoji.Known.Kite }, + { "kiwi_fruit", Emoji.Known.KiwiFruit }, + { "knocked_out_face", Emoji.Known.KnockedOutFace }, + { "knot", Emoji.Known.Knot }, + { "koala", Emoji.Known.Koala }, + { "lab_coat", Emoji.Known.LabCoat }, + { "label", Emoji.Known.Label }, + { "lacrosse", Emoji.Known.Lacrosse }, + { "ladder", Emoji.Known.Ladder }, + { "lady_beetle", Emoji.Known.LadyBeetle }, + { "laptop", Emoji.Known.Laptop }, + { "large_blue_diamond", Emoji.Known.LargeBlueDiamond }, + { "large_orange_diamond", Emoji.Known.LargeOrangeDiamond }, + { "last_quarter_moon", Emoji.Known.LastQuarterMoon }, + { "last_quarter_moon_face", Emoji.Known.LastQuarterMoonFace }, + { "last_track_button", Emoji.Known.LastTrackButton }, + { "latin_cross", Emoji.Known.LatinCross }, + { "leaf_fluttering_in_wind", Emoji.Known.LeafFlutteringInWind }, + { "leafy_green", Emoji.Known.LeafyGreen }, + { "ledger", Emoji.Known.Ledger }, + { "left_arrow", Emoji.Known.LeftArrow }, + { "left_arrow_curving_right", Emoji.Known.LeftArrowCurvingRight }, + { "left_facing_fist", Emoji.Known.LeftFacingFist }, + { "left_luggage", Emoji.Known.LeftLuggage }, + { "left_right_arrow", Emoji.Known.LeftRightArrow }, + { "left_speech_bubble", Emoji.Known.LeftSpeechBubble }, + { "leg", Emoji.Known.Leg }, + { "lemon", Emoji.Known.Lemon }, + { "leo", Emoji.Known.Leo }, + { "leopard", Emoji.Known.Leopard }, + { "level_slider", Emoji.Known.LevelSlider }, + { "libra", Emoji.Known.Libra }, + { "light_bulb", Emoji.Known.LightBulb }, + { "light_rail", Emoji.Known.LightRail }, + { "link", Emoji.Known.Link }, + { "linked_paperclips", Emoji.Known.LinkedPaperclips }, + { "lion", Emoji.Known.Lion }, + { "lipstick", Emoji.Known.Lipstick }, + { "litter_in_bin_sign", Emoji.Known.LitterInBinSign }, + { "lizard", Emoji.Known.Lizard }, + { "llama", Emoji.Known.Llama }, + { "lobster", Emoji.Known.Lobster }, + { "locked", Emoji.Known.Locked }, + { "locked_with_key", Emoji.Known.LockedWithKey }, + { "locked_with_pen", Emoji.Known.LockedWithPen }, + { "locomotive", Emoji.Known.Locomotive }, + { "lollipop", Emoji.Known.Lollipop }, + { "long_drum", Emoji.Known.LongDrum }, + { "lotion_bottle", Emoji.Known.LotionBottle }, + { "loudly_crying_face", Emoji.Known.LoudlyCryingFace }, + { "loudspeaker", Emoji.Known.Loudspeaker }, + { "love_hotel", Emoji.Known.LoveHotel }, + { "love_letter", Emoji.Known.LoveLetter }, + { "love_you_gesture", Emoji.Known.LoveYouGesture }, + { "luggage", Emoji.Known.Luggage }, + { "lungs", Emoji.Known.Lungs }, + { "lying_face", Emoji.Known.LyingFace }, + { "mage", Emoji.Known.Mage }, + { "magic_wand", Emoji.Known.MagicWand }, + { "magnet", Emoji.Known.Magnet }, + { "magnifying_glass_tilted_left", Emoji.Known.MagnifyingGlassTiltedLeft }, + { "magnifying_glass_tilted_right", Emoji.Known.MagnifyingGlassTiltedRight }, + { "mahjong_red_dragon", Emoji.Known.MahjongRedDragon }, + { "male_sign", Emoji.Known.MaleSign }, + { "mammoth", Emoji.Known.Mammoth }, + { "man", Emoji.Known.Man }, + { "man_dancing", Emoji.Known.ManDancing }, + { "mango", Emoji.Known.Mango }, + { "mans_shoe", Emoji.Known.MansShoe }, + { "mantelpiece_clock", Emoji.Known.MantelpieceClock }, + { "manual_wheelchair", Emoji.Known.ManualWheelchair }, + { "maple_leaf", Emoji.Known.MapleLeaf }, + { "map_of_japan", Emoji.Known.MapOfJapan }, + { "martial_arts_uniform", Emoji.Known.MartialArtsUniform }, + { "mate", Emoji.Known.Mate }, + { "meat_on_bone", Emoji.Known.MeatOnBone }, + { "mechanical_arm", Emoji.Known.MechanicalArm }, + { "mechanical_leg", Emoji.Known.MechanicalLeg }, + { "medical_symbol", Emoji.Known.MedicalSymbol }, + { "megaphone", Emoji.Known.Megaphone }, + { "melon", Emoji.Known.Melon }, + { "memo", Emoji.Known.Memo }, + { "men_holding_hands", Emoji.Known.MenHoldingHands }, + { "menorah", Emoji.Known.Menorah }, + { "mens_room", Emoji.Known.MensRoom }, + { "merperson", Emoji.Known.Merperson }, + { "metro", Emoji.Known.Metro }, + { "microbe", Emoji.Known.Microbe }, + { "microphone", Emoji.Known.Microphone }, + { "microscope", Emoji.Known.Microscope }, + { "middle_finger", Emoji.Known.MiddleFinger }, + { "military_helmet", Emoji.Known.MilitaryHelmet }, + { "military_medal", Emoji.Known.MilitaryMedal }, + { "milky_way", Emoji.Known.MilkyWay }, + { "minibus", Emoji.Known.Minibus }, + { "minus", Emoji.Known.Minus }, + { "mirror", Emoji.Known.Mirror }, + { "moai", Emoji.Known.Moai }, + { "mobile_phone", Emoji.Known.MobilePhone }, + { "mobile_phone_off", Emoji.Known.MobilePhoneOff }, + { "mobile_phone_with_arrow", Emoji.Known.MobilePhoneWithArrow }, + { "money_bag", Emoji.Known.MoneyBag }, + { "money_mouth_face", Emoji.Known.MoneyMouthFace }, + { "money_with_wings", Emoji.Known.MoneyWithWings }, + { "monkey", Emoji.Known.Monkey }, + { "monkey_face", Emoji.Known.MonkeyFace }, + { "monorail", Emoji.Known.Monorail }, + { "moon_cake", Emoji.Known.MoonCake }, + { "moon_viewing_ceremony", Emoji.Known.MoonViewingCeremony }, + { "mosque", Emoji.Known.Mosque }, + { "mosquito", Emoji.Known.Mosquito }, + { "motor_boat", Emoji.Known.MotorBoat }, + { "motorcycle", Emoji.Known.Motorcycle }, + { "motorized_wheelchair", Emoji.Known.MotorizedWheelchair }, + { "motor_scooter", Emoji.Known.MotorScooter }, + { "motorway", Emoji.Known.Motorway }, + { "mountain", Emoji.Known.Mountain }, + { "mountain_cableway", Emoji.Known.MountainCableway }, + { "mountain_railway", Emoji.Known.MountainRailway }, + { "mount_fuji", Emoji.Known.MountFuji }, + { "mouse", Emoji.Known.Mouse }, + { "mouse_face", Emoji.Known.MouseFace }, + { "mouse_trap", Emoji.Known.MouseTrap }, + { "mouth", Emoji.Known.Mouth }, + { "movie_camera", Emoji.Known.MovieCamera }, + { "mrs_claus", Emoji.Known.MrsClaus }, + { "multiply", Emoji.Known.Multiply }, + { "mushroom", Emoji.Known.Mushroom }, + { "musical_keyboard", Emoji.Known.MusicalKeyboard }, + { "musical_note", Emoji.Known.MusicalNote }, + { "musical_notes", Emoji.Known.MusicalNotes }, + { "musical_score", Emoji.Known.MusicalScore }, + { "muted_speaker", Emoji.Known.MutedSpeaker }, + { "nail_polish", Emoji.Known.NailPolish }, + { "name_badge", Emoji.Known.NameBadge }, + { "national_park", Emoji.Known.NationalPark }, + { "nauseated_face", Emoji.Known.NauseatedFace }, + { "nazar_amulet", Emoji.Known.NazarAmulet }, + { "necktie", Emoji.Known.Necktie }, + { "nerd_face", Emoji.Known.NerdFace }, + { "nesting_dolls", Emoji.Known.NestingDolls }, + { "neutral_face", Emoji.Known.NeutralFace }, + { "new_button", Emoji.Known.NewButton }, + { "new_moon", Emoji.Known.NewMoon }, + { "new_moon_face", Emoji.Known.NewMoonFace }, + { "newspaper", Emoji.Known.Newspaper }, + { "next_track_button", Emoji.Known.NextTrackButton }, + { "ng_button", Emoji.Known.NgButton }, + { "night_with_stars", Emoji.Known.NightWithStars }, + { "nine_o_clock", Emoji.Known.NineOClock }, + { "nine_thirty", Emoji.Known.NineThirty }, + { "ninja", Emoji.Known.Ninja }, + { "no_bicycles", Emoji.Known.NoBicycles }, + { "no_entry", Emoji.Known.NoEntry }, + { "no_littering", Emoji.Known.NoLittering }, + { "no_mobile_phones", Emoji.Known.NoMobilePhones }, + { "non_potable_water", Emoji.Known.NonPotableWater }, + { "no_one_under_eighteen", Emoji.Known.NoOneUnderEighteen }, + { "no_pedestrians", Emoji.Known.NoPedestrians }, + { "nose", Emoji.Known.Nose }, + { "no_smoking", Emoji.Known.NoSmoking }, + { "notebook", Emoji.Known.Notebook }, + { "notebook_with_decorative_cover", Emoji.Known.NotebookWithDecorativeCover }, + { "nut_and_bolt", Emoji.Known.NutAndBolt }, + { "o_button_blood_type", Emoji.Known.OButtonBloodType }, + { "octopus", Emoji.Known.Octopus }, + { "oden", Emoji.Known.Oden }, + { "office_building", Emoji.Known.OfficeBuilding }, + { "ogre", Emoji.Known.Ogre }, + { "oil_drum", Emoji.Known.OilDrum }, + { "ok_button", Emoji.Known.OkButton }, + { "ok_hand", Emoji.Known.OkHand }, + { "older_person", Emoji.Known.OlderPerson }, + { "old_key", Emoji.Known.OldKey }, + { "old_man", Emoji.Known.OldMan }, + { "old_woman", Emoji.Known.OldWoman }, + { "olive", Emoji.Known.Olive }, + { "om", Emoji.Known.Om }, + { "on_arrow", Emoji.Known.OnArrow }, + { "oncoming_automobile", Emoji.Known.OncomingAutomobile }, + { "oncoming_bus", Emoji.Known.OncomingBus }, + { "oncoming_fist", Emoji.Known.OncomingFist }, + { "oncoming_police_car", Emoji.Known.OncomingPoliceCar }, + { "oncoming_taxi", Emoji.Known.OncomingTaxi }, + { "one_o_clock", Emoji.Known.OneOClock }, + { "one_piece_swimsuit", Emoji.Known.OnePieceSwimsuit }, + { "one_thirty", Emoji.Known.OneThirty }, + { "onion", Emoji.Known.Onion }, + { "open_book", Emoji.Known.OpenBook }, + { "open_file_folder", Emoji.Known.OpenFileFolder }, + { "open_hands", Emoji.Known.OpenHands }, + { "open_mailbox_with_lowered_flag", Emoji.Known.OpenMailboxWithLoweredFlag }, + { "open_mailbox_with_raised_flag", Emoji.Known.OpenMailboxWithRaisedFlag }, + { "ophiuchus", Emoji.Known.Ophiuchus }, + { "optical_disk", Emoji.Known.OpticalDisk }, + { "orange_book", Emoji.Known.OrangeBook }, + { "orange_circle", Emoji.Known.OrangeCircle }, + { "orange_heart", Emoji.Known.OrangeHeart }, + { "orange_square", Emoji.Known.OrangeSquare }, + { "orangutan", Emoji.Known.Orangutan }, + { "orthodox_cross", Emoji.Known.OrthodoxCross }, + { "otter", Emoji.Known.Otter }, + { "outbox_tray", Emoji.Known.OutboxTray }, + { "owl", Emoji.Known.Owl }, + { "ox", Emoji.Known.Ox }, + { "oyster", Emoji.Known.Oyster }, + { "package", Emoji.Known.Package }, + { "page_facing_up", Emoji.Known.PageFacingUp }, + { "pager", Emoji.Known.Pager }, + { "page_with_curl", Emoji.Known.PageWithCurl }, + { "paintbrush", Emoji.Known.Paintbrush }, + { "palms_up_together", Emoji.Known.PalmsUpTogether }, + { "palm_tree", Emoji.Known.PalmTree }, + { "pancakes", Emoji.Known.Pancakes }, + { "panda", Emoji.Known.Panda }, + { "paperclip", Emoji.Known.Paperclip }, + { "parachute", Emoji.Known.Parachute }, + { "parrot", Emoji.Known.Parrot }, + { "part_alternation_mark", Emoji.Known.PartAlternationMark }, + { "partying_face", Emoji.Known.PartyingFace }, + { "party_popper", Emoji.Known.PartyPopper }, + { "passenger_ship", Emoji.Known.PassengerShip }, + { "passport_control", Emoji.Known.PassportControl }, + { "pause_button", Emoji.Known.PauseButton }, + { "paw_prints", Emoji.Known.PawPrints }, + { "p_button", Emoji.Known.PButton }, + { "peace_symbol", Emoji.Known.PeaceSymbol }, + { "peach", Emoji.Known.Peach }, + { "peacock", Emoji.Known.Peacock }, + { "peanuts", Emoji.Known.Peanuts }, + { "pear", Emoji.Known.Pear }, + { "pen", Emoji.Known.Pen }, + { "pencil", Emoji.Known.Pencil }, + { "penguin", Emoji.Known.Penguin }, + { "pensive_face", Emoji.Known.PensiveFace }, + { "people_hugging", Emoji.Known.PeopleHugging }, + { "people_with_bunny_ears", Emoji.Known.PeopleWithBunnyEars }, + { "people_wrestling", Emoji.Known.PeopleWrestling }, + { "performing_arts", Emoji.Known.PerformingArts }, + { "persevering_face", Emoji.Known.PerseveringFace }, + { "person", Emoji.Known.Person }, + { "person_beard", Emoji.Known.PersonBeard }, + { "person_biking", Emoji.Known.PersonBiking }, + { "person_blond_hair", Emoji.Known.PersonBlondHair }, + { "person_bouncing_ball", Emoji.Known.PersonBouncingBall }, + { "person_bowing", Emoji.Known.PersonBowing }, + { "person_cartwheeling", Emoji.Known.PersonCartwheeling }, + { "person_climbing", Emoji.Known.PersonClimbing }, + { "person_facepalming", Emoji.Known.PersonFacepalming }, + { "person_fencing", Emoji.Known.PersonFencing }, + { "person_frowning", Emoji.Known.PersonFrowning }, + { "person_gesturing_no", Emoji.Known.PersonGesturingNo }, + { "person_gesturing_ok", Emoji.Known.PersonGesturingOk }, + { "person_getting_haircut", Emoji.Known.PersonGettingHaircut }, + { "person_getting_massage", Emoji.Known.PersonGettingMassage }, + { "person_golfing", Emoji.Known.PersonGolfing }, + { "person_in_bed", Emoji.Known.PersonInBed }, + { "person_in_lotus_position", Emoji.Known.PersonInLotusPosition }, + { "person_in_steamy_room", Emoji.Known.PersonInSteamyRoom }, + { "person_in_suit_levitating", Emoji.Known.PersonInSuitLevitating }, + { "person_in_tuxedo", Emoji.Known.PersonInTuxedo }, + { "person_juggling", Emoji.Known.PersonJuggling }, + { "person_kneeling", Emoji.Known.PersonKneeling }, + { "person_lifting_weights", Emoji.Known.PersonLiftingWeights }, + { "person_mountain_biking", Emoji.Known.PersonMountainBiking }, + { "person_playing_handball", Emoji.Known.PersonPlayingHandball }, + { "person_playing_water_polo", Emoji.Known.PersonPlayingWaterPolo }, + { "person_pouting", Emoji.Known.PersonPouting }, + { "person_raising_hand", Emoji.Known.PersonRaisingHand }, + { "person_rowing_boat", Emoji.Known.PersonRowingBoat }, + { "person_running", Emoji.Known.PersonRunning }, + { "person_shrugging", Emoji.Known.PersonShrugging }, + { "person_standing", Emoji.Known.PersonStanding }, + { "person_surfing", Emoji.Known.PersonSurfing }, + { "person_swimming", Emoji.Known.PersonSwimming }, + { "person_taking_bath", Emoji.Known.PersonTakingBath }, + { "person_tipping_hand", Emoji.Known.PersonTippingHand }, + { "person_walking", Emoji.Known.PersonWalking }, + { "person_wearing_turban", Emoji.Known.PersonWearingTurban }, + { "person_with_skullcap", Emoji.Known.PersonWithSkullcap }, + { "person_with_veil", Emoji.Known.PersonWithVeil }, + { "petri_dish", Emoji.Known.PetriDish }, + { "pick", Emoji.Known.Pick }, + { "pickup_truck", Emoji.Known.PickupTruck }, + { "pie", Emoji.Known.Pie }, + { "pig", Emoji.Known.Pig }, + { "pig_face", Emoji.Known.PigFace }, + { "pig_nose", Emoji.Known.PigNose }, + { "pile_of_poo", Emoji.Known.PileOfPoo }, + { "pill", Emoji.Known.Pill }, + { "piñata", Emoji.Known.Piñata }, + { "pinched_fingers", Emoji.Known.PinchedFingers }, + { "pinching_hand", Emoji.Known.PinchingHand }, + { "pineapple", Emoji.Known.Pineapple }, + { "pine_decoration", Emoji.Known.PineDecoration }, + { "ping_pong", Emoji.Known.PingPong }, + { "pisces", Emoji.Known.Pisces }, + { "pizza", Emoji.Known.Pizza }, + { "placard", Emoji.Known.Placard }, + { "place_of_worship", Emoji.Known.PlaceOfWorship }, + { "play_button", Emoji.Known.PlayButton }, + { "play_or_pause_button", Emoji.Known.PlayOrPauseButton }, + { "pleading_face", Emoji.Known.PleadingFace }, + { "plunger", Emoji.Known.Plunger }, + { "plus", Emoji.Known.Plus }, + { "police_car", Emoji.Known.PoliceCar }, + { "police_car_light", Emoji.Known.PoliceCarLight }, + { "police_officer", Emoji.Known.PoliceOfficer }, + { "poodle", Emoji.Known.Poodle }, + { "pool_8_ball", Emoji.Known.Pool8Ball }, + { "popcorn", Emoji.Known.Popcorn }, + { "postal_horn", Emoji.Known.PostalHorn }, + { "postbox", Emoji.Known.Postbox }, + { "post_office", Emoji.Known.PostOffice }, + { "potable_water", Emoji.Known.PotableWater }, + { "potato", Emoji.Known.Potato }, + { "pot_of_food", Emoji.Known.PotOfFood }, + { "potted_plant", Emoji.Known.PottedPlant }, + { "poultry_leg", Emoji.Known.PoultryLeg }, + { "pound_banknote", Emoji.Known.PoundBanknote }, + { "pouting_cat", Emoji.Known.PoutingCat }, + { "pouting_face", Emoji.Known.PoutingFace }, + { "prayer_beads", Emoji.Known.PrayerBeads }, + { "pregnant_woman", Emoji.Known.PregnantWoman }, + { "pretzel", Emoji.Known.Pretzel }, + { "prince", Emoji.Known.Prince }, + { "princess", Emoji.Known.Princess }, + { "printer", Emoji.Known.Printer }, + { "prohibited", Emoji.Known.Prohibited }, + { "purple_circle", Emoji.Known.PurpleCircle }, + { "purple_heart", Emoji.Known.PurpleHeart }, + { "purple_square", Emoji.Known.PurpleSquare }, + { "purse", Emoji.Known.Purse }, + { "pushpin", Emoji.Known.Pushpin }, + { "puzzle_piece", Emoji.Known.PuzzlePiece }, + { "rabbit", Emoji.Known.Rabbit }, + { "rabbit_face", Emoji.Known.RabbitFace }, + { "raccoon", Emoji.Known.Raccoon }, + { "racing_car", Emoji.Known.RacingCar }, + { "radio", Emoji.Known.Radio }, + { "radioactive", Emoji.Known.Radioactive }, + { "radio_button", Emoji.Known.RadioButton }, + { "railway_car", Emoji.Known.RailwayCar }, + { "railway_track", Emoji.Known.RailwayTrack }, + { "rainbow", Emoji.Known.Rainbow }, + { "raised_back_of_hand", Emoji.Known.RaisedBackOfHand }, + { "raised_fist", Emoji.Known.RaisedFist }, + { "raised_hand", Emoji.Known.RaisedHand }, + { "raising_hands", Emoji.Known.RaisingHands }, + { "ram", Emoji.Known.Ram }, + { "rat", Emoji.Known.Rat }, + { "razor", Emoji.Known.Razor }, + { "receipt", Emoji.Known.Receipt }, + { "record_button", Emoji.Known.RecordButton }, + { "recycling_symbol", Emoji.Known.RecyclingSymbol }, + { "red_apple", Emoji.Known.RedApple }, + { "red_circle", Emoji.Known.RedCircle }, + { "red_envelope", Emoji.Known.RedEnvelope }, + { "red_exclamation_mark", Emoji.Known.RedExclamationMark }, + { "red_hair", Emoji.Known.RedHair }, + { "red_heart", Emoji.Known.RedHeart }, + { "red_paper_lantern", Emoji.Known.RedPaperLantern }, + { "red_question_mark", Emoji.Known.RedQuestionMark }, + { "red_square", Emoji.Known.RedSquare }, + { "red_triangle_pointed_down", Emoji.Known.RedTrianglePointedDown }, + { "red_triangle_pointed_up", Emoji.Known.RedTrianglePointedUp }, + { "registered", Emoji.Known.Registered }, + { "relieved_face", Emoji.Known.RelievedFace }, + { "reminder_ribbon", Emoji.Known.ReminderRibbon }, + { "repeat_button", Emoji.Known.RepeatButton }, + { "repeat_single_button", Emoji.Known.RepeatSingleButton }, + { "rescue_workers_helmet", Emoji.Known.RescueWorkersHelmet }, + { "restroom", Emoji.Known.Restroom }, + { "reverse_button", Emoji.Known.ReverseButton }, + { "revolving_hearts", Emoji.Known.RevolvingHearts }, + { "rhinoceros", Emoji.Known.Rhinoceros }, + { "ribbon", Emoji.Known.Ribbon }, + { "rice_ball", Emoji.Known.RiceBall }, + { "rice_cracker", Emoji.Known.RiceCracker }, + { "right_anger_bubble", Emoji.Known.RightAngerBubble }, + { "right_arrow", Emoji.Known.RightArrow }, + { "right_arrow_curving_down", Emoji.Known.RightArrowCurvingDown }, + { "right_arrow_curving_left", Emoji.Known.RightArrowCurvingLeft }, + { "right_arrow_curving_up", Emoji.Known.RightArrowCurvingUp }, + { "right_facing_fist", Emoji.Known.RightFacingFist }, + { "ring", Emoji.Known.Ring }, + { "ringed_planet", Emoji.Known.RingedPlanet }, + { "roasted_sweet_potato", Emoji.Known.RoastedSweetPotato }, + { "robot", Emoji.Known.Robot }, + { "rock", Emoji.Known.Rock }, + { "rocket", Emoji.Known.Rocket }, + { "rolled_up_newspaper", Emoji.Known.RolledUpNewspaper }, + { "roller_coaster", Emoji.Known.RollerCoaster }, + { "roller_skate", Emoji.Known.RollerSkate }, + { "rolling_on_the_floor_laughing", Emoji.Known.RollingOnTheFloorLaughing }, + { "roll_of_paper", Emoji.Known.RollOfPaper }, + { "rooster", Emoji.Known.Rooster }, + { "rose", Emoji.Known.Rose }, + { "rosette", Emoji.Known.Rosette }, + { "round_pushpin", Emoji.Known.RoundPushpin }, + { "rugby_football", Emoji.Known.RugbyFootball }, + { "running_shirt", Emoji.Known.RunningShirt }, + { "running_shoe", Emoji.Known.RunningShoe }, + { "sad_but_relieved_face", Emoji.Known.SadButRelievedFace }, + { "safety_pin", Emoji.Known.SafetyPin }, + { "safety_vest", Emoji.Known.SafetyVest }, + { "sagittarius", Emoji.Known.Sagittarius }, + { "sailboat", Emoji.Known.Sailboat }, + { "sake", Emoji.Known.Sake }, + { "salt", Emoji.Known.Salt }, + { "sandwich", Emoji.Known.Sandwich }, + { "santa_claus", Emoji.Known.SantaClaus }, + { "sari", Emoji.Known.Sari }, + { "satellite", Emoji.Known.Satellite }, + { "satellite_antenna", Emoji.Known.SatelliteAntenna }, + { "sauropod", Emoji.Known.Sauropod }, + { "saxophone", Emoji.Known.Saxophone }, + { "scarf", Emoji.Known.Scarf }, + { "school", Emoji.Known.School }, + { "scissors", Emoji.Known.Scissors }, + { "scorpio", Emoji.Known.Scorpio }, + { "scorpion", Emoji.Known.Scorpion }, + { "screwdriver", Emoji.Known.Screwdriver }, + { "scroll", Emoji.Known.Scroll }, + { "seal", Emoji.Known.Seal }, + { "seat", Emoji.Known.Seat }, + { "2nd_place_medal", Emoji.Known.SecondPlaceMedal }, + { "seedling", Emoji.Known.Seedling }, + { "see_no_evil_monkey", Emoji.Known.SeeNoEvilMonkey }, + { "selfie", Emoji.Known.Selfie }, + { "seven_o_clock", Emoji.Known.SevenOClock }, + { "seven_thirty", Emoji.Known.SevenThirty }, + { "sewing_needle", Emoji.Known.SewingNeedle }, + { "shallow_pan_of_food", Emoji.Known.ShallowPanOfFood }, + { "shamrock", Emoji.Known.Shamrock }, + { "shark", Emoji.Known.Shark }, + { "shaved_ice", Emoji.Known.ShavedIce }, + { "sheaf_of_rice", Emoji.Known.SheafOfRice }, + { "shield", Emoji.Known.Shield }, + { "shinto_shrine", Emoji.Known.ShintoShrine }, + { "ship", Emoji.Known.Ship }, + { "shooting_star", Emoji.Known.ShootingStar }, + { "shopping_bags", Emoji.Known.ShoppingBags }, + { "shopping_cart", Emoji.Known.ShoppingCart }, + { "shortcake", Emoji.Known.Shortcake }, + { "shorts", Emoji.Known.Shorts }, + { "shower", Emoji.Known.Shower }, + { "shrimp", Emoji.Known.Shrimp }, + { "shuffle_tracks_button", Emoji.Known.ShuffleTracksButton }, + { "shushing_face", Emoji.Known.ShushingFace }, + { "sign_of_the_horns", Emoji.Known.SignOfTheHorns }, + { "six_o_clock", Emoji.Known.SixOClock }, + { "six_thirty", Emoji.Known.SixThirty }, + { "skateboard", Emoji.Known.Skateboard }, + { "skier", Emoji.Known.Skier }, + { "skis", Emoji.Known.Skis }, + { "skull", Emoji.Known.Skull }, + { "skull_and_crossbones", Emoji.Known.SkullAndCrossbones }, + { "skunk", Emoji.Known.Skunk }, + { "sled", Emoji.Known.Sled }, + { "sleeping_face", Emoji.Known.SleepingFace }, + { "sleepy_face", Emoji.Known.SleepyFace }, + { "slightly_frowning_face", Emoji.Known.SlightlyFrowningFace }, + { "slightly_smiling_face", Emoji.Known.SlightlySmilingFace }, + { "sloth", Emoji.Known.Sloth }, + { "slot_machine", Emoji.Known.SlotMachine }, + { "small_airplane", Emoji.Known.SmallAirplane }, + { "small_blue_diamond", Emoji.Known.SmallBlueDiamond }, + { "small_orange_diamond", Emoji.Known.SmallOrangeDiamond }, + { "smiling_cat_with_heart_eyes", Emoji.Known.SmilingCatWithHeartEyes }, + { "smiling_face", Emoji.Known.SmilingFace }, + { "smiling_face_with_halo", Emoji.Known.SmilingFaceWithHalo }, + { "smiling_face_with_heart_eyes", Emoji.Known.SmilingFaceWithHeartEyes }, + { "smiling_face_with_hearts", Emoji.Known.SmilingFaceWithHearts }, + { "smiling_face_with_horns", Emoji.Known.SmilingFaceWithHorns }, + { "smiling_face_with_smiling_eyes", Emoji.Known.SmilingFaceWithSmilingEyes }, + { "smiling_face_with_sunglasses", Emoji.Known.SmilingFaceWithSunglasses }, + { "smiling_face_with_tear", Emoji.Known.SmilingFaceWithTear }, + { "smirking_face", Emoji.Known.SmirkingFace }, + { "snail", Emoji.Known.Snail }, + { "snake", Emoji.Known.Snake }, + { "sneezing_face", Emoji.Known.SneezingFace }, + { "snowboarder", Emoji.Known.Snowboarder }, + { "snow_capped_mountain", Emoji.Known.SnowCappedMountain }, + { "snowflake", Emoji.Known.Snowflake }, + { "snowman", Emoji.Known.Snowman }, + { "snowman_without_snow", Emoji.Known.SnowmanWithoutSnow }, + { "soap", Emoji.Known.Soap }, + { "soccer_ball", Emoji.Known.SoccerBall }, + { "socks", Emoji.Known.Socks }, + { "softball", Emoji.Known.Softball }, + { "soft_ice_cream", Emoji.Known.SoftIceCream }, + { "soon_arrow", Emoji.Known.SoonArrow }, + { "sos_button", Emoji.Known.SosButton }, + { "spade_suit", Emoji.Known.SpadeSuit }, + { "spaghetti", Emoji.Known.Spaghetti }, + { "sparkle", Emoji.Known.Sparkle }, + { "sparkler", Emoji.Known.Sparkler }, + { "sparkles", Emoji.Known.Sparkles }, + { "sparkling_heart", Emoji.Known.SparklingHeart }, + { "speaker_high_volume", Emoji.Known.SpeakerHighVolume }, + { "speaker_low_volume", Emoji.Known.SpeakerLowVolume }, + { "speaker_medium_volume", Emoji.Known.SpeakerMediumVolume }, + { "speaking_head", Emoji.Known.SpeakingHead }, + { "speak_no_evil_monkey", Emoji.Known.SpeakNoEvilMonkey }, + { "speech_balloon", Emoji.Known.SpeechBalloon }, + { "speedboat", Emoji.Known.Speedboat }, + { "spider", Emoji.Known.Spider }, + { "spider_web", Emoji.Known.SpiderWeb }, + { "spiral_calendar", Emoji.Known.SpiralCalendar }, + { "spiral_notepad", Emoji.Known.SpiralNotepad }, + { "spiral_shell", Emoji.Known.SpiralShell }, + { "sponge", Emoji.Known.Sponge }, + { "spoon", Emoji.Known.Spoon }, + { "sports_medal", Emoji.Known.SportsMedal }, + { "sport_utility_vehicle", Emoji.Known.SportUtilityVehicle }, + { "spouting_whale", Emoji.Known.SpoutingWhale }, + { "squid", Emoji.Known.Squid }, + { "squinting_face_with_tongue", Emoji.Known.SquintingFaceWithTongue }, + { "stadium", Emoji.Known.Stadium }, + { "star", Emoji.Known.Star }, + { "star_and_crescent", Emoji.Known.StarAndCrescent }, + { "star_of_david", Emoji.Known.StarOfDavid }, + { "star_struck", Emoji.Known.StarStruck }, + { "station", Emoji.Known.Station }, + { "statue_of_liberty", Emoji.Known.StatueOfLiberty }, + { "steaming_bowl", Emoji.Known.SteamingBowl }, + { "stethoscope", Emoji.Known.Stethoscope }, + { "stop_button", Emoji.Known.StopButton }, + { "stop_sign", Emoji.Known.StopSign }, + { "stopwatch", Emoji.Known.Stopwatch }, + { "straight_ruler", Emoji.Known.StraightRuler }, + { "strawberry", Emoji.Known.Strawberry }, + { "studio_microphone", Emoji.Known.StudioMicrophone }, + { "stuffed_flatbread", Emoji.Known.StuffedFlatbread }, + { "sun", Emoji.Known.Sun }, + { "sun_behind_cloud", Emoji.Known.SunBehindCloud }, + { "sun_behind_large_cloud", Emoji.Known.SunBehindLargeCloud }, + { "sun_behind_rain_cloud", Emoji.Known.SunBehindRainCloud }, + { "sun_behind_small_cloud", Emoji.Known.SunBehindSmallCloud }, + { "sunflower", Emoji.Known.Sunflower }, + { "sunglasses", Emoji.Known.Sunglasses }, + { "sunrise", Emoji.Known.Sunrise }, + { "sunrise_over_mountains", Emoji.Known.SunriseOverMountains }, + { "sunset", Emoji.Known.Sunset }, + { "sun_with_face", Emoji.Known.SunWithFace }, + { "superhero", Emoji.Known.Superhero }, + { "supervillain", Emoji.Known.Supervillain }, + { "sushi", Emoji.Known.Sushi }, + { "suspension_railway", Emoji.Known.SuspensionRailway }, + { "swan", Emoji.Known.Swan }, + { "sweat_droplets", Emoji.Known.SweatDroplets }, + { "synagogue", Emoji.Known.Synagogue }, + { "syringe", Emoji.Known.Syringe }, + { "taco", Emoji.Known.Taco }, + { "takeout_box", Emoji.Known.TakeoutBox }, + { "tamale", Emoji.Known.Tamale }, + { "tanabata_tree", Emoji.Known.TanabataTree }, + { "tangerine", Emoji.Known.Tangerine }, + { "taurus", Emoji.Known.Taurus }, + { "taxi", Emoji.Known.Taxi }, + { "teacup_without_handle", Emoji.Known.TeacupWithoutHandle }, + { "teapot", Emoji.Known.Teapot }, + { "tear_off_calendar", Emoji.Known.TearOffCalendar }, + { "teddy_bear", Emoji.Known.TeddyBear }, + { "telephone", Emoji.Known.Telephone }, + { "telephone_receiver", Emoji.Known.TelephoneReceiver }, + { "telescope", Emoji.Known.Telescope }, + { "television", Emoji.Known.Television }, + { "tennis", Emoji.Known.Tennis }, + { "ten_o_clock", Emoji.Known.TenOClock }, + { "tent", Emoji.Known.Tent }, + { "ten_thirty", Emoji.Known.TenThirty }, + { "test_tube", Emoji.Known.TestTube }, + { "thermometer", Emoji.Known.Thermometer }, + { "thinking_face", Emoji.Known.ThinkingFace }, + { "3rd_place_medal", Emoji.Known.ThirdPlaceMedal }, + { "thong_sandal", Emoji.Known.ThongSandal }, + { "thought_balloon", Emoji.Known.ThoughtBalloon }, + { "thread", Emoji.Known.Thread }, + { "three_o_clock", Emoji.Known.ThreeOClock }, + { "three_thirty", Emoji.Known.ThreeThirty }, + { "thumbs_down", Emoji.Known.ThumbsDown }, + { "thumbs_up", Emoji.Known.ThumbsUp }, + { "ticket", Emoji.Known.Ticket }, + { "tiger", Emoji.Known.Tiger }, + { "tiger_face", Emoji.Known.TigerFace }, + { "timer_clock", Emoji.Known.TimerClock }, + { "tired_face", Emoji.Known.TiredFace }, + { "toilet", Emoji.Known.Toilet }, + { "tokyo_tower", Emoji.Known.TokyoTower }, + { "tomato", Emoji.Known.Tomato }, + { "tongue", Emoji.Known.Tongue }, + { "toolbox", Emoji.Known.Toolbox }, + { "tooth", Emoji.Known.Tooth }, + { "toothbrush", Emoji.Known.Toothbrush }, + { "top_arrow", Emoji.Known.TopArrow }, + { "top_hat", Emoji.Known.TopHat }, + { "tornado", Emoji.Known.Tornado }, + { "trackball", Emoji.Known.Trackball }, + { "tractor", Emoji.Known.Tractor }, + { "trade_mark", Emoji.Known.TradeMark }, + { "train", Emoji.Known.Train }, + { "tram", Emoji.Known.Tram }, + { "tram_car", Emoji.Known.TramCar }, + { "transgender_symbol", Emoji.Known.TransgenderSymbol }, + { "t_rex", Emoji.Known.TRex }, + { "triangular_flag", Emoji.Known.TriangularFlag }, + { "triangular_ruler", Emoji.Known.TriangularRuler }, + { "trident_emblem", Emoji.Known.TridentEmblem }, + { "trolleybus", Emoji.Known.Trolleybus }, + { "trophy", Emoji.Known.Trophy }, + { "tropical_drink", Emoji.Known.TropicalDrink }, + { "tropical_fish", Emoji.Known.TropicalFish }, + { "trumpet", Emoji.Known.Trumpet }, + { "t_shirt", Emoji.Known.TShirt }, + { "tulip", Emoji.Known.Tulip }, + { "tumbler_glass", Emoji.Known.TumblerGlass }, + { "turkey", Emoji.Known.Turkey }, + { "turtle", Emoji.Known.Turtle }, + { "twelve_o_clock", Emoji.Known.TwelveOClock }, + { "twelve_thirty", Emoji.Known.TwelveThirty }, + { "two_hearts", Emoji.Known.TwoHearts }, + { "two_hump_camel", Emoji.Known.TwoHumpCamel }, + { "two_o_clock", Emoji.Known.TwoOClock }, + { "two_thirty", Emoji.Known.TwoThirty }, + { "umbrella", Emoji.Known.Umbrella }, + { "umbrella_on_ground", Emoji.Known.UmbrellaOnGround }, + { "umbrella_with_rain_drops", Emoji.Known.UmbrellaWithRainDrops }, + { "unamused_face", Emoji.Known.UnamusedFace }, + { "unicorn", Emoji.Known.Unicorn }, + { "unlocked", Emoji.Known.Unlocked }, + { "up_arrow", Emoji.Known.UpArrow }, + { "up_button", Emoji.Known.UpButton }, + { "up_down_arrow", Emoji.Known.UpDownArrow }, + { "up_left_arrow", Emoji.Known.UpLeftArrow }, + { "up_right_arrow", Emoji.Known.UpRightArrow }, + { "upside_down_face", Emoji.Known.UpsideDownFace }, + { "upwards_button", Emoji.Known.UpwardsButton }, + { "vampire", Emoji.Known.Vampire }, + { "vertical_traffic_light", Emoji.Known.VerticalTrafficLight }, + { "vibration_mode", Emoji.Known.VibrationMode }, + { "victory_hand", Emoji.Known.VictoryHand }, + { "video_camera", Emoji.Known.VideoCamera }, + { "videocassette", Emoji.Known.Videocassette }, + { "video_game", Emoji.Known.VideoGame }, + { "violin", Emoji.Known.Violin }, + { "virgo", Emoji.Known.Virgo }, + { "volcano", Emoji.Known.Volcano }, + { "volleyball", Emoji.Known.Volleyball }, + { "vs_button", Emoji.Known.VsButton }, + { "vulcan_salute", Emoji.Known.VulcanSalute }, + { "waffle", Emoji.Known.Waffle }, + { "waning_crescent_moon", Emoji.Known.WaningCrescentMoon }, + { "waning_gibbous_moon", Emoji.Known.WaningGibbousMoon }, + { "warning", Emoji.Known.Warning }, + { "wastebasket", Emoji.Known.Wastebasket }, + { "watch", Emoji.Known.Watch }, + { "water_buffalo", Emoji.Known.WaterBuffalo }, + { "water_closet", Emoji.Known.WaterCloset }, + { "watermelon", Emoji.Known.Watermelon }, + { "water_pistol", Emoji.Known.WaterPistol }, + { "water_wave", Emoji.Known.WaterWave }, + { "waving_hand", Emoji.Known.WavingHand }, + { "wavy_dash", Emoji.Known.WavyDash }, + { "waxing_crescent_moon", Emoji.Known.WaxingCrescentMoon }, + { "waxing_gibbous_moon", Emoji.Known.WaxingGibbousMoon }, + { "weary_cat", Emoji.Known.WearyCat }, + { "weary_face", Emoji.Known.WearyFace }, + { "wedding", Emoji.Known.Wedding }, + { "whale", Emoji.Known.Whale }, + { "wheelchair_symbol", Emoji.Known.WheelchairSymbol }, + { "wheel_of_dharma", Emoji.Known.WheelOfDharma }, + { "white_cane", Emoji.Known.WhiteCane }, + { "white_circle", Emoji.Known.WhiteCircle }, + { "white_exclamation_mark", Emoji.Known.WhiteExclamationMark }, + { "white_flag", Emoji.Known.WhiteFlag }, + { "white_flower", Emoji.Known.WhiteFlower }, + { "white_hair", Emoji.Known.WhiteHair }, + { "white_heart", Emoji.Known.WhiteHeart }, + { "white_large_square", Emoji.Known.WhiteLargeSquare }, + { "white_medium_small_square", Emoji.Known.WhiteMediumSmallSquare }, + { "white_medium_square", Emoji.Known.WhiteMediumSquare }, + { "white_question_mark", Emoji.Known.WhiteQuestionMark }, + { "white_small_square", Emoji.Known.WhiteSmallSquare }, + { "white_square_button", Emoji.Known.WhiteSquareButton }, + { "wilted_flower", Emoji.Known.WiltedFlower }, + { "wind_chime", Emoji.Known.WindChime }, + { "wind_face", Emoji.Known.WindFace }, + { "window", Emoji.Known.Window }, + { "wine_glass", Emoji.Known.WineGlass }, + { "winking_face", Emoji.Known.WinkingFace }, + { "winking_face_with_tongue", Emoji.Known.WinkingFaceWithTongue }, + { "wolf", Emoji.Known.Wolf }, + { "woman", Emoji.Known.Woman }, + { "woman_and_man_holding_hands", Emoji.Known.WomanAndManHoldingHands }, + { "woman_dancing", Emoji.Known.WomanDancing }, + { "womans_boot", Emoji.Known.WomansBoot }, + { "womans_clothes", Emoji.Known.WomansClothes }, + { "womans_hat", Emoji.Known.WomansHat }, + { "womans_sandal", Emoji.Known.WomansSandal }, + { "woman_with_headscarf", Emoji.Known.WomanWithHeadscarf }, + { "women_holding_hands", Emoji.Known.WomenHoldingHands }, + { "womens_room", Emoji.Known.WomensRoom }, + { "wood", Emoji.Known.Wood }, + { "woozy_face", Emoji.Known.WoozyFace }, + { "world_map", Emoji.Known.WorldMap }, + { "worm", Emoji.Known.Worm }, + { "worried_face", Emoji.Known.WorriedFace }, + { "wrapped_gift", Emoji.Known.WrappedGift }, + { "wrench", Emoji.Known.Wrench }, + { "writing_hand", Emoji.Known.WritingHand }, + { "yarn", Emoji.Known.Yarn }, + { "yawning_face", Emoji.Known.YawningFace }, + { "yellow_circle", Emoji.Known.YellowCircle }, + { "yellow_heart", Emoji.Known.YellowHeart }, + { "yellow_square", Emoji.Known.YellowSquare }, + { "yen_banknote", Emoji.Known.YenBanknote }, + { "yin_yang", Emoji.Known.YinYang }, + { "yo_yo", Emoji.Known.YoYo }, + { "zany_face", Emoji.Known.ZanyFace }, + { "zebra", Emoji.Known.Zebra }, + { "zipper_mouth_face", Emoji.Known.ZipperMouthFace }, + { "zombie", Emoji.Known.Zombie }, + { "zzz", Emoji.Known.Zzz }, }; + + /// + /// Contains all predefined emojis. + /// + public static class Known + { + /// + /// Gets the "abacus" emoji. + /// Description: Abacus. + /// + public const string Abacus = "\U0001F9EE"; + + /// + /// Gets the "ab_button_blood_type" emoji. + /// Description: AB button blood type. + /// + public const string AbButtonBloodType = "\U0001F18E"; + + /// + /// Gets the "a_button_blood_type" emoji. + /// Description: A button blood type. + /// + public const string AButtonBloodType = "\U0001F170"; + + /// + /// Gets the "accordion" emoji. + /// Description: Accordion. + /// + public const string Accordion = "\U0001FA97"; + + /// + /// Gets the "adhesive_bandage" emoji. + /// Description: Adhesive bandage. + /// + public const string AdhesiveBandage = "\U0001FA79"; + + /// + /// Gets the "admission_tickets" emoji. + /// Description: Admission tickets. + /// + public const string AdmissionTickets = "\U0001F39F"; + + /// + /// Gets the "aerial_tramway" emoji. + /// Description: Aerial tramway. + /// + public const string AerialTramway = "\U0001F6A1"; + + /// + /// Gets the "airplane" emoji. + /// Description: Airplane. + /// + public const string Airplane = "\U00002708"; + + /// + /// Gets the "airplane_arrival" emoji. + /// Description: Airplane arrival. + /// + public const string AirplaneArrival = "\U0001F6EC"; + + /// + /// Gets the "airplane_departure" emoji. + /// Description: Airplane departure. + /// + public const string AirplaneDeparture = "\U0001F6EB"; + + /// + /// Gets the "alarm_clock" emoji. + /// Description: Alarm clock. + /// + public const string AlarmClock = "\U000023F0"; + + /// + /// Gets the "alembic" emoji. + /// Description: Alembic. + /// + public const string Alembic = "\U00002697"; + + /// + /// Gets the "alien" emoji. + /// Description: Alien. + /// + public const string Alien = "\U0001F47D"; + + /// + /// Gets the "alien_monster" emoji. + /// Description: Alien monster. + /// + public const string AlienMonster = "\U0001F47E"; + + /// + /// Gets the "ambulance" emoji. + /// Description: Ambulance. + /// + public const string Ambulance = "\U0001F691"; + + /// + /// Gets the "american_football" emoji. + /// Description: American football. + /// + public const string AmericanFootball = "\U0001F3C8"; + + /// + /// Gets the "amphora" emoji. + /// Description: Amphora. + /// + public const string Amphora = "\U0001F3FA"; + + /// + /// Gets the "anatomical_heart" emoji. + /// Description: Anatomical heart. + /// + public const string AnatomicalHeart = "\U0001FAC0"; + + /// + /// Gets the "anchor" emoji. + /// Description: Anchor. + /// + public const string Anchor = "\U00002693"; + + /// + /// Gets the "anger_symbol" emoji. + /// Description: Anger symbol. + /// + public const string AngerSymbol = "\U0001F4A2"; + + /// + /// Gets the "angry_face" emoji. + /// Description: Angry face. + /// + public const string AngryFace = "\U0001F620"; + + /// + /// Gets the "angry_face_with_horns" emoji. + /// Description: Angry face with horns. + /// + public const string AngryFaceWithHorns = "\U0001F47F"; + + /// + /// Gets the "anguished_face" emoji. + /// Description: Anguished face. + /// + public const string AnguishedFace = "\U0001F627"; + + /// + /// Gets the "ant" emoji. + /// Description: Ant. + /// + public const string Ant = "\U0001F41C"; + + /// + /// Gets the "antenna_bars" emoji. + /// Description: Antenna bars. + /// + public const string AntennaBars = "\U0001F4F6"; + + /// + /// Gets the "anxious_face_with_sweat" emoji. + /// Description: Anxious face with sweat. + /// + public const string AnxiousFaceWithSweat = "\U0001F630"; + + /// + /// Gets the "aquarius" emoji. + /// Description: Aquarius. + /// + public const string Aquarius = "\U00002652"; + + /// + /// Gets the "aries" emoji. + /// Description: Aries. + /// + public const string Aries = "\U00002648"; + + /// + /// Gets the "articulated_lorry" emoji. + /// Description: Articulated lorry. + /// + public const string ArticulatedLorry = "\U0001F69B"; + + /// + /// Gets the "artist_palette" emoji. + /// Description: Artist palette. + /// + public const string ArtistPalette = "\U0001F3A8"; + + /// + /// Gets the "astonished_face" emoji. + /// Description: Astonished face. + /// + public const string AstonishedFace = "\U0001F632"; + + /// + /// Gets the "atm_sign" emoji. + /// Description: ATM sign. + /// + public const string AtmSign = "\U0001F3E7"; + + /// + /// Gets the "atom_symbol" emoji. + /// Description: Atom symbol. + /// + public const string AtomSymbol = "\U0000269B"; + + /// + /// Gets the "automobile" emoji. + /// Description: Automobile. + /// + public const string Automobile = "\U0001F697"; + + /// + /// Gets the "auto_rickshaw" emoji. + /// Description: Auto rickshaw. + /// + public const string AutoRickshaw = "\U0001F6FA"; + + /// + /// Gets the "avocado" emoji. + /// Description: Avocado. + /// + public const string Avocado = "\U0001F951"; + + /// + /// Gets the "axe" emoji. + /// Description: Axe. + /// + public const string Axe = "\U0001FA93"; + + /// + /// Gets the "baby" emoji. + /// Description: Baby. + /// + public const string Baby = "\U0001F476"; + + /// + /// Gets the "baby_angel" emoji. + /// Description: Baby angel. + /// + public const string BabyAngel = "\U0001F47C"; + + /// + /// Gets the "baby_bottle" emoji. + /// Description: Baby bottle. + /// + public const string BabyBottle = "\U0001F37C"; + + /// + /// Gets the "baby_chick" emoji. + /// Description: Baby chick. + /// + public const string BabyChick = "\U0001F424"; + + /// + /// Gets the "baby_symbol" emoji. + /// Description: Baby symbol. + /// + public const string BabySymbol = "\U0001F6BC"; + + /// + /// Gets the "back_arrow" emoji. + /// Description: BACK arrow. + /// + public const string BackArrow = "\U0001F519"; + + /// + /// Gets the "backhand_index_pointing_down" emoji. + /// Description: Backhand index pointing down. + /// + public const string BackhandIndexPointingDown = "\U0001F447"; + + /// + /// Gets the "backhand_index_pointing_left" emoji. + /// Description: Backhand index pointing left. + /// + public const string BackhandIndexPointingLeft = "\U0001F448"; + + /// + /// Gets the "backhand_index_pointing_right" emoji. + /// Description: Backhand index pointing right. + /// + public const string BackhandIndexPointingRight = "\U0001F449"; + + /// + /// Gets the "backhand_index_pointing_up" emoji. + /// Description: Backhand index pointing up. + /// + public const string BackhandIndexPointingUp = "\U0001F446"; + + /// + /// Gets the "backpack" emoji. + /// Description: Backpack. + /// + public const string Backpack = "\U0001F392"; + + /// + /// Gets the "bacon" emoji. + /// Description: Bacon. + /// + public const string Bacon = "\U0001F953"; + + /// + /// Gets the "badger" emoji. + /// Description: Badger. + /// + public const string Badger = "\U0001F9A1"; + + /// + /// Gets the "badminton" emoji. + /// Description: Badminton. + /// + public const string Badminton = "\U0001F3F8"; + + /// + /// Gets the "bagel" emoji. + /// Description: Bagel. + /// + public const string Bagel = "\U0001F96F"; + + /// + /// Gets the "baggage_claim" emoji. + /// Description: Baggage claim. + /// + public const string BaggageClaim = "\U0001F6C4"; + + /// + /// Gets the "baguette_bread" emoji. + /// Description: Baguette bread. + /// + public const string BaguetteBread = "\U0001F956"; + + /// + /// Gets the "balance_scale" emoji. + /// Description: Balance scale. + /// + public const string BalanceScale = "\U00002696"; + + /// + /// Gets the "bald" emoji. + /// Description: Bald. + /// + public const string Bald = "\U0001F9B2"; + + /// + /// Gets the "ballet_shoes" emoji. + /// Description: Ballet shoes. + /// + public const string BalletShoes = "\U0001FA70"; + + /// + /// Gets the "balloon" emoji. + /// Description: Balloon. + /// + public const string Balloon = "\U0001F388"; + + /// + /// Gets the "ballot_box_with_ballot" emoji. + /// Description: Ballot box with ballot. + /// + public const string BallotBoxWithBallot = "\U0001F5F3"; + + /// + /// Gets the "banana" emoji. + /// Description: Banana. + /// + public const string Banana = "\U0001F34C"; + + /// + /// Gets the "banjo" emoji. + /// Description: Banjo. + /// + public const string Banjo = "\U0001FA95"; + + /// + /// Gets the "bank" emoji. + /// Description: Bank. + /// + public const string Bank = "\U0001F3E6"; + + /// + /// Gets the "barber_pole" emoji. + /// Description: Barber pole. + /// + public const string BarberPole = "\U0001F488"; + + /// + /// Gets the "bar_chart" emoji. + /// Description: Bar chart. + /// + public const string BarChart = "\U0001F4CA"; + + /// + /// Gets the "baseball" emoji. + /// Description: Baseball. + /// + public const string Baseball = "\U000026BE"; + + /// + /// Gets the "basket" emoji. + /// Description: Basket. + /// + public const string Basket = "\U0001F9FA"; + + /// + /// Gets the "basketball" emoji. + /// Description: Basketball. + /// + public const string Basketball = "\U0001F3C0"; + + /// + /// Gets the "bat" emoji. + /// Description: Bat. + /// + public const string Bat = "\U0001F987"; + + /// + /// Gets the "bathtub" emoji. + /// Description: Bathtub. + /// + public const string Bathtub = "\U0001F6C1"; + + /// + /// Gets the "battery" emoji. + /// Description: Battery. + /// + public const string Battery = "\U0001F50B"; + + /// + /// Gets the "b_button_blood_type" emoji. + /// Description: B button blood type. + /// + public const string BButtonBloodType = "\U0001F171"; + + /// + /// Gets the "beach_with_umbrella" emoji. + /// Description: Beach with umbrella. + /// + public const string BeachWithUmbrella = "\U0001F3D6"; + + /// + /// Gets the "beaming_face_with_smiling_eyes" emoji. + /// Description: Beaming face with smiling eyes. + /// + public const string BeamingFaceWithSmilingEyes = "\U0001F601"; + + /// + /// Gets the "bear" emoji. + /// Description: Bear. + /// + public const string Bear = "\U0001F43B"; + + /// + /// Gets the "beating_heart" emoji. + /// Description: Beating heart. + /// + public const string BeatingHeart = "\U0001F493"; + + /// + /// Gets the "beaver" emoji. + /// Description: Beaver. + /// + public const string Beaver = "\U0001F9AB"; + + /// + /// Gets the "bed" emoji. + /// Description: Bed. + /// + public const string Bed = "\U0001F6CF"; + + /// + /// Gets the "beer_mug" emoji. + /// Description: Beer mug. + /// + public const string BeerMug = "\U0001F37A"; + + /// + /// Gets the "beetle" emoji. + /// Description: Beetle. + /// + public const string Beetle = "\U0001FAB2"; + + /// + /// Gets the "bell" emoji. + /// Description: Bell. + /// + public const string Bell = "\U0001F514"; + + /// + /// Gets the "bellhop_bell" emoji. + /// Description: Bellhop bell. + /// + public const string BellhopBell = "\U0001F6CE"; + + /// + /// Gets the "bell_pepper" emoji. + /// Description: Bell pepper. + /// + public const string BellPepper = "\U0001FAD1"; + + /// + /// Gets the "bell_with_slash" emoji. + /// Description: Bell with slash. + /// + public const string BellWithSlash = "\U0001F515"; + + /// + /// Gets the "bento_box" emoji. + /// Description: Bento box. + /// + public const string BentoBox = "\U0001F371"; + + /// + /// Gets the "beverage_box" emoji. + /// Description: Beverage box. + /// + public const string BeverageBox = "\U0001F9C3"; + + /// + /// Gets the "bicycle" emoji. + /// Description: Bicycle. + /// + public const string Bicycle = "\U0001F6B2"; + + /// + /// Gets the "bikini" emoji. + /// Description: Bikini. + /// + public const string Bikini = "\U0001F459"; + + /// + /// Gets the "billed_cap" emoji. + /// Description: Billed cap. + /// + public const string BilledCap = "\U0001F9E2"; + + /// + /// Gets the "biohazard" emoji. + /// Description: Biohazard. + /// + public const string Biohazard = "\U00002623"; + + /// + /// Gets the "bird" emoji. + /// Description: Bird. + /// + public const string Bird = "\U0001F426"; + + /// + /// Gets the "birthday_cake" emoji. + /// Description: Birthday cake. + /// + public const string BirthdayCake = "\U0001F382"; + + /// + /// Gets the "bison" emoji. + /// Description: Bison. + /// + public const string Bison = "\U0001F9AC"; + + /// + /// Gets the "black_circle" emoji. + /// Description: Black circle. + /// + public const string BlackCircle = "\U000026AB"; + + /// + /// Gets the "black_flag" emoji. + /// Description: Black flag. + /// + public const string BlackFlag = "\U0001F3F4"; + + /// + /// Gets the "black_heart" emoji. + /// Description: Black heart. + /// + public const string BlackHeart = "\U0001F5A4"; + + /// + /// Gets the "black_large_square" emoji. + /// Description: Black large square. + /// + public const string BlackLargeSquare = "\U00002B1B"; + + /// + /// Gets the "black_medium_small_square" emoji. + /// Description: black medium small square. + /// + public const string BlackMediumSmallSquare = "\U000025FE"; + + /// + /// Gets the "black_medium_square" emoji. + /// Description: Black medium square. + /// + public const string BlackMediumSquare = "\U000025FC"; + + /// + /// Gets the "black_nib" emoji. + /// Description: Black nib. + /// + public const string BlackNib = "\U00002712"; + + /// + /// Gets the "black_small_square" emoji. + /// Description: Black small square. + /// + public const string BlackSmallSquare = "\U000025AA"; + + /// + /// Gets the "black_square_button" emoji. + /// Description: Black square button. + /// + public const string BlackSquareButton = "\U0001F532"; + + /// + /// Gets the "blossom" emoji. + /// Description: Blossom. + /// + public const string Blossom = "\U0001F33C"; + + /// + /// Gets the "blowfish" emoji. + /// Description: Blowfish. + /// + public const string Blowfish = "\U0001F421"; + + /// + /// Gets the "blueberries" emoji. + /// Description: Blueberries. + /// + public const string Blueberries = "\U0001FAD0"; + + /// + /// Gets the "blue_book" emoji. + /// Description: Blue book. + /// + public const string BlueBook = "\U0001F4D8"; + + /// + /// Gets the "blue_circle" emoji. + /// Description: Blue circle. + /// + public const string BlueCircle = "\U0001F535"; + + /// + /// Gets the "blue_heart" emoji. + /// Description: Blue heart. + /// + public const string BlueHeart = "\U0001F499"; + + /// + /// Gets the "blue_square" emoji. + /// Description: Blue square. + /// + public const string BlueSquare = "\U0001F7E6"; + + /// + /// Gets the "boar" emoji. + /// Description: Boar. + /// + public const string Boar = "\U0001F417"; + + /// + /// Gets the "bomb" emoji. + /// Description: Bomb. + /// + public const string Bomb = "\U0001F4A3"; + + /// + /// Gets the "bone" emoji. + /// Description: Bone. + /// + public const string Bone = "\U0001F9B4"; + + /// + /// Gets the "bookmark" emoji. + /// Description: Bookmark. + /// + public const string Bookmark = "\U0001F516"; + + /// + /// Gets the "bookmark_tabs" emoji. + /// Description: Bookmark tabs. + /// + public const string BookmarkTabs = "\U0001F4D1"; + + /// + /// Gets the "books" emoji. + /// Description: Books. + /// + public const string Books = "\U0001F4DA"; + + /// + /// Gets the "boomerang" emoji. + /// Description: Boomerang. + /// + public const string Boomerang = "\U0001FA83"; + + /// + /// Gets the "bottle_with_popping_cork" emoji. + /// Description: Bottle with popping cork. + /// + public const string BottleWithPoppingCork = "\U0001F37E"; + + /// + /// Gets the "bouquet" emoji. + /// Description: Bouquet. + /// + public const string Bouquet = "\U0001F490"; + + /// + /// Gets the "bow_and_arrow" emoji. + /// Description: Bow and arrow. + /// + public const string BowAndArrow = "\U0001F3F9"; + + /// + /// Gets the "bowling" emoji. + /// Description: Bowling. + /// + public const string Bowling = "\U0001F3B3"; + + /// + /// Gets the "bowl_with_spoon" emoji. + /// Description: Bowl with spoon. + /// + public const string BowlWithSpoon = "\U0001F963"; + + /// + /// Gets the "boxing_glove" emoji. + /// Description: Boxing glove. + /// + public const string BoxingGlove = "\U0001F94A"; + + /// + /// Gets the "boy" emoji. + /// Description: Boy. + /// + public const string Boy = "\U0001F466"; + + /// + /// Gets the "brain" emoji. + /// Description: Brain. + /// + public const string Brain = "\U0001F9E0"; + + /// + /// Gets the "bread" emoji. + /// Description: Bread. + /// + public const string Bread = "\U0001F35E"; + + /// + /// Gets the "breast_feeding" emoji. + /// Description: breast feeding. + /// + public const string BreastFeeding = "\U0001F931"; + + /// + /// Gets the "brick" emoji. + /// Description: Brick. + /// + public const string Brick = "\U0001F9F1"; + + /// + /// Gets the "bridge_at_night" emoji. + /// Description: Bridge at night. + /// + public const string BridgeAtNight = "\U0001F309"; + + /// + /// Gets the "briefcase" emoji. + /// Description: Briefcase. + /// + public const string Briefcase = "\U0001F4BC"; + + /// + /// Gets the "briefs" emoji. + /// Description: Briefs. + /// + public const string Briefs = "\U0001FA72"; + + /// + /// Gets the "bright_button" emoji. + /// Description: Bright button. + /// + public const string BrightButton = "\U0001F506"; + + /// + /// Gets the "broccoli" emoji. + /// Description: Broccoli. + /// + public const string Broccoli = "\U0001F966"; + + /// + /// Gets the "broken_heart" emoji. + /// Description: Broken heart. + /// + public const string BrokenHeart = "\U0001F494"; + + /// + /// Gets the "broom" emoji. + /// Description: Broom. + /// + public const string Broom = "\U0001F9F9"; + + /// + /// Gets the "brown_circle" emoji. + /// Description: Brown circle. + /// + public const string BrownCircle = "\U0001F7E4"; + + /// + /// Gets the "brown_heart" emoji. + /// Description: Brown heart. + /// + public const string BrownHeart = "\U0001F90E"; + + /// + /// Gets the "brown_square" emoji. + /// Description: Brown square. + /// + public const string BrownSquare = "\U0001F7EB"; + + /// + /// Gets the "bubble_tea" emoji. + /// Description: Bubble tea. + /// + public const string BubbleTea = "\U0001F9CB"; + + /// + /// Gets the "bucket" emoji. + /// Description: Bucket. + /// + public const string Bucket = "\U0001FAA3"; + + /// + /// Gets the "bug" emoji. + /// Description: Bug. + /// + public const string Bug = "\U0001F41B"; + + /// + /// Gets the "building_construction" emoji. + /// Description: Building construction. + /// + public const string BuildingConstruction = "\U0001F3D7"; + + /// + /// Gets the "bullet_train" emoji. + /// Description: Bullet train. + /// + public const string BulletTrain = "\U0001F685"; + + /// + /// Gets the "bullseye" emoji. + /// Description: Bullseye. + /// + public const string Bullseye = "\U0001F3AF"; + + /// + /// Gets the "burrito" emoji. + /// Description: Burrito. + /// + public const string Burrito = "\U0001F32F"; + + /// + /// Gets the "bus" emoji. + /// Description: Bus. + /// + public const string Bus = "\U0001F68C"; + + /// + /// Gets the "bus_stop" emoji. + /// Description: Bus stop. + /// + public const string BusStop = "\U0001F68F"; + + /// + /// Gets the "bust_in_silhouette" emoji. + /// Description: Bust in silhouette. + /// + public const string BustInSilhouette = "\U0001F464"; + + /// + /// Gets the "busts_in_silhouette" emoji. + /// Description: Busts in silhouette. + /// + public const string BustsInSilhouette = "\U0001F465"; + + /// + /// Gets the "butter" emoji. + /// Description: Butter. + /// + public const string Butter = "\U0001F9C8"; + + /// + /// Gets the "butterfly" emoji. + /// Description: Butterfly. + /// + public const string Butterfly = "\U0001F98B"; + + /// + /// Gets the "cactus" emoji. + /// Description: Cactus. + /// + public const string Cactus = "\U0001F335"; + + /// + /// Gets the "calendar" emoji. + /// Description: Calendar. + /// + public const string Calendar = "\U0001F4C5"; + + /// + /// Gets the "call_me_hand" emoji. + /// Description: Call me hand. + /// + public const string CallMeHand = "\U0001F919"; + + /// + /// Gets the "camel" emoji. + /// Description: Camel. + /// + public const string Camel = "\U0001F42A"; + + /// + /// Gets the "camera" emoji. + /// Description: Camera. + /// + public const string Camera = "\U0001F4F7"; + + /// + /// Gets the "camera_with_flash" emoji. + /// Description: Camera with flash. + /// + public const string CameraWithFlash = "\U0001F4F8"; + + /// + /// Gets the "camping" emoji. + /// Description: Camping. + /// + public const string Camping = "\U0001F3D5"; + + /// + /// Gets the "cancer" emoji. + /// Description: Cancer. + /// + public const string Cancer = "\U0000264B"; + + /// + /// Gets the "candle" emoji. + /// Description: Candle. + /// + public const string Candle = "\U0001F56F"; + + /// + /// Gets the "candy" emoji. + /// Description: Candy. + /// + public const string Candy = "\U0001F36C"; + + /// + /// Gets the "canned_food" emoji. + /// Description: Canned food. + /// + public const string CannedFood = "\U0001F96B"; + + /// + /// Gets the "canoe" emoji. + /// Description: Canoe. + /// + public const string Canoe = "\U0001F6F6"; + + /// + /// Gets the "capricorn" emoji. + /// Description: Capricorn. + /// + public const string Capricorn = "\U00002651"; + + /// + /// Gets the "card_file_box" emoji. + /// Description: Card file box. + /// + public const string CardFileBox = "\U0001F5C3"; + + /// + /// Gets the "card_index" emoji. + /// Description: Card index. + /// + public const string CardIndex = "\U0001F4C7"; + + /// + /// Gets the "card_index_dividers" emoji. + /// Description: Card index dividers. + /// + public const string CardIndexDividers = "\U0001F5C2"; + + /// + /// Gets the "carousel_horse" emoji. + /// Description: Carousel horse. + /// + public const string CarouselHorse = "\U0001F3A0"; + + /// + /// Gets the "carpentry_saw" emoji. + /// Description: Carpentry saw. + /// + public const string CarpentrySaw = "\U0001FA9A"; + + /// + /// Gets the "carp_streamer" emoji. + /// Description: Carp streamer. + /// + public const string CarpStreamer = "\U0001F38F"; + + /// + /// Gets the "carrot" emoji. + /// Description: Carrot. + /// + public const string Carrot = "\U0001F955"; + + /// + /// Gets the "castle" emoji. + /// Description: Castle. + /// + public const string Castle = "\U0001F3F0"; + + /// + /// Gets the "cat" emoji. + /// Description: Cat. + /// + public const string Cat = "\U0001F408"; + + /// + /// Gets the "cat_face" emoji. + /// Description: Cat face. + /// + public const string CatFace = "\U0001F431"; + + /// + /// Gets the "cat_with_tears_of_joy" emoji. + /// Description: Cat with tears of joy. + /// + public const string CatWithTearsOfJoy = "\U0001F639"; + + /// + /// Gets the "cat_with_wry_smile" emoji. + /// Description: Cat with wry smile. + /// + public const string CatWithWrySmile = "\U0001F63C"; + + /// + /// Gets the "chains" emoji. + /// Description: Chains. + /// + public const string Chains = "\U000026D3"; + + /// + /// Gets the "chair" emoji. + /// Description: Chair. + /// + public const string Chair = "\U0001FA91"; + + /// + /// Gets the "chart_decreasing" emoji. + /// Description: Chart decreasing. + /// + public const string ChartDecreasing = "\U0001F4C9"; + + /// + /// Gets the "chart_increasing" emoji. + /// Description: Chart increasing. + /// + public const string ChartIncreasing = "\U0001F4C8"; + + /// + /// Gets the "chart_increasing_with_yen" emoji. + /// Description: Chart increasing with yen. + /// + public const string ChartIncreasingWithYen = "\U0001F4B9"; + + /// + /// Gets the "check_box_with_check" emoji. + /// Description: Check box with check. + /// + public const string CheckBoxWithCheck = "\U00002611"; + + /// + /// Gets the "check_mark" emoji. + /// Description: Check mark. + /// + public const string CheckMark = "\U00002714"; + + /// + /// Gets the "check_mark_button" emoji. + /// Description: Check mark button. + /// + public const string CheckMarkButton = "\U00002705"; + + /// + /// Gets the "cheese_wedge" emoji. + /// Description: Cheese wedge. + /// + public const string CheeseWedge = "\U0001F9C0"; + + /// + /// Gets the "chequered_flag" emoji. + /// Description: Chequered flag. + /// + public const string ChequeredFlag = "\U0001F3C1"; + + /// + /// Gets the "cherries" emoji. + /// Description: Cherries. + /// + public const string Cherries = "\U0001F352"; + + /// + /// Gets the "cherry_blossom" emoji. + /// Description: Cherry blossom. + /// + public const string CherryBlossom = "\U0001F338"; + + /// + /// Gets the "chess_pawn" emoji. + /// Description: Chess pawn. + /// + public const string ChessPawn = "\U0000265F"; + + /// + /// Gets the "chestnut" emoji. + /// Description: Chestnut. + /// + public const string Chestnut = "\U0001F330"; + + /// + /// Gets the "chicken" emoji. + /// Description: Chicken. + /// + public const string Chicken = "\U0001F414"; + + /// + /// Gets the "child" emoji. + /// Description: Child. + /// + public const string Child = "\U0001F9D2"; + + /// + /// Gets the "children_crossing" emoji. + /// Description: Children crossing. + /// + public const string ChildrenCrossing = "\U0001F6B8"; + + /// + /// Gets the "chipmunk" emoji. + /// Description: Chipmunk. + /// + public const string Chipmunk = "\U0001F43F"; + + /// + /// Gets the "chocolate_bar" emoji. + /// Description: Chocolate bar. + /// + public const string ChocolateBar = "\U0001F36B"; + + /// + /// Gets the "chopsticks" emoji. + /// Description: Chopsticks. + /// + public const string Chopsticks = "\U0001F962"; + + /// + /// Gets the "christmas_tree" emoji. + /// Description: Christmas tree. + /// + public const string ChristmasTree = "\U0001F384"; + + /// + /// Gets the "church" emoji. + /// Description: Church. + /// + public const string Church = "\U000026EA"; + + /// + /// Gets the "cigarette" emoji. + /// Description: Cigarette. + /// + public const string Cigarette = "\U0001F6AC"; + + /// + /// Gets the "cinema" emoji. + /// Description: Cinema. + /// + public const string Cinema = "\U0001F3A6"; + + /// + /// Gets the "circled_m" emoji. + /// Description: Circled M. + /// + public const string CircledM = "\U000024C2"; + + /// + /// Gets the "circus_tent" emoji. + /// Description: Circus tent. + /// + public const string CircusTent = "\U0001F3AA"; + + /// + /// Gets the "cityscape" emoji. + /// Description: Cityscape. + /// + public const string Cityscape = "\U0001F3D9"; + + /// + /// Gets the "cityscape_at_dusk" emoji. + /// Description: Cityscape at dusk. + /// + public const string CityscapeAtDusk = "\U0001F306"; + + /// + /// Gets the "clamp" emoji. + /// Description: Clamp. + /// + public const string Clamp = "\U0001F5DC"; + + /// + /// Gets the "clapper_board" emoji. + /// Description: Clapper board. + /// + public const string ClapperBoard = "\U0001F3AC"; + + /// + /// Gets the "clapping_hands" emoji. + /// Description: Clapping hands. + /// + public const string ClappingHands = "\U0001F44F"; + + /// + /// Gets the "classical_building" emoji. + /// Description: Classical building. + /// + public const string ClassicalBuilding = "\U0001F3DB"; + + /// + /// Gets the "cl_button" emoji. + /// Description: CL button. + /// + public const string ClButton = "\U0001F191"; + + /// + /// Gets the "clinking_beer_mugs" emoji. + /// Description: Clinking beer mugs. + /// + public const string ClinkingBeerMugs = "\U0001F37B"; + + /// + /// Gets the "clinking_glasses" emoji. + /// Description: Clinking glasses. + /// + public const string ClinkingGlasses = "\U0001F942"; + + /// + /// Gets the "clipboard" emoji. + /// Description: Clipboard. + /// + public const string Clipboard = "\U0001F4CB"; + + /// + /// Gets the "clockwise_vertical_arrows" emoji. + /// Description: Clockwise vertical arrows. + /// + public const string ClockwiseVerticalArrows = "\U0001F503"; + + /// + /// Gets the "closed_book" emoji. + /// Description: Closed book. + /// + public const string ClosedBook = "\U0001F4D5"; + + /// + /// Gets the "closed_mailbox_with_lowered_flag" emoji. + /// Description: Closed mailbox with lowered flag. + /// + public const string ClosedMailboxWithLoweredFlag = "\U0001F4EA"; + + /// + /// Gets the "closed_mailbox_with_raised_flag" emoji. + /// Description: Closed mailbox with raised flag. + /// + public const string ClosedMailboxWithRaisedFlag = "\U0001F4EB"; + + /// + /// Gets the "closed_umbrella" emoji. + /// Description: Closed umbrella. + /// + public const string ClosedUmbrella = "\U0001F302"; + + /// + /// Gets the "cloud" emoji. + /// Description: Cloud. + /// + public const string Cloud = "\U00002601"; + + /// + /// Gets the "cloud_with_lightning" emoji. + /// Description: Cloud with lightning. + /// + public const string CloudWithLightning = "\U0001F329"; + + /// + /// Gets the "cloud_with_lightning_and_rain" emoji. + /// Description: Cloud with lightning and rain. + /// + public const string CloudWithLightningAndRain = "\U000026C8"; + + /// + /// Gets the "cloud_with_rain" emoji. + /// Description: Cloud with rain. + /// + public const string CloudWithRain = "\U0001F327"; + + /// + /// Gets the "cloud_with_snow" emoji. + /// Description: Cloud with snow. + /// + public const string CloudWithSnow = "\U0001F328"; + + /// + /// Gets the "clown_face" emoji. + /// Description: Clown face. + /// + public const string ClownFace = "\U0001F921"; + + /// + /// Gets the "club_suit" emoji. + /// Description: Club suit. + /// + public const string ClubSuit = "\U00002663"; + + /// + /// Gets the "clutch_bag" emoji. + /// Description: Clutch bag. + /// + public const string ClutchBag = "\U0001F45D"; + + /// + /// Gets the "coat" emoji. + /// Description: Coat. + /// + public const string Coat = "\U0001F9E5"; + + /// + /// Gets the "cockroach" emoji. + /// Description: Cockroach. + /// + public const string Cockroach = "\U0001FAB3"; + + /// + /// Gets the "cocktail_glass" emoji. + /// Description: Cocktail glass. + /// + public const string CocktailGlass = "\U0001F378"; + + /// + /// Gets the "coconut" emoji. + /// Description: Coconut. + /// + public const string Coconut = "\U0001F965"; + + /// + /// Gets the "coffin" emoji. + /// Description: Coffin. + /// + public const string Coffin = "\U000026B0"; + + /// + /// Gets the "coin" emoji. + /// Description: Coin. + /// + public const string Coin = "\U0001FA99"; + + /// + /// Gets the "cold_face" emoji. + /// Description: Cold face. + /// + public const string ColdFace = "\U0001F976"; + + /// + /// Gets the "collision" emoji. + /// Description: Collision. + /// + public const string Collision = "\U0001F4A5"; + + /// + /// Gets the "comet" emoji. + /// Description: Comet. + /// + public const string Comet = "\U00002604"; + + /// + /// Gets the "compass" emoji. + /// Description: Compass. + /// + public const string Compass = "\U0001F9ED"; + + /// + /// Gets the "computer_disk" emoji. + /// Description: Computer disk. + /// + public const string ComputerDisk = "\U0001F4BD"; + + /// + /// Gets the "computer_mouse" emoji. + /// Description: Computer mouse. + /// + public const string ComputerMouse = "\U0001F5B1"; + + /// + /// Gets the "confetti_ball" emoji. + /// Description: Confetti ball. + /// + public const string ConfettiBall = "\U0001F38A"; + + /// + /// Gets the "confounded_face" emoji. + /// Description: Confounded face. + /// + public const string ConfoundedFace = "\U0001F616"; + + /// + /// Gets the "confused_face" emoji. + /// Description: Confused face. + /// + public const string ConfusedFace = "\U0001F615"; + + /// + /// Gets the "construction" emoji. + /// Description: Construction. + /// + public const string Construction = "\U0001F6A7"; + + /// + /// Gets the "construction_worker" emoji. + /// Description: Construction worker. + /// + public const string ConstructionWorker = "\U0001F477"; + + /// + /// Gets the "control_knobs" emoji. + /// Description: Control knobs. + /// + public const string ControlKnobs = "\U0001F39B"; + + /// + /// Gets the "convenience_store" emoji. + /// Description: Convenience store. + /// + public const string ConvenienceStore = "\U0001F3EA"; + + /// + /// Gets the "cooked_rice" emoji. + /// Description: Cooked rice. + /// + public const string CookedRice = "\U0001F35A"; + + /// + /// Gets the "cookie" emoji. + /// Description: Cookie. + /// + public const string Cookie = "\U0001F36A"; + + /// + /// Gets the "cooking" emoji. + /// Description: Cooking. + /// + public const string Cooking = "\U0001F373"; + + /// + /// Gets the "cool_button" emoji. + /// Description: COOL button. + /// + public const string CoolButton = "\U0001F192"; + + /// + /// Gets the "copyright" emoji. + /// Description: Copyright. + /// + public const string Copyright = "\U000000A9"; + + /// + /// Gets the "couch_and_lamp" emoji. + /// Description: Couch and lamp. + /// + public const string CouchAndLamp = "\U0001F6CB"; + + /// + /// Gets the "counterclockwise_arrows_button" emoji. + /// Description: Counterclockwise arrows button. + /// + public const string CounterclockwiseArrowsButton = "\U0001F504"; + + /// + /// Gets the "couple_with_heart" emoji. + /// Description: Couple with heart. + /// + public const string CoupleWithHeart = "\U0001F491"; + + /// + /// Gets the "cow" emoji. + /// Description: Cow. + /// + public const string Cow = "\U0001F404"; + + /// + /// Gets the "cowboy_hat_face" emoji. + /// Description: Cowboy hat face. + /// + public const string CowboyHatFace = "\U0001F920"; + + /// + /// Gets the "cow_face" emoji. + /// Description: Cow face. + /// + public const string CowFace = "\U0001F42E"; + + /// + /// Gets the "crab" emoji. + /// Description: Crab. + /// + public const string Crab = "\U0001F980"; + + /// + /// Gets the "crayon" emoji. + /// Description: Crayon. + /// + public const string Crayon = "\U0001F58D"; + + /// + /// Gets the "credit_card" emoji. + /// Description: Credit card. + /// + public const string CreditCard = "\U0001F4B3"; + + /// + /// Gets the "crescent_moon" emoji. + /// Description: Crescent moon. + /// + public const string CrescentMoon = "\U0001F319"; + + /// + /// Gets the "cricket" emoji. + /// Description: Cricket. + /// + public const string Cricket = "\U0001F997"; + + /// + /// Gets the "cricket_game" emoji. + /// Description: Cricket game. + /// + public const string CricketGame = "\U0001F3CF"; + + /// + /// Gets the "crocodile" emoji. + /// Description: Crocodile. + /// + public const string Crocodile = "\U0001F40A"; + + /// + /// Gets the "croissant" emoji. + /// Description: Croissant. + /// + public const string Croissant = "\U0001F950"; + + /// + /// Gets the "crossed_fingers" emoji. + /// Description: Crossed fingers. + /// + public const string CrossedFingers = "\U0001F91E"; + + /// + /// Gets the "crossed_flags" emoji. + /// Description: Crossed flags. + /// + public const string CrossedFlags = "\U0001F38C"; + + /// + /// Gets the "crossed_swords" emoji. + /// Description: Crossed swords. + /// + public const string CrossedSwords = "\U00002694"; + + /// + /// Gets the "cross_mark" emoji. + /// Description: Cross mark. + /// + public const string CrossMark = "\U0000274C"; + + /// + /// Gets the "cross_mark_button" emoji. + /// Description: Cross mark button. + /// + public const string CrossMarkButton = "\U0000274E"; + + /// + /// Gets the "crown" emoji. + /// Description: Crown. + /// + public const string Crown = "\U0001F451"; + + /// + /// Gets the "crying_cat" emoji. + /// Description: Crying cat. + /// + public const string CryingCat = "\U0001F63F"; + + /// + /// Gets the "crying_face" emoji. + /// Description: Crying face. + /// + public const string CryingFace = "\U0001F622"; + + /// + /// Gets the "crystal_ball" emoji. + /// Description: Crystal ball. + /// + public const string CrystalBall = "\U0001F52E"; + + /// + /// Gets the "cucumber" emoji. + /// Description: Cucumber. + /// + public const string Cucumber = "\U0001F952"; + + /// + /// Gets the "cupcake" emoji. + /// Description: Cupcake. + /// + public const string Cupcake = "\U0001F9C1"; + + /// + /// Gets the "cup_with_straw" emoji. + /// Description: Cup with straw. + /// + public const string CupWithStraw = "\U0001F964"; + + /// + /// Gets the "curling_stone" emoji. + /// Description: Curling stone. + /// + public const string CurlingStone = "\U0001F94C"; + + /// + /// Gets the "curly_hair" emoji. + /// Description: Curly hair. + /// + public const string CurlyHair = "\U0001F9B1"; + + /// + /// Gets the "curly_loop" emoji. + /// Description: Curly loop. + /// + public const string CurlyLoop = "\U000027B0"; + + /// + /// Gets the "currency_exchange" emoji. + /// Description: Currency exchange. + /// + public const string CurrencyExchange = "\U0001F4B1"; + + /// + /// Gets the "curry_rice" emoji. + /// Description: Curry rice. + /// + public const string CurryRice = "\U0001F35B"; + + /// + /// Gets the "custard" emoji. + /// Description: Custard. + /// + public const string Custard = "\U0001F36E"; + + /// + /// Gets the "customs" emoji. + /// Description: Customs. + /// + public const string Customs = "\U0001F6C3"; + + /// + /// Gets the "cut_of_meat" emoji. + /// Description: Cut of meat. + /// + public const string CutOfMeat = "\U0001F969"; + + /// + /// Gets the "cyclone" emoji. + /// Description: Cyclone. + /// + public const string Cyclone = "\U0001F300"; + + /// + /// Gets the "dagger" emoji. + /// Description: Dagger. + /// + public const string Dagger = "\U0001F5E1"; + + /// + /// Gets the "dango" emoji. + /// Description: Dango. + /// + public const string Dango = "\U0001F361"; + + /// + /// Gets the "dashing_away" emoji. + /// Description: Dashing away. + /// + public const string DashingAway = "\U0001F4A8"; + + /// + /// Gets the "deaf_person" emoji. + /// Description: Deaf person. + /// + public const string DeafPerson = "\U0001F9CF"; + + /// + /// Gets the "deciduous_tree" emoji. + /// Description: Deciduous tree. + /// + public const string DeciduousTree = "\U0001F333"; + + /// + /// Gets the "deer" emoji. + /// Description: Deer. + /// + public const string Deer = "\U0001F98C"; + + /// + /// Gets the "delivery_truck" emoji. + /// Description: Delivery truck. + /// + public const string DeliveryTruck = "\U0001F69A"; + + /// + /// Gets the "department_store" emoji. + /// Description: Department store. + /// + public const string DepartmentStore = "\U0001F3EC"; + + /// + /// Gets the "derelict_house" emoji. + /// Description: Derelict house. + /// + public const string DerelictHouse = "\U0001F3DA"; + + /// + /// Gets the "desert" emoji. + /// Description: Desert. + /// + public const string Desert = "\U0001F3DC"; + + /// + /// Gets the "desert_island" emoji. + /// Description: Desert island. + /// + public const string DesertIsland = "\U0001F3DD"; + + /// + /// Gets the "desktop_computer" emoji. + /// Description: Desktop computer. + /// + public const string DesktopComputer = "\U0001F5A5"; + + /// + /// Gets the "detective" emoji. + /// Description: Detective. + /// + public const string Detective = "\U0001F575"; + + /// + /// Gets the "diamond_suit" emoji. + /// Description: Diamond suit. + /// + public const string DiamondSuit = "\U00002666"; + + /// + /// Gets the "diamond_with_a_dot" emoji. + /// Description: Diamond with a dot. + /// + public const string DiamondWithADot = "\U0001F4A0"; + + /// + /// Gets the "dim_button" emoji. + /// Description: Dim button. + /// + public const string DimButton = "\U0001F505"; + + /// + /// Gets the "disappointed_face" emoji. + /// Description: Disappointed face. + /// + public const string DisappointedFace = "\U0001F61E"; + + /// + /// Gets the "disguised_face" emoji. + /// Description: Disguised face. + /// + public const string DisguisedFace = "\U0001F978"; + + /// + /// Gets the "divide" emoji. + /// Description: Divide. + /// + public const string Divide = "\U00002797"; + + /// + /// Gets the "diving_mask" emoji. + /// Description: Diving mask. + /// + public const string DivingMask = "\U0001F93F"; + + /// + /// Gets the "diya_lamp" emoji. + /// Description: Diya lamp. + /// + public const string DiyaLamp = "\U0001FA94"; + + /// + /// Gets the "dizzy" emoji. + /// Description: Dizzy. + /// + public const string Dizzy = "\U0001F4AB"; + + /// + /// Gets the "dna" emoji. + /// Description: Dna. + /// + public const string Dna = "\U0001F9EC"; + + /// + /// Gets the "dodo" emoji. + /// Description: Dodo. + /// + public const string Dodo = "\U0001F9A4"; + + /// + /// Gets the "dog" emoji. + /// Description: Dog. + /// + public const string Dog = "\U0001F415"; + + /// + /// Gets the "dog_face" emoji. + /// Description: Dog face. + /// + public const string DogFace = "\U0001F436"; + + /// + /// Gets the "dollar_banknote" emoji. + /// Description: Dollar banknote. + /// + public const string DollarBanknote = "\U0001F4B5"; + + /// + /// Gets the "dolphin" emoji. + /// Description: Dolphin. + /// + public const string Dolphin = "\U0001F42C"; + + /// + /// Gets the "door" emoji. + /// Description: Door. + /// + public const string Door = "\U0001F6AA"; + + /// + /// Gets the "dotted_six_pointed_star" emoji. + /// Description: dotted six pointed star. + /// + public const string DottedSixPointedStar = "\U0001F52F"; + + /// + /// Gets the "double_curly_loop" emoji. + /// Description: Double curly loop. + /// + public const string DoubleCurlyLoop = "\U000027BF"; + + /// + /// Gets the "double_exclamation_mark" emoji. + /// Description: Double exclamation mark. + /// + public const string DoubleExclamationMark = "\U0000203C"; + + /// + /// Gets the "doughnut" emoji. + /// Description: Doughnut. + /// + public const string Doughnut = "\U0001F369"; + + /// + /// Gets the "dove" emoji. + /// Description: Dove. + /// + public const string Dove = "\U0001F54A"; + + /// + /// Gets the "down_arrow" emoji. + /// Description: Down arrow. + /// + public const string DownArrow = "\U00002B07"; + + /// + /// Gets the "downcast_face_with_sweat" emoji. + /// Description: Downcast face with sweat. + /// + public const string DowncastFaceWithSweat = "\U0001F613"; + + /// + /// Gets the "down_left_arrow" emoji. + /// Description: down left arrow. + /// + public const string DownLeftArrow = "\U00002199"; + + /// + /// Gets the "down_right_arrow" emoji. + /// Description: down right arrow. + /// + public const string DownRightArrow = "\U00002198"; + + /// + /// Gets the "downwards_button" emoji. + /// Description: Downwards button. + /// + public const string DownwardsButton = "\U0001F53D"; + + /// + /// Gets the "dragon" emoji. + /// Description: Dragon. + /// + public const string Dragon = "\U0001F409"; + + /// + /// Gets the "dragon_face" emoji. + /// Description: Dragon face. + /// + public const string DragonFace = "\U0001F432"; + + /// + /// Gets the "dress" emoji. + /// Description: Dress. + /// + public const string Dress = "\U0001F457"; + + /// + /// Gets the "drooling_face" emoji. + /// Description: Drooling face. + /// + public const string DroolingFace = "\U0001F924"; + + /// + /// Gets the "droplet" emoji. + /// Description: Droplet. + /// + public const string Droplet = "\U0001F4A7"; + + /// + /// Gets the "drop_of_blood" emoji. + /// Description: Drop of blood. + /// + public const string DropOfBlood = "\U0001FA78"; + + /// + /// Gets the "drum" emoji. + /// Description: Drum. + /// + public const string Drum = "\U0001F941"; + + /// + /// Gets the "duck" emoji. + /// Description: Duck. + /// + public const string Duck = "\U0001F986"; + + /// + /// Gets the "dumpling" emoji. + /// Description: Dumpling. + /// + public const string Dumpling = "\U0001F95F"; + + /// + /// Gets the "dvd" emoji. + /// Description: Dvd. + /// + public const string Dvd = "\U0001F4C0"; + + /// + /// Gets the "eagle" emoji. + /// Description: Eagle. + /// + public const string Eagle = "\U0001F985"; + + /// + /// Gets the "ear" emoji. + /// Description: Ear. + /// + public const string Ear = "\U0001F442"; + + /// + /// Gets the "ear_of_corn" emoji. + /// Description: Ear of corn. + /// + public const string EarOfCorn = "\U0001F33D"; + + /// + /// Gets the "ear_with_hearing_aid" emoji. + /// Description: Ear with hearing aid. + /// + public const string EarWithHearingAid = "\U0001F9BB"; + + /// + /// Gets the "egg" emoji. + /// Description: Egg. + /// + public const string Egg = "\U0001F95A"; + + /// + /// Gets the "eggplant" emoji. + /// Description: Eggplant. + /// + public const string Eggplant = "\U0001F346"; + + /// + /// Gets the "eight_o_clock" emoji. + /// Description: Eight o clock. + /// + public const string EightOClock = "\U0001F557"; + + /// + /// Gets the "eight_pointed_star" emoji. + /// Description: eight pointed star. + /// + public const string EightPointedStar = "\U00002734"; + + /// + /// Gets the "eight_spoked_asterisk" emoji. + /// Description: eight spoked asterisk. + /// + public const string EightSpokedAsterisk = "\U00002733"; + + /// + /// Gets the "eight_thirty" emoji. + /// Description: eight thirty. + /// + public const string EightThirty = "\U0001F563"; + + /// + /// Gets the "eject_button" emoji. + /// Description: Eject button. + /// + public const string EjectButton = "\U000023CF"; + + /// + /// Gets the "electric_plug" emoji. + /// Description: Electric plug. + /// + public const string ElectricPlug = "\U0001F50C"; + + /// + /// Gets the "elephant" emoji. + /// Description: Elephant. + /// + public const string Elephant = "\U0001F418"; + + /// + /// Gets the "elevator" emoji. + /// Description: Elevator. + /// + public const string Elevator = "\U0001F6D7"; + + /// + /// Gets the "eleven_o_clock" emoji. + /// Description: Eleven o clock. + /// + public const string ElevenOClock = "\U0001F55A"; + + /// + /// Gets the "eleven_thirty" emoji. + /// Description: eleven thirty. + /// + public const string ElevenThirty = "\U0001F566"; + + /// + /// Gets the "elf" emoji. + /// Description: Elf. + /// + public const string Elf = "\U0001F9DD"; + + /// + /// Gets the "e_mail" emoji. + /// Description: e mail. + /// + public const string EMail = "\U0001F4E7"; + + /// + /// Gets the "end_arrow" emoji. + /// Description: END arrow. + /// + public const string EndArrow = "\U0001F51A"; + + /// + /// Gets the "envelope" emoji. + /// Description: Envelope. + /// + public const string Envelope = "\U00002709"; + + /// + /// Gets the "envelope_with_arrow" emoji. + /// Description: Envelope with arrow. + /// + public const string EnvelopeWithArrow = "\U0001F4E9"; + + /// + /// Gets the "euro_banknote" emoji. + /// Description: Euro banknote. + /// + public const string EuroBanknote = "\U0001F4B6"; + + /// + /// Gets the "evergreen_tree" emoji. + /// Description: Evergreen tree. + /// + public const string EvergreenTree = "\U0001F332"; + + /// + /// Gets the "ewe" emoji. + /// Description: Ewe. + /// + public const string Ewe = "\U0001F411"; + + /// + /// Gets the "exclamation_question_mark" emoji. + /// Description: Exclamation question mark. + /// + public const string ExclamationQuestionMark = "\U00002049"; + + /// + /// Gets the "exploding_head" emoji. + /// Description: Exploding head. + /// + public const string ExplodingHead = "\U0001F92F"; + + /// + /// Gets the "expressionless_face" emoji. + /// Description: Expressionless face. + /// + public const string ExpressionlessFace = "\U0001F611"; + + /// + /// Gets the "eye" emoji. + /// Description: Eye. + /// + public const string Eye = "\U0001F441"; + + /// + /// Gets the "eyes" emoji. + /// Description: Eyes. + /// + public const string Eyes = "\U0001F440"; + + /// + /// Gets the "face_blowing_a_kiss" emoji. + /// Description: Face blowing a kiss. + /// + public const string FaceBlowingAKiss = "\U0001F618"; + + /// + /// Gets the "face_savoring_food" emoji. + /// Description: Face savoring food. + /// + public const string FaceSavoringFood = "\U0001F60B"; + + /// + /// Gets the "face_screaming_in_fear" emoji. + /// Description: Face screaming in fear. + /// + public const string FaceScreamingInFear = "\U0001F631"; + + /// + /// Gets the "face_vomiting" emoji. + /// Description: Face vomiting. + /// + public const string FaceVomiting = "\U0001F92E"; + + /// + /// Gets the "face_with_hand_over_mouth" emoji. + /// Description: Face with hand over mouth. + /// + public const string FaceWithHandOverMouth = "\U0001F92D"; + + /// + /// Gets the "face_with_head_bandage" emoji. + /// Description: face with head bandage. + /// + public const string FaceWithHeadBandage = "\U0001F915"; + + /// + /// Gets the "face_with_medical_mask" emoji. + /// Description: Face with medical mask. + /// + public const string FaceWithMedicalMask = "\U0001F637"; + + /// + /// Gets the "face_with_monocle" emoji. + /// Description: Face with monocle. + /// + public const string FaceWithMonocle = "\U0001F9D0"; + + /// + /// Gets the "face_with_open_mouth" emoji. + /// Description: Face with open mouth. + /// + public const string FaceWithOpenMouth = "\U0001F62E"; + + /// + /// Gets the "face_without_mouth" emoji. + /// Description: Face without mouth. + /// + public const string FaceWithoutMouth = "\U0001F636"; + + /// + /// Gets the "face_with_raised_eyebrow" emoji. + /// Description: Face with raised eyebrow. + /// + public const string FaceWithRaisedEyebrow = "\U0001F928"; + + /// + /// Gets the "face_with_rolling_eyes" emoji. + /// Description: Face with rolling eyes. + /// + public const string FaceWithRollingEyes = "\U0001F644"; + + /// + /// Gets the "face_with_steam_from_nose" emoji. + /// Description: Face with steam from nose. + /// + public const string FaceWithSteamFromNose = "\U0001F624"; + + /// + /// Gets the "face_with_symbols_on_mouth" emoji. + /// Description: Face with symbols on mouth. + /// + public const string FaceWithSymbolsOnMouth = "\U0001F92C"; + + /// + /// Gets the "face_with_tears_of_joy" emoji. + /// Description: Face with tears of joy. + /// + public const string FaceWithTearsOfJoy = "\U0001F602"; + + /// + /// Gets the "face_with_thermometer" emoji. + /// Description: Face with thermometer. + /// + public const string FaceWithThermometer = "\U0001F912"; + + /// + /// Gets the "face_with_tongue" emoji. + /// Description: Face with tongue. + /// + public const string FaceWithTongue = "\U0001F61B"; + + /// + /// Gets the "factory" emoji. + /// Description: Factory. + /// + public const string Factory = "\U0001F3ED"; + + /// + /// Gets the "fairy" emoji. + /// Description: Fairy. + /// + public const string Fairy = "\U0001F9DA"; + + /// + /// Gets the "falafel" emoji. + /// Description: Falafel. + /// + public const string Falafel = "\U0001F9C6"; + + /// + /// Gets the "fallen_leaf" emoji. + /// Description: Fallen leaf. + /// + public const string FallenLeaf = "\U0001F342"; + + /// + /// Gets the "family" emoji. + /// Description: Family. + /// + public const string Family = "\U0001F46A"; + + /// + /// Gets the "fast_down_button" emoji. + /// Description: Fast down button. + /// + public const string FastDownButton = "\U000023EC"; + + /// + /// Gets the "fast_forward_button" emoji. + /// Description: fast forward button. + /// + public const string FastForwardButton = "\U000023E9"; + + /// + /// Gets the "fast_reverse_button" emoji. + /// Description: Fast reverse button. + /// + public const string FastReverseButton = "\U000023EA"; + + /// + /// Gets the "fast_up_button" emoji. + /// Description: Fast up button. + /// + public const string FastUpButton = "\U000023EB"; + + /// + /// Gets the "fax_machine" emoji. + /// Description: Fax machine. + /// + public const string FaxMachine = "\U0001F4E0"; + + /// + /// Gets the "fearful_face" emoji. + /// Description: Fearful face. + /// + public const string FearfulFace = "\U0001F628"; + + /// + /// Gets the "feather" emoji. + /// Description: Feather. + /// + public const string Feather = "\U0001FAB6"; + + /// + /// Gets the "female_sign" emoji. + /// Description: Female sign. + /// + public const string FemaleSign = "\U00002640"; + + /// + /// Gets the "ferris_wheel" emoji. + /// Description: Ferris wheel. + /// + public const string FerrisWheel = "\U0001F3A1"; + + /// + /// Gets the "ferry" emoji. + /// Description: Ferry. + /// + public const string Ferry = "\U000026F4"; + + /// + /// Gets the "field_hockey" emoji. + /// Description: Field hockey. + /// + public const string FieldHockey = "\U0001F3D1"; + + /// + /// Gets the "file_cabinet" emoji. + /// Description: File cabinet. + /// + public const string FileCabinet = "\U0001F5C4"; + + /// + /// Gets the "file_folder" emoji. + /// Description: File folder. + /// + public const string FileFolder = "\U0001F4C1"; + + /// + /// Gets the "film_frames" emoji. + /// Description: Film frames. + /// + public const string FilmFrames = "\U0001F39E"; + + /// + /// Gets the "film_projector" emoji. + /// Description: Film projector. + /// + public const string FilmProjector = "\U0001F4FD"; + + /// + /// Gets the "fire" emoji. + /// Description: Fire. + /// + public const string Fire = "\U0001F525"; + + /// + /// Gets the "firecracker" emoji. + /// Description: Firecracker. + /// + public const string Firecracker = "\U0001F9E8"; + + /// + /// Gets the "fire_engine" emoji. + /// Description: Fire engine. + /// + public const string FireEngine = "\U0001F692"; + + /// + /// Gets the "fire_extinguisher" emoji. + /// Description: Fire extinguisher. + /// + public const string FireExtinguisher = "\U0001F9EF"; + + /// + /// Gets the "fireworks" emoji. + /// Description: Fireworks. + /// + public const string Fireworks = "\U0001F386"; + + /// + /// Gets the "1st_place_medal" emoji. + /// Description: 1st place medal. + /// + public const string FirstPlaceMedal = "\U0001F947"; + + /// + /// Gets the "first_quarter_moon" emoji. + /// Description: First quarter moon. + /// + public const string FirstQuarterMoon = "\U0001F313"; + + /// + /// Gets the "first_quarter_moon_face" emoji. + /// Description: First quarter moon face. + /// + public const string FirstQuarterMoonFace = "\U0001F31B"; + + /// + /// Gets the "fish" emoji. + /// Description: Fish. + /// + public const string Fish = "\U0001F41F"; + + /// + /// Gets the "fish_cake_with_swirl" emoji. + /// Description: Fish cake with swirl. + /// + public const string FishCakeWithSwirl = "\U0001F365"; + + /// + /// Gets the "fishing_pole" emoji. + /// Description: Fishing pole. + /// + public const string FishingPole = "\U0001F3A3"; + + /// + /// Gets the "five_o_clock" emoji. + /// Description: Five o clock. + /// + public const string FiveOClock = "\U0001F554"; + + /// + /// Gets the "five_thirty" emoji. + /// Description: five thirty. + /// + public const string FiveThirty = "\U0001F560"; + + /// + /// Gets the "flag_in_hole" emoji. + /// Description: Flag in hole. + /// + public const string FlagInHole = "\U000026F3"; + + /// + /// Gets the "flamingo" emoji. + /// Description: Flamingo. + /// + public const string Flamingo = "\U0001F9A9"; + + /// + /// Gets the "flashlight" emoji. + /// Description: Flashlight. + /// + public const string Flashlight = "\U0001F526"; + + /// + /// Gets the "flatbread" emoji. + /// Description: Flatbread. + /// + public const string Flatbread = "\U0001FAD3"; + + /// + /// Gets the "flat_shoe" emoji. + /// Description: Flat shoe. + /// + public const string FlatShoe = "\U0001F97F"; + + /// + /// Gets the "fleur_de_lis" emoji. + /// Description: fleur de lis. + /// + public const string FleurDeLis = "\U0000269C"; + + /// + /// Gets the "flexed_biceps" emoji. + /// Description: Flexed biceps. + /// + public const string FlexedBiceps = "\U0001F4AA"; + + /// + /// Gets the "floppy_disk" emoji. + /// Description: Floppy disk. + /// + public const string FloppyDisk = "\U0001F4BE"; + + /// + /// Gets the "flower_playing_cards" emoji. + /// Description: Flower playing cards. + /// + public const string FlowerPlayingCards = "\U0001F3B4"; + + /// + /// Gets the "flushed_face" emoji. + /// Description: Flushed face. + /// + public const string FlushedFace = "\U0001F633"; + + /// + /// Gets the "fly" emoji. + /// Description: Fly. + /// + public const string Fly = "\U0001FAB0"; + + /// + /// Gets the "flying_disc" emoji. + /// Description: Flying disc. + /// + public const string FlyingDisc = "\U0001F94F"; + + /// + /// Gets the "flying_saucer" emoji. + /// Description: Flying saucer. + /// + public const string FlyingSaucer = "\U0001F6F8"; + + /// + /// Gets the "fog" emoji. + /// Description: Fog. + /// + public const string Fog = "\U0001F32B"; + + /// + /// Gets the "foggy" emoji. + /// Description: Foggy. + /// + public const string Foggy = "\U0001F301"; + + /// + /// Gets the "folded_hands" emoji. + /// Description: Folded hands. + /// + public const string FoldedHands = "\U0001F64F"; + + /// + /// Gets the "fondue" emoji. + /// Description: Fondue. + /// + public const string Fondue = "\U0001FAD5"; + + /// + /// Gets the "foot" emoji. + /// Description: Foot. + /// + public const string Foot = "\U0001F9B6"; + + /// + /// Gets the "footprints" emoji. + /// Description: Footprints. + /// + public const string Footprints = "\U0001F463"; + + /// + /// Gets the "fork_and_knife" emoji. + /// Description: Fork and knife. + /// + public const string ForkAndKnife = "\U0001F374"; + + /// + /// Gets the "fork_and_knife_with_plate" emoji. + /// Description: Fork and knife with plate. + /// + public const string ForkAndKnifeWithPlate = "\U0001F37D"; + + /// + /// Gets the "fortune_cookie" emoji. + /// Description: Fortune cookie. + /// + public const string FortuneCookie = "\U0001F960"; + + /// + /// Gets the "fountain" emoji. + /// Description: Fountain. + /// + public const string Fountain = "\U000026F2"; + + /// + /// Gets the "fountain_pen" emoji. + /// Description: Fountain pen. + /// + public const string FountainPen = "\U0001F58B"; + + /// + /// Gets the "four_leaf_clover" emoji. + /// Description: Four leaf clover. + /// + public const string FourLeafClover = "\U0001F340"; + + /// + /// Gets the "four_o_clock" emoji. + /// Description: Four o clock. + /// + public const string FourOClock = "\U0001F553"; + + /// + /// Gets the "four_thirty" emoji. + /// Description: four thirty. + /// + public const string FourThirty = "\U0001F55F"; + + /// + /// Gets the "fox" emoji. + /// Description: Fox. + /// + public const string Fox = "\U0001F98A"; + + /// + /// Gets the "framed_picture" emoji. + /// Description: Framed picture. + /// + public const string FramedPicture = "\U0001F5BC"; + + /// + /// Gets the "free_button" emoji. + /// Description: FREE button. + /// + public const string FreeButton = "\U0001F193"; + + /// + /// Gets the "french_fries" emoji. + /// Description: French fries. + /// + public const string FrenchFries = "\U0001F35F"; + + /// + /// Gets the "fried_shrimp" emoji. + /// Description: Fried shrimp. + /// + public const string FriedShrimp = "\U0001F364"; + + /// + /// Gets the "frog" emoji. + /// Description: Frog. + /// + public const string Frog = "\U0001F438"; + + /// + /// Gets the "front_facing_baby_chick" emoji. + /// Description: front facing baby chick. + /// + public const string FrontFacingBabyChick = "\U0001F425"; + + /// + /// Gets the "frowning_face" emoji. + /// Description: Frowning face. + /// + public const string FrowningFace = "\U00002639"; + + /// + /// Gets the "frowning_face_with_open_mouth" emoji. + /// Description: Frowning face with open mouth. + /// + public const string FrowningFaceWithOpenMouth = "\U0001F626"; + + /// + /// Gets the "fuel_pump" emoji. + /// Description: Fuel pump. + /// + public const string FuelPump = "\U000026FD"; + + /// + /// Gets the "full_moon" emoji. + /// Description: Full moon. + /// + public const string FullMoon = "\U0001F315"; + + /// + /// Gets the "full_moon_face" emoji. + /// Description: Full moon face. + /// + public const string FullMoonFace = "\U0001F31D"; + + /// + /// Gets the "funeral_urn" emoji. + /// Description: Funeral urn. + /// + public const string FuneralUrn = "\U000026B1"; + + /// + /// Gets the "game_die" emoji. + /// Description: Game die. + /// + public const string GameDie = "\U0001F3B2"; + + /// + /// Gets the "garlic" emoji. + /// Description: Garlic. + /// + public const string Garlic = "\U0001F9C4"; + + /// + /// Gets the "gear" emoji. + /// Description: Gear. + /// + public const string Gear = "\U00002699"; + + /// + /// Gets the "gemini" emoji. + /// Description: Gemini. + /// + public const string Gemini = "\U0000264A"; + + /// + /// Gets the "gem_stone" emoji. + /// Description: Gem stone. + /// + public const string GemStone = "\U0001F48E"; + + /// + /// Gets the "genie" emoji. + /// Description: Genie. + /// + public const string Genie = "\U0001F9DE"; + + /// + /// Gets the "ghost" emoji. + /// Description: Ghost. + /// + public const string Ghost = "\U0001F47B"; + + /// + /// Gets the "giraffe" emoji. + /// Description: Giraffe. + /// + public const string Giraffe = "\U0001F992"; + + /// + /// Gets the "girl" emoji. + /// Description: Girl. + /// + public const string Girl = "\U0001F467"; + + /// + /// Gets the "glasses" emoji. + /// Description: Glasses. + /// + public const string Glasses = "\U0001F453"; + + /// + /// Gets the "glass_of_milk" emoji. + /// Description: Glass of milk. + /// + public const string GlassOfMilk = "\U0001F95B"; + + /// + /// Gets the "globe_showing_americas" emoji. + /// Description: Globe showing americas. + /// + public const string GlobeShowingAmericas = "\U0001F30E"; + + /// + /// Gets the "globe_showing_asia_australia" emoji. + /// Description: globe showing Asia Australia. + /// + public const string GlobeShowingAsiaAustralia = "\U0001F30F"; + + /// + /// Gets the "globe_showing_europe_africa" emoji. + /// Description: globe showing Europe Africa. + /// + public const string GlobeShowingEuropeAfrica = "\U0001F30D"; + + /// + /// Gets the "globe_with_meridians" emoji. + /// Description: Globe with meridians. + /// + public const string GlobeWithMeridians = "\U0001F310"; + + /// + /// Gets the "gloves" emoji. + /// Description: Gloves. + /// + public const string Gloves = "\U0001F9E4"; + + /// + /// Gets the "glowing_star" emoji. + /// Description: Glowing star. + /// + public const string GlowingStar = "\U0001F31F"; + + /// + /// Gets the "goal_net" emoji. + /// Description: Goal net. + /// + public const string GoalNet = "\U0001F945"; + + /// + /// Gets the "goat" emoji. + /// Description: Goat. + /// + public const string Goat = "\U0001F410"; + + /// + /// Gets the "goblin" emoji. + /// Description: Goblin. + /// + public const string Goblin = "\U0001F47A"; + + /// + /// Gets the "goggles" emoji. + /// Description: Goggles. + /// + public const string Goggles = "\U0001F97D"; + + /// + /// Gets the "gorilla" emoji. + /// Description: Gorilla. + /// + public const string Gorilla = "\U0001F98D"; + + /// + /// Gets the "graduation_cap" emoji. + /// Description: Graduation cap. + /// + public const string GraduationCap = "\U0001F393"; + + /// + /// Gets the "grapes" emoji. + /// Description: Grapes. + /// + public const string Grapes = "\U0001F347"; + + /// + /// Gets the "green_apple" emoji. + /// Description: Green apple. + /// + public const string GreenApple = "\U0001F34F"; + + /// + /// Gets the "green_book" emoji. + /// Description: Green book. + /// + public const string GreenBook = "\U0001F4D7"; + + /// + /// Gets the "green_circle" emoji. + /// Description: Green circle. + /// + public const string GreenCircle = "\U0001F7E2"; + + /// + /// Gets the "green_heart" emoji. + /// Description: Green heart. + /// + public const string GreenHeart = "\U0001F49A"; + + /// + /// Gets the "green_salad" emoji. + /// Description: Green salad. + /// + public const string GreenSalad = "\U0001F957"; + + /// + /// Gets the "green_square" emoji. + /// Description: Green square. + /// + public const string GreenSquare = "\U0001F7E9"; + + /// + /// Gets the "grimacing_face" emoji. + /// Description: Grimacing face. + /// + public const string GrimacingFace = "\U0001F62C"; + + /// + /// Gets the "grinning_cat" emoji. + /// Description: Grinning cat. + /// + public const string GrinningCat = "\U0001F63A"; + + /// + /// Gets the "grinning_cat_with_smiling_eyes" emoji. + /// Description: Grinning cat with smiling eyes. + /// + public const string GrinningCatWithSmilingEyes = "\U0001F638"; + + /// + /// Gets the "grinning_face" emoji. + /// Description: Grinning face. + /// + public const string GrinningFace = "\U0001F600"; + + /// + /// Gets the "grinning_face_with_big_eyes" emoji. + /// Description: Grinning face with big eyes. + /// + public const string GrinningFaceWithBigEyes = "\U0001F603"; + + /// + /// Gets the "grinning_face_with_smiling_eyes" emoji. + /// Description: Grinning face with smiling eyes. + /// + public const string GrinningFaceWithSmilingEyes = "\U0001F604"; + + /// + /// Gets the "grinning_face_with_sweat" emoji. + /// Description: Grinning face with sweat. + /// + public const string GrinningFaceWithSweat = "\U0001F605"; + + /// + /// Gets the "grinning_squinting_face" emoji. + /// Description: Grinning squinting face. + /// + public const string GrinningSquintingFace = "\U0001F606"; + + /// + /// Gets the "growing_heart" emoji. + /// Description: Growing heart. + /// + public const string GrowingHeart = "\U0001F497"; + + /// + /// Gets the "guard" emoji. + /// Description: Guard. + /// + public const string Guard = "\U0001F482"; + + /// + /// Gets the "guide_dog" emoji. + /// Description: Guide dog. + /// + public const string GuideDog = "\U0001F9AE"; + + /// + /// Gets the "guitar" emoji. + /// Description: Guitar. + /// + public const string Guitar = "\U0001F3B8"; + + /// + /// Gets the "hamburger" emoji. + /// Description: Hamburger. + /// + public const string Hamburger = "\U0001F354"; + + /// + /// Gets the "hammer" emoji. + /// Description: Hammer. + /// + public const string Hammer = "\U0001F528"; + + /// + /// Gets the "hammer_and_pick" emoji. + /// Description: Hammer and pick. + /// + public const string HammerAndPick = "\U00002692"; + + /// + /// Gets the "hammer_and_wrench" emoji. + /// Description: Hammer and wrench. + /// + public const string HammerAndWrench = "\U0001F6E0"; + + /// + /// Gets the "hamster" emoji. + /// Description: Hamster. + /// + public const string Hamster = "\U0001F439"; + + /// + /// Gets the "handbag" emoji. + /// Description: Handbag. + /// + public const string Handbag = "\U0001F45C"; + + /// + /// Gets the "handshake" emoji. + /// Description: Handshake. + /// + public const string Handshake = "\U0001F91D"; + + /// + /// Gets the "hand_with_fingers_splayed" emoji. + /// Description: Hand with fingers splayed. + /// + public const string HandWithFingersSplayed = "\U0001F590"; + + /// + /// Gets the "hatching_chick" emoji. + /// Description: Hatching chick. + /// + public const string HatchingChick = "\U0001F423"; + + /// + /// Gets the "headphone" emoji. + /// Description: Headphone. + /// + public const string Headphone = "\U0001F3A7"; + + /// + /// Gets the "headstone" emoji. + /// Description: Headstone. + /// + public const string Headstone = "\U0001FAA6"; + + /// + /// Gets the "hear_no_evil_monkey" emoji. + /// Description: hear no evil monkey. + /// + public const string HearNoEvilMonkey = "\U0001F649"; + + /// + /// Gets the "heart_decoration" emoji. + /// Description: Heart decoration. + /// + public const string HeartDecoration = "\U0001F49F"; + + /// + /// Gets the "heart_exclamation" emoji. + /// Description: Heart exclamation. + /// + public const string HeartExclamation = "\U00002763"; + + /// + /// Gets the "heart_suit" emoji. + /// Description: Heart suit. + /// + public const string HeartSuit = "\U00002665"; + + /// + /// Gets the "heart_with_arrow" emoji. + /// Description: Heart with arrow. + /// + public const string HeartWithArrow = "\U0001F498"; + + /// + /// Gets the "heart_with_ribbon" emoji. + /// Description: Heart with ribbon. + /// + public const string HeartWithRibbon = "\U0001F49D"; + + /// + /// Gets the "heavy_dollar_sign" emoji. + /// Description: Heavy dollar sign. + /// + public const string HeavyDollarSign = "\U0001F4B2"; + + /// + /// Gets the "hedgehog" emoji. + /// Description: Hedgehog. + /// + public const string Hedgehog = "\U0001F994"; + + /// + /// Gets the "helicopter" emoji. + /// Description: Helicopter. + /// + public const string Helicopter = "\U0001F681"; + + /// + /// Gets the "herb" emoji. + /// Description: Herb. + /// + public const string Herb = "\U0001F33F"; + + /// + /// Gets the "hibiscus" emoji. + /// Description: Hibiscus. + /// + public const string Hibiscus = "\U0001F33A"; + + /// + /// Gets the "high_heeled_shoe" emoji. + /// Description: high heeled shoe. + /// + public const string HighHeeledShoe = "\U0001F460"; + + /// + /// Gets the "high_speed_train" emoji. + /// Description: high speed train. + /// + public const string HighSpeedTrain = "\U0001F684"; + + /// + /// Gets the "high_voltage" emoji. + /// Description: High voltage. + /// + public const string HighVoltage = "\U000026A1"; + + /// + /// Gets the "hiking_boot" emoji. + /// Description: Hiking boot. + /// + public const string HikingBoot = "\U0001F97E"; + + /// + /// Gets the "hindu_temple" emoji. + /// Description: Hindu temple. + /// + public const string HinduTemple = "\U0001F6D5"; + + /// + /// Gets the "hippopotamus" emoji. + /// Description: Hippopotamus. + /// + public const string Hippopotamus = "\U0001F99B"; + + /// + /// Gets the "hole" emoji. + /// Description: Hole. + /// + public const string Hole = "\U0001F573"; + + /// + /// Gets the "hollow_red_circle" emoji. + /// Description: Hollow red circle. + /// + public const string HollowRedCircle = "\U00002B55"; + + /// + /// Gets the "honeybee" emoji. + /// Description: Honeybee. + /// + public const string Honeybee = "\U0001F41D"; + + /// + /// Gets the "honey_pot" emoji. + /// Description: Honey pot. + /// + public const string HoneyPot = "\U0001F36F"; + + /// + /// Gets the "hook" emoji. + /// Description: Hook. + /// + public const string Hook = "\U0001FA9D"; + + /// + /// Gets the "horizontal_traffic_light" emoji. + /// Description: Horizontal traffic light. + /// + public const string HorizontalTrafficLight = "\U0001F6A5"; + + /// + /// Gets the "horse" emoji. + /// Description: Horse. + /// + public const string Horse = "\U0001F40E"; + + /// + /// Gets the "horse_face" emoji. + /// Description: Horse face. + /// + public const string HorseFace = "\U0001F434"; + + /// + /// Gets the "horse_racing" emoji. + /// Description: Horse racing. + /// + public const string HorseRacing = "\U0001F3C7"; + + /// + /// Gets the "hospital" emoji. + /// Description: Hospital. + /// + public const string Hospital = "\U0001F3E5"; + + /// + /// Gets the "hot_beverage" emoji. + /// Description: Hot beverage. + /// + public const string HotBeverage = "\U00002615"; + + /// + /// Gets the "hot_dog" emoji. + /// Description: Hot dog. + /// + public const string HotDog = "\U0001F32D"; + + /// + /// Gets the "hotel" emoji. + /// Description: Hotel. + /// + public const string Hotel = "\U0001F3E8"; + + /// + /// Gets the "hot_face" emoji. + /// Description: Hot face. + /// + public const string HotFace = "\U0001F975"; + + /// + /// Gets the "hot_pepper" emoji. + /// Description: Hot pepper. + /// + public const string HotPepper = "\U0001F336"; + + /// + /// Gets the "hot_springs" emoji. + /// Description: Hot springs. + /// + public const string HotSprings = "\U00002668"; + + /// + /// Gets the "hourglass_done" emoji. + /// Description: Hourglass done. + /// + public const string HourglassDone = "\U0000231B"; + + /// + /// Gets the "hourglass_not_done" emoji. + /// Description: Hourglass not done. + /// + public const string HourglassNotDone = "\U000023F3"; + + /// + /// Gets the "house" emoji. + /// Description: House. + /// + public const string House = "\U0001F3E0"; + + /// + /// Gets the "houses" emoji. + /// Description: Houses. + /// + public const string Houses = "\U0001F3D8"; + + /// + /// Gets the "house_with_garden" emoji. + /// Description: House with garden. + /// + public const string HouseWithGarden = "\U0001F3E1"; + + /// + /// Gets the "hugging_face" emoji. + /// Description: Hugging face. + /// + public const string HuggingFace = "\U0001F917"; + + /// + /// Gets the "hundred_points" emoji. + /// Description: Hundred points. + /// + public const string HundredPoints = "\U0001F4AF"; + + /// + /// Gets the "hushed_face" emoji. + /// Description: Hushed face. + /// + public const string HushedFace = "\U0001F62F"; + + /// + /// Gets the "hut" emoji. + /// Description: Hut. + /// + public const string Hut = "\U0001F6D6"; + + /// + /// Gets the "ice" emoji. + /// Description: Ice. + /// + public const string Ice = "\U0001F9CA"; + + /// + /// Gets the "ice_cream" emoji. + /// Description: Ice cream. + /// + public const string IceCream = "\U0001F368"; + + /// + /// Gets the "ice_hockey" emoji. + /// Description: Ice hockey. + /// + public const string IceHockey = "\U0001F3D2"; + + /// + /// Gets the "ice_skate" emoji. + /// Description: Ice skate. + /// + public const string IceSkate = "\U000026F8"; + + /// + /// Gets the "id_button" emoji. + /// Description: ID button. + /// + public const string IdButton = "\U0001F194"; + + /// + /// Gets the "inbox_tray" emoji. + /// Description: Inbox tray. + /// + public const string InboxTray = "\U0001F4E5"; + + /// + /// Gets the "incoming_envelope" emoji. + /// Description: Incoming envelope. + /// + public const string IncomingEnvelope = "\U0001F4E8"; + + /// + /// Gets the "index_pointing_up" emoji. + /// Description: Index pointing up. + /// + public const string IndexPointingUp = "\U0000261D"; + + /// + /// Gets the "infinity" emoji. + /// Description: Infinity. + /// + public const string Infinity = "\U0000267E"; + + /// + /// Gets the "information" emoji. + /// Description: Information. + /// + public const string Information = "\U00002139"; + + /// + /// Gets the "input_latin_letters" emoji. + /// Description: Input latin letters. + /// + public const string InputLatinLetters = "\U0001F524"; + + /// + /// Gets the "input_latin_lowercase" emoji. + /// Description: Input latin lowercase. + /// + public const string InputLatinLowercase = "\U0001F521"; + + /// + /// Gets the "input_latin_uppercase" emoji. + /// Description: Input latin uppercase. + /// + public const string InputLatinUppercase = "\U0001F520"; + + /// + /// Gets the "input_numbers" emoji. + /// Description: Input numbers. + /// + public const string InputNumbers = "\U0001F522"; + + /// + /// Gets the "input_symbols" emoji. + /// Description: Input symbols. + /// + public const string InputSymbols = "\U0001F523"; + + /// + /// Gets the "jack_o_lantern" emoji. + /// Description: jack o lantern. + /// + public const string JackOLantern = "\U0001F383"; + + /// + /// Gets the "japanese_acceptable_button" emoji. + /// Description: Japanese acceptable button. + /// + public const string JapaneseAcceptableButton = "\U0001F251"; + + /// + /// Gets the "japanese_application_button" emoji. + /// Description: Japanese application button. + /// + public const string JapaneseApplicationButton = "\U0001F238"; + + /// + /// Gets the "japanese_bargain_button" emoji. + /// Description: Japanese bargain button. + /// + public const string JapaneseBargainButton = "\U0001F250"; + + /// + /// Gets the "japanese_castle" emoji. + /// Description: Japanese castle. + /// + public const string JapaneseCastle = "\U0001F3EF"; + + /// + /// Gets the "japanese_congratulations_button" emoji. + /// Description: Japanese congratulations button. + /// + public const string JapaneseCongratulationsButton = "\U00003297"; + + /// + /// Gets the "japanese_discount_button" emoji. + /// Description: Japanese discount button. + /// + public const string JapaneseDiscountButton = "\U0001F239"; + + /// + /// Gets the "japanese_dolls" emoji. + /// Description: Japanese dolls. + /// + public const string JapaneseDolls = "\U0001F38E"; + + /// + /// Gets the "japanese_free_of_charge_button" emoji. + /// Description: Japanese free of charge button. + /// + public const string JapaneseFreeOfChargeButton = "\U0001F21A"; + + /// + /// Gets the "japanese_here_button" emoji. + /// Description: Japanese here button. + /// + public const string JapaneseHereButton = "\U0001F201"; + + /// + /// Gets the "japanese_monthly_amount_button" emoji. + /// Description: Japanese monthly amount button. + /// + public const string JapaneseMonthlyAmountButton = "\U0001F237"; + + /// + /// Gets the "japanese_not_free_of_charge_button" emoji. + /// Description: Japanese not free of charge button. + /// + public const string JapaneseNotFreeOfChargeButton = "\U0001F236"; + + /// + /// Gets the "japanese_no_vacancy_button" emoji. + /// Description: Japanese no vacancy button. + /// + public const string JapaneseNoVacancyButton = "\U0001F235"; + + /// + /// Gets the "japanese_open_for_business_button" emoji. + /// Description: Japanese open for business button. + /// + public const string JapaneseOpenForBusinessButton = "\U0001F23A"; + + /// + /// Gets the "japanese_passing_grade_button" emoji. + /// Description: Japanese passing grade button. + /// + public const string JapanesePassingGradeButton = "\U0001F234"; + + /// + /// Gets the "japanese_post_office" emoji. + /// Description: Japanese post office. + /// + public const string JapanesePostOffice = "\U0001F3E3"; + + /// + /// Gets the "japanese_prohibited_button" emoji. + /// Description: Japanese prohibited button. + /// + public const string JapaneseProhibitedButton = "\U0001F232"; + + /// + /// Gets the "japanese_reserved_button" emoji. + /// Description: Japanese reserved button. + /// + public const string JapaneseReservedButton = "\U0001F22F"; + + /// + /// Gets the "japanese_secret_button" emoji. + /// Description: Japanese secret button. + /// + public const string JapaneseSecretButton = "\U00003299"; + + /// + /// Gets the "japanese_service_charge_button" emoji. + /// Description: Japanese service charge button. + /// + public const string JapaneseServiceChargeButton = "\U0001F202"; + + /// + /// Gets the "japanese_symbol_for_beginner" emoji. + /// Description: Japanese symbol for beginner. + /// + public const string JapaneseSymbolForBeginner = "\U0001F530"; + + /// + /// Gets the "japanese_vacancy_button" emoji. + /// Description: Japanese vacancy button. + /// + public const string JapaneseVacancyButton = "\U0001F233"; + + /// + /// Gets the "jeans" emoji. + /// Description: Jeans. + /// + public const string Jeans = "\U0001F456"; + + /// + /// Gets the "joker" emoji. + /// Description: Joker. + /// + public const string Joker = "\U0001F0CF"; + + /// + /// Gets the "joystick" emoji. + /// Description: Joystick. + /// + public const string Joystick = "\U0001F579"; + + /// + /// Gets the "kaaba" emoji. + /// Description: Kaaba. + /// + public const string Kaaba = "\U0001F54B"; + + /// + /// Gets the "kangaroo" emoji. + /// Description: Kangaroo. + /// + public const string Kangaroo = "\U0001F998"; + + /// + /// Gets the "key" emoji. + /// Description: Key. + /// + public const string Key = "\U0001F511"; + + /// + /// Gets the "keyboard" emoji. + /// Description: Keyboard. + /// + public const string Keyboard = "\U00002328"; + + /// + /// Gets the "keycap_10" emoji. + /// Description: Keycap 10. + /// + public const string Keycap10 = "\U0001F51F"; + + /// + /// Gets the "kick_scooter" emoji. + /// Description: Kick scooter. + /// + public const string KickScooter = "\U0001F6F4"; + + /// + /// Gets the "kimono" emoji. + /// Description: Kimono. + /// + public const string Kimono = "\U0001F458"; + + /// + /// Gets the "kiss" emoji. + /// Description: Kiss. + /// + public const string Kiss = "\U0001F48F"; + + /// + /// Gets the "kissing_cat" emoji. + /// Description: Kissing cat. + /// + public const string KissingCat = "\U0001F63D"; + + /// + /// Gets the "kissing_face" emoji. + /// Description: Kissing face. + /// + public const string KissingFace = "\U0001F617"; + + /// + /// Gets the "kissing_face_with_closed_eyes" emoji. + /// Description: Kissing face with closed eyes. + /// + public const string KissingFaceWithClosedEyes = "\U0001F61A"; + + /// + /// Gets the "kissing_face_with_smiling_eyes" emoji. + /// Description: Kissing face with smiling eyes. + /// + public const string KissingFaceWithSmilingEyes = "\U0001F619"; + + /// + /// Gets the "kiss_mark" emoji. + /// Description: Kiss mark. + /// + public const string KissMark = "\U0001F48B"; + + /// + /// Gets the "kitchen_knife" emoji. + /// Description: Kitchen knife. + /// + public const string KitchenKnife = "\U0001F52A"; + + /// + /// Gets the "kite" emoji. + /// Description: Kite. + /// + public const string Kite = "\U0001FA81"; + + /// + /// Gets the "kiwi_fruit" emoji. + /// Description: Kiwi fruit. + /// + public const string KiwiFruit = "\U0001F95D"; + + /// + /// Gets the "knocked_out_face" emoji. + /// Description: knocked out face. + /// + public const string KnockedOutFace = "\U0001F635"; + + /// + /// Gets the "knot" emoji. + /// Description: Knot. + /// + public const string Knot = "\U0001FAA2"; + + /// + /// Gets the "koala" emoji. + /// Description: Koala. + /// + public const string Koala = "\U0001F428"; + + /// + /// Gets the "lab_coat" emoji. + /// Description: Lab coat. + /// + public const string LabCoat = "\U0001F97C"; + + /// + /// Gets the "label" emoji. + /// Description: Label. + /// + public const string Label = "\U0001F3F7"; + + /// + /// Gets the "lacrosse" emoji. + /// Description: Lacrosse. + /// + public const string Lacrosse = "\U0001F94D"; + + /// + /// Gets the "ladder" emoji. + /// Description: Ladder. + /// + public const string Ladder = "\U0001FA9C"; + + /// + /// Gets the "lady_beetle" emoji. + /// Description: Lady beetle. + /// + public const string LadyBeetle = "\U0001F41E"; + + /// + /// Gets the "laptop" emoji. + /// Description: Laptop. + /// + public const string Laptop = "\U0001F4BB"; + + /// + /// Gets the "large_blue_diamond" emoji. + /// Description: Large blue diamond. + /// + public const string LargeBlueDiamond = "\U0001F537"; + + /// + /// Gets the "large_orange_diamond" emoji. + /// Description: Large orange diamond. + /// + public const string LargeOrangeDiamond = "\U0001F536"; + + /// + /// Gets the "last_quarter_moon" emoji. + /// Description: Last quarter moon. + /// + public const string LastQuarterMoon = "\U0001F317"; + + /// + /// Gets the "last_quarter_moon_face" emoji. + /// Description: Last quarter moon face. + /// + public const string LastQuarterMoonFace = "\U0001F31C"; + + /// + /// Gets the "last_track_button" emoji. + /// Description: Last track button. + /// + public const string LastTrackButton = "\U000023EE"; + + /// + /// Gets the "latin_cross" emoji. + /// Description: Latin cross. + /// + public const string LatinCross = "\U0000271D"; + + /// + /// Gets the "leaf_fluttering_in_wind" emoji. + /// Description: Leaf fluttering in wind. + /// + public const string LeafFlutteringInWind = "\U0001F343"; + + /// + /// Gets the "leafy_green" emoji. + /// Description: Leafy green. + /// + public const string LeafyGreen = "\U0001F96C"; + + /// + /// Gets the "ledger" emoji. + /// Description: Ledger. + /// + public const string Ledger = "\U0001F4D2"; + + /// + /// Gets the "left_arrow" emoji. + /// Description: Left arrow. + /// + public const string LeftArrow = "\U00002B05"; + + /// + /// Gets the "left_arrow_curving_right" emoji. + /// Description: Left arrow curving right. + /// + public const string LeftArrowCurvingRight = "\U000021AA"; + + /// + /// Gets the "left_facing_fist" emoji. + /// Description: left facing fist. + /// + public const string LeftFacingFist = "\U0001F91B"; + + /// + /// Gets the "left_luggage" emoji. + /// Description: Left luggage. + /// + public const string LeftLuggage = "\U0001F6C5"; + + /// + /// Gets the "left_right_arrow" emoji. + /// Description: left right arrow. + /// + public const string LeftRightArrow = "\U00002194"; + + /// + /// Gets the "left_speech_bubble" emoji. + /// Description: Left speech bubble. + /// + public const string LeftSpeechBubble = "\U0001F5E8"; + + /// + /// Gets the "leg" emoji. + /// Description: Leg. + /// + public const string Leg = "\U0001F9B5"; + + /// + /// Gets the "lemon" emoji. + /// Description: Lemon. + /// + public const string Lemon = "\U0001F34B"; + + /// + /// Gets the "leo" emoji. + /// Description: Leo. + /// + public const string Leo = "\U0000264C"; + + /// + /// Gets the "leopard" emoji. + /// Description: Leopard. + /// + public const string Leopard = "\U0001F406"; + + /// + /// Gets the "level_slider" emoji. + /// Description: Level slider. + /// + public const string LevelSlider = "\U0001F39A"; + + /// + /// Gets the "libra" emoji. + /// Description: Libra. + /// + public const string Libra = "\U0000264E"; + + /// + /// Gets the "light_bulb" emoji. + /// Description: Light bulb. + /// + public const string LightBulb = "\U0001F4A1"; + + /// + /// Gets the "light_rail" emoji. + /// Description: Light rail. + /// + public const string LightRail = "\U0001F688"; + + /// + /// Gets the "link" emoji. + /// Description: Link. + /// + public const string Link = "\U0001F517"; + + /// + /// Gets the "linked_paperclips" emoji. + /// Description: Linked paperclips. + /// + public const string LinkedPaperclips = "\U0001F587"; + + /// + /// Gets the "lion" emoji. + /// Description: Lion. + /// + public const string Lion = "\U0001F981"; + + /// + /// Gets the "lipstick" emoji. + /// Description: Lipstick. + /// + public const string Lipstick = "\U0001F484"; + + /// + /// Gets the "litter_in_bin_sign" emoji. + /// Description: Litter in bin sign. + /// + public const string LitterInBinSign = "\U0001F6AE"; + + /// + /// Gets the "lizard" emoji. + /// Description: Lizard. + /// + public const string Lizard = "\U0001F98E"; + + /// + /// Gets the "llama" emoji. + /// Description: Llama. + /// + public const string Llama = "\U0001F999"; + + /// + /// Gets the "lobster" emoji. + /// Description: Lobster. + /// + public const string Lobster = "\U0001F99E"; + + /// + /// Gets the "locked" emoji. + /// Description: Locked. + /// + public const string Locked = "\U0001F512"; + + /// + /// Gets the "locked_with_key" emoji. + /// Description: Locked with key. + /// + public const string LockedWithKey = "\U0001F510"; + + /// + /// Gets the "locked_with_pen" emoji. + /// Description: Locked with pen. + /// + public const string LockedWithPen = "\U0001F50F"; + + /// + /// Gets the "locomotive" emoji. + /// Description: Locomotive. + /// + public const string Locomotive = "\U0001F682"; + + /// + /// Gets the "lollipop" emoji. + /// Description: Lollipop. + /// + public const string Lollipop = "\U0001F36D"; + + /// + /// Gets the "long_drum" emoji. + /// Description: Long drum. + /// + public const string LongDrum = "\U0001FA98"; + + /// + /// Gets the "lotion_bottle" emoji. + /// Description: Lotion bottle. + /// + public const string LotionBottle = "\U0001F9F4"; + + /// + /// Gets the "loudly_crying_face" emoji. + /// Description: Loudly crying face. + /// + public const string LoudlyCryingFace = "\U0001F62D"; + + /// + /// Gets the "loudspeaker" emoji. + /// Description: Loudspeaker. + /// + public const string Loudspeaker = "\U0001F4E2"; + + /// + /// Gets the "love_hotel" emoji. + /// Description: Love hotel. + /// + public const string LoveHotel = "\U0001F3E9"; + + /// + /// Gets the "love_letter" emoji. + /// Description: Love letter. + /// + public const string LoveLetter = "\U0001F48C"; + + /// + /// Gets the "love_you_gesture" emoji. + /// Description: love you gesture. + /// + public const string LoveYouGesture = "\U0001F91F"; + + /// + /// Gets the "luggage" emoji. + /// Description: Luggage. + /// + public const string Luggage = "\U0001F9F3"; + + /// + /// Gets the "lungs" emoji. + /// Description: Lungs. + /// + public const string Lungs = "\U0001FAC1"; + + /// + /// Gets the "lying_face" emoji. + /// Description: Lying face. + /// + public const string LyingFace = "\U0001F925"; + + /// + /// Gets the "mage" emoji. + /// Description: Mage. + /// + public const string Mage = "\U0001F9D9"; + + /// + /// Gets the "magic_wand" emoji. + /// Description: Magic wand. + /// + public const string MagicWand = "\U0001FA84"; + + /// + /// Gets the "magnet" emoji. + /// Description: Magnet. + /// + public const string Magnet = "\U0001F9F2"; + + /// + /// Gets the "magnifying_glass_tilted_left" emoji. + /// Description: Magnifying glass tilted left. + /// + public const string MagnifyingGlassTiltedLeft = "\U0001F50D"; + + /// + /// Gets the "magnifying_glass_tilted_right" emoji. + /// Description: Magnifying glass tilted right. + /// + public const string MagnifyingGlassTiltedRight = "\U0001F50E"; + + /// + /// Gets the "mahjong_red_dragon" emoji. + /// Description: Mahjong red dragon. + /// + public const string MahjongRedDragon = "\U0001F004"; + + /// + /// Gets the "male_sign" emoji. + /// Description: Male sign. + /// + public const string MaleSign = "\U00002642"; + + /// + /// Gets the "mammoth" emoji. + /// Description: Mammoth. + /// + public const string Mammoth = "\U0001F9A3"; + + /// + /// Gets the "man" emoji. + /// Description: Man. + /// + public const string Man = "\U0001F468"; + + /// + /// Gets the "man_dancing" emoji. + /// Description: Man dancing. + /// + public const string ManDancing = "\U0001F57A"; + + /// + /// Gets the "mango" emoji. + /// Description: Mango. + /// + public const string Mango = "\U0001F96D"; + + /// + /// Gets the "mans_shoe" emoji. + /// Description: Man s shoe. + /// + public const string MansShoe = "\U0001F45E"; + + /// + /// Gets the "mantelpiece_clock" emoji. + /// Description: Mantelpiece clock. + /// + public const string MantelpieceClock = "\U0001F570"; + + /// + /// Gets the "manual_wheelchair" emoji. + /// Description: Manual wheelchair. + /// + public const string ManualWheelchair = "\U0001F9BD"; + + /// + /// Gets the "maple_leaf" emoji. + /// Description: Maple leaf. + /// + public const string MapleLeaf = "\U0001F341"; + + /// + /// Gets the "map_of_japan" emoji. + /// Description: Map of japan. + /// + public const string MapOfJapan = "\U0001F5FE"; + + /// + /// Gets the "martial_arts_uniform" emoji. + /// Description: Martial arts uniform. + /// + public const string MartialArtsUniform = "\U0001F94B"; + + /// + /// Gets the "mate" emoji. + /// Description: Mate. + /// + public const string Mate = "\U0001F9C9"; + + /// + /// Gets the "meat_on_bone" emoji. + /// Description: Meat on bone. + /// + public const string MeatOnBone = "\U0001F356"; + + /// + /// Gets the "mechanical_arm" emoji. + /// Description: Mechanical arm. + /// + public const string MechanicalArm = "\U0001F9BE"; + + /// + /// Gets the "mechanical_leg" emoji. + /// Description: Mechanical leg. + /// + public const string MechanicalLeg = "\U0001F9BF"; + + /// + /// Gets the "medical_symbol" emoji. + /// Description: Medical symbol. + /// + public const string MedicalSymbol = "\U00002695"; + + /// + /// Gets the "megaphone" emoji. + /// Description: Megaphone. + /// + public const string Megaphone = "\U0001F4E3"; + + /// + /// Gets the "melon" emoji. + /// Description: Melon. + /// + public const string Melon = "\U0001F348"; + + /// + /// Gets the "memo" emoji. + /// Description: Memo. + /// + public const string Memo = "\U0001F4DD"; + + /// + /// Gets the "men_holding_hands" emoji. + /// Description: Men holding hands. + /// + public const string MenHoldingHands = "\U0001F46C"; + + /// + /// Gets the "menorah" emoji. + /// Description: Menorah. + /// + public const string Menorah = "\U0001F54E"; + + /// + /// Gets the "mens_room" emoji. + /// Description: Men s room. + /// + public const string MensRoom = "\U0001F6B9"; + + /// + /// Gets the "merperson" emoji. + /// Description: Merperson. + /// + public const string Merperson = "\U0001F9DC"; + + /// + /// Gets the "metro" emoji. + /// Description: Metro. + /// + public const string Metro = "\U0001F687"; + + /// + /// Gets the "microbe" emoji. + /// Description: Microbe. + /// + public const string Microbe = "\U0001F9A0"; + + /// + /// Gets the "microphone" emoji. + /// Description: Microphone. + /// + public const string Microphone = "\U0001F3A4"; + + /// + /// Gets the "microscope" emoji. + /// Description: Microscope. + /// + public const string Microscope = "\U0001F52C"; + + /// + /// Gets the "middle_finger" emoji. + /// Description: Middle finger. + /// + public const string MiddleFinger = "\U0001F595"; + + /// + /// Gets the "military_helmet" emoji. + /// Description: Military helmet. + /// + public const string MilitaryHelmet = "\U0001FA96"; + + /// + /// Gets the "military_medal" emoji. + /// Description: Military medal. + /// + public const string MilitaryMedal = "\U0001F396"; + + /// + /// Gets the "milky_way" emoji. + /// Description: Milky way. + /// + public const string MilkyWay = "\U0001F30C"; + + /// + /// Gets the "minibus" emoji. + /// Description: Minibus. + /// + public const string Minibus = "\U0001F690"; + + /// + /// Gets the "minus" emoji. + /// Description: Minus. + /// + public const string Minus = "\U00002796"; + + /// + /// Gets the "mirror" emoji. + /// Description: Mirror. + /// + public const string Mirror = "\U0001FA9E"; + + /// + /// Gets the "moai" emoji. + /// Description: Moai. + /// + public const string Moai = "\U0001F5FF"; + + /// + /// Gets the "mobile_phone" emoji. + /// Description: Mobile phone. + /// + public const string MobilePhone = "\U0001F4F1"; + + /// + /// Gets the "mobile_phone_off" emoji. + /// Description: Mobile phone off. + /// + public const string MobilePhoneOff = "\U0001F4F4"; + + /// + /// Gets the "mobile_phone_with_arrow" emoji. + /// Description: Mobile phone with arrow. + /// + public const string MobilePhoneWithArrow = "\U0001F4F2"; + + /// + /// Gets the "money_bag" emoji. + /// Description: Money bag. + /// + public const string MoneyBag = "\U0001F4B0"; + + /// + /// Gets the "money_mouth_face" emoji. + /// Description: money mouth face. + /// + public const string MoneyMouthFace = "\U0001F911"; + + /// + /// Gets the "money_with_wings" emoji. + /// Description: Money with wings. + /// + public const string MoneyWithWings = "\U0001F4B8"; + + /// + /// Gets the "monkey" emoji. + /// Description: Monkey. + /// + public const string Monkey = "\U0001F412"; + + /// + /// Gets the "monkey_face" emoji. + /// Description: Monkey face. + /// + public const string MonkeyFace = "\U0001F435"; + + /// + /// Gets the "monorail" emoji. + /// Description: Monorail. + /// + public const string Monorail = "\U0001F69D"; + + /// + /// Gets the "moon_cake" emoji. + /// Description: Moon cake. + /// + public const string MoonCake = "\U0001F96E"; + + /// + /// Gets the "moon_viewing_ceremony" emoji. + /// Description: Moon viewing ceremony. + /// + public const string MoonViewingCeremony = "\U0001F391"; + + /// + /// Gets the "mosque" emoji. + /// Description: Mosque. + /// + public const string Mosque = "\U0001F54C"; + + /// + /// Gets the "mosquito" emoji. + /// Description: Mosquito. + /// + public const string Mosquito = "\U0001F99F"; + + /// + /// Gets the "motor_boat" emoji. + /// Description: Motor boat. + /// + public const string MotorBoat = "\U0001F6E5"; + + /// + /// Gets the "motorcycle" emoji. + /// Description: Motorcycle. + /// + public const string Motorcycle = "\U0001F3CD"; + + /// + /// Gets the "motorized_wheelchair" emoji. + /// Description: Motorized wheelchair. + /// + public const string MotorizedWheelchair = "\U0001F9BC"; + + /// + /// Gets the "motor_scooter" emoji. + /// Description: Motor scooter. + /// + public const string MotorScooter = "\U0001F6F5"; + + /// + /// Gets the "motorway" emoji. + /// Description: Motorway. + /// + public const string Motorway = "\U0001F6E3"; + + /// + /// Gets the "mountain" emoji. + /// Description: Mountain. + /// + public const string Mountain = "\U000026F0"; + + /// + /// Gets the "mountain_cableway" emoji. + /// Description: Mountain cableway. + /// + public const string MountainCableway = "\U0001F6A0"; + + /// + /// Gets the "mountain_railway" emoji. + /// Description: Mountain railway. + /// + public const string MountainRailway = "\U0001F69E"; + + /// + /// Gets the "mount_fuji" emoji. + /// Description: Mount fuji. + /// + public const string MountFuji = "\U0001F5FB"; + + /// + /// Gets the "mouse" emoji. + /// Description: Mouse. + /// + public const string Mouse = "\U0001F401"; + + /// + /// Gets the "mouse_face" emoji. + /// Description: Mouse face. + /// + public const string MouseFace = "\U0001F42D"; + + /// + /// Gets the "mouse_trap" emoji. + /// Description: Mouse trap. + /// + public const string MouseTrap = "\U0001FAA4"; + + /// + /// Gets the "mouth" emoji. + /// Description: Mouth. + /// + public const string Mouth = "\U0001F444"; + + /// + /// Gets the "movie_camera" emoji. + /// Description: Movie camera. + /// + public const string MovieCamera = "\U0001F3A5"; + + /// + /// Gets the "mrs_claus" emoji. + /// Description: Mrs claus. + /// + public const string MrsClaus = "\U0001F936"; + + /// + /// Gets the "multiply" emoji. + /// Description: Multiply. + /// + public const string Multiply = "\U00002716"; + + /// + /// Gets the "mushroom" emoji. + /// Description: Mushroom. + /// + public const string Mushroom = "\U0001F344"; + + /// + /// Gets the "musical_keyboard" emoji. + /// Description: Musical keyboard. + /// + public const string MusicalKeyboard = "\U0001F3B9"; + + /// + /// Gets the "musical_note" emoji. + /// Description: Musical note. + /// + public const string MusicalNote = "\U0001F3B5"; + + /// + /// Gets the "musical_notes" emoji. + /// Description: Musical notes. + /// + public const string MusicalNotes = "\U0001F3B6"; + + /// + /// Gets the "musical_score" emoji. + /// Description: Musical score. + /// + public const string MusicalScore = "\U0001F3BC"; + + /// + /// Gets the "muted_speaker" emoji. + /// Description: Muted speaker. + /// + public const string MutedSpeaker = "\U0001F507"; + + /// + /// Gets the "nail_polish" emoji. + /// Description: Nail polish. + /// + public const string NailPolish = "\U0001F485"; + + /// + /// Gets the "name_badge" emoji. + /// Description: Name badge. + /// + public const string NameBadge = "\U0001F4DB"; + + /// + /// Gets the "national_park" emoji. + /// Description: National park. + /// + public const string NationalPark = "\U0001F3DE"; + + /// + /// Gets the "nauseated_face" emoji. + /// Description: Nauseated face. + /// + public const string NauseatedFace = "\U0001F922"; + + /// + /// Gets the "nazar_amulet" emoji. + /// Description: Nazar amulet. + /// + public const string NazarAmulet = "\U0001F9FF"; + + /// + /// Gets the "necktie" emoji. + /// Description: Necktie. + /// + public const string Necktie = "\U0001F454"; + + /// + /// Gets the "nerd_face" emoji. + /// Description: Nerd face. + /// + public const string NerdFace = "\U0001F913"; + + /// + /// Gets the "nesting_dolls" emoji. + /// Description: Nesting dolls. + /// + public const string NestingDolls = "\U0001FA86"; + + /// + /// Gets the "neutral_face" emoji. + /// Description: Neutral face. + /// + public const string NeutralFace = "\U0001F610"; + + /// + /// Gets the "new_button" emoji. + /// Description: NEW button. + /// + public const string NewButton = "\U0001F195"; + + /// + /// Gets the "new_moon" emoji. + /// Description: New moon. + /// + public const string NewMoon = "\U0001F311"; + + /// + /// Gets the "new_moon_face" emoji. + /// Description: New moon face. + /// + public const string NewMoonFace = "\U0001F31A"; + + /// + /// Gets the "newspaper" emoji. + /// Description: Newspaper. + /// + public const string Newspaper = "\U0001F4F0"; + + /// + /// Gets the "next_track_button" emoji. + /// Description: Next track button. + /// + public const string NextTrackButton = "\U000023ED"; + + /// + /// Gets the "ng_button" emoji. + /// Description: NG button. + /// + public const string NgButton = "\U0001F196"; + + /// + /// Gets the "night_with_stars" emoji. + /// Description: Night with stars. + /// + public const string NightWithStars = "\U0001F303"; + + /// + /// Gets the "nine_o_clock" emoji. + /// Description: Nine o clock. + /// + public const string NineOClock = "\U0001F558"; + + /// + /// Gets the "nine_thirty" emoji. + /// Description: nine thirty. + /// + public const string NineThirty = "\U0001F564"; + + /// + /// Gets the "ninja" emoji. + /// Description: Ninja. + /// + public const string Ninja = "\U0001F977"; + + /// + /// Gets the "no_bicycles" emoji. + /// Description: No bicycles. + /// + public const string NoBicycles = "\U0001F6B3"; + + /// + /// Gets the "no_entry" emoji. + /// Description: No entry. + /// + public const string NoEntry = "\U000026D4"; + + /// + /// Gets the "no_littering" emoji. + /// Description: No littering. + /// + public const string NoLittering = "\U0001F6AF"; + + /// + /// Gets the "no_mobile_phones" emoji. + /// Description: No mobile phones. + /// + public const string NoMobilePhones = "\U0001F4F5"; + + /// + /// Gets the "non_potable_water" emoji. + /// Description: non potable water. + /// + public const string NonPotableWater = "\U0001F6B1"; + + /// + /// Gets the "no_one_under_eighteen" emoji. + /// Description: No one under eighteen. + /// + public const string NoOneUnderEighteen = "\U0001F51E"; + + /// + /// Gets the "no_pedestrians" emoji. + /// Description: No pedestrians. + /// + public const string NoPedestrians = "\U0001F6B7"; + + /// + /// Gets the "nose" emoji. + /// Description: Nose. + /// + public const string Nose = "\U0001F443"; + + /// + /// Gets the "no_smoking" emoji. + /// Description: No smoking. + /// + public const string NoSmoking = "\U0001F6AD"; + + /// + /// Gets the "notebook" emoji. + /// Description: Notebook. + /// + public const string Notebook = "\U0001F4D3"; + + /// + /// Gets the "notebook_with_decorative_cover" emoji. + /// Description: Notebook with decorative cover. + /// + public const string NotebookWithDecorativeCover = "\U0001F4D4"; + + /// + /// Gets the "nut_and_bolt" emoji. + /// Description: Nut and bolt. + /// + public const string NutAndBolt = "\U0001F529"; + + /// + /// Gets the "o_button_blood_type" emoji. + /// Description: O button blood type. + /// + public const string OButtonBloodType = "\U0001F17E"; + + /// + /// Gets the "octopus" emoji. + /// Description: Octopus. + /// + public const string Octopus = "\U0001F419"; + + /// + /// Gets the "oden" emoji. + /// Description: Oden. + /// + public const string Oden = "\U0001F362"; + + /// + /// Gets the "office_building" emoji. + /// Description: Office building. + /// + public const string OfficeBuilding = "\U0001F3E2"; + + /// + /// Gets the "ogre" emoji. + /// Description: Ogre. + /// + public const string Ogre = "\U0001F479"; + + /// + /// Gets the "oil_drum" emoji. + /// Description: Oil drum. + /// + public const string OilDrum = "\U0001F6E2"; + + /// + /// Gets the "ok_button" emoji. + /// Description: OK button. + /// + public const string OkButton = "\U0001F197"; + + /// + /// Gets the "ok_hand" emoji. + /// Description: OK hand. + /// + public const string OkHand = "\U0001F44C"; + + /// + /// Gets the "older_person" emoji. + /// Description: Older person. + /// + public const string OlderPerson = "\U0001F9D3"; + + /// + /// Gets the "old_key" emoji. + /// Description: Old key. + /// + public const string OldKey = "\U0001F5DD"; + + /// + /// Gets the "old_man" emoji. + /// Description: Old man. + /// + public const string OldMan = "\U0001F474"; + + /// + /// Gets the "old_woman" emoji. + /// Description: Old woman. + /// + public const string OldWoman = "\U0001F475"; + + /// + /// Gets the "olive" emoji. + /// Description: Olive. + /// + public const string Olive = "\U0001FAD2"; + + /// + /// Gets the "om" emoji. + /// Description: Om. + /// + public const string Om = "\U0001F549"; + + /// + /// Gets the "on_arrow" emoji. + /// Description: ON arrow. + /// + public const string OnArrow = "\U0001F51B"; + + /// + /// Gets the "oncoming_automobile" emoji. + /// Description: Oncoming automobile. + /// + public const string OncomingAutomobile = "\U0001F698"; + + /// + /// Gets the "oncoming_bus" emoji. + /// Description: Oncoming bus. + /// + public const string OncomingBus = "\U0001F68D"; + + /// + /// Gets the "oncoming_fist" emoji. + /// Description: Oncoming fist. + /// + public const string OncomingFist = "\U0001F44A"; + + /// + /// Gets the "oncoming_police_car" emoji. + /// Description: Oncoming police car. + /// + public const string OncomingPoliceCar = "\U0001F694"; + + /// + /// Gets the "oncoming_taxi" emoji. + /// Description: Oncoming taxi. + /// + public const string OncomingTaxi = "\U0001F696"; + + /// + /// Gets the "one_o_clock" emoji. + /// Description: One o clock. + /// + public const string OneOClock = "\U0001F550"; + + /// + /// Gets the "one_piece_swimsuit" emoji. + /// Description: one piece swimsuit. + /// + public const string OnePieceSwimsuit = "\U0001FA71"; + + /// + /// Gets the "one_thirty" emoji. + /// Description: one thirty. + /// + public const string OneThirty = "\U0001F55C"; + + /// + /// Gets the "onion" emoji. + /// Description: Onion. + /// + public const string Onion = "\U0001F9C5"; + + /// + /// Gets the "open_book" emoji. + /// Description: Open book. + /// + public const string OpenBook = "\U0001F4D6"; + + /// + /// Gets the "open_file_folder" emoji. + /// Description: Open file folder. + /// + public const string OpenFileFolder = "\U0001F4C2"; + + /// + /// Gets the "open_hands" emoji. + /// Description: Open hands. + /// + public const string OpenHands = "\U0001F450"; + + /// + /// Gets the "open_mailbox_with_lowered_flag" emoji. + /// Description: Open mailbox with lowered flag. + /// + public const string OpenMailboxWithLoweredFlag = "\U0001F4ED"; + + /// + /// Gets the "open_mailbox_with_raised_flag" emoji. + /// Description: Open mailbox with raised flag. + /// + public const string OpenMailboxWithRaisedFlag = "\U0001F4EC"; + + /// + /// Gets the "ophiuchus" emoji. + /// Description: Ophiuchus. + /// + public const string Ophiuchus = "\U000026CE"; + + /// + /// Gets the "optical_disk" emoji. + /// Description: Optical disk. + /// + public const string OpticalDisk = "\U0001F4BF"; + + /// + /// Gets the "orange_book" emoji. + /// Description: Orange book. + /// + public const string OrangeBook = "\U0001F4D9"; + + /// + /// Gets the "orange_circle" emoji. + /// Description: Orange circle. + /// + public const string OrangeCircle = "\U0001F7E0"; + + /// + /// Gets the "orange_heart" emoji. + /// Description: Orange heart. + /// + public const string OrangeHeart = "\U0001F9E1"; + + /// + /// Gets the "orange_square" emoji. + /// Description: Orange square. + /// + public const string OrangeSquare = "\U0001F7E7"; + + /// + /// Gets the "orangutan" emoji. + /// Description: Orangutan. + /// + public const string Orangutan = "\U0001F9A7"; + + /// + /// Gets the "orthodox_cross" emoji. + /// Description: Orthodox cross. + /// + public const string OrthodoxCross = "\U00002626"; + + /// + /// Gets the "otter" emoji. + /// Description: Otter. + /// + public const string Otter = "\U0001F9A6"; + + /// + /// Gets the "outbox_tray" emoji. + /// Description: Outbox tray. + /// + public const string OutboxTray = "\U0001F4E4"; + + /// + /// Gets the "owl" emoji. + /// Description: Owl. + /// + public const string Owl = "\U0001F989"; + + /// + /// Gets the "ox" emoji. + /// Description: Ox. + /// + public const string Ox = "\U0001F402"; + + /// + /// Gets the "oyster" emoji. + /// Description: Oyster. + /// + public const string Oyster = "\U0001F9AA"; + + /// + /// Gets the "package" emoji. + /// Description: Package. + /// + public const string Package = "\U0001F4E6"; + + /// + /// Gets the "page_facing_up" emoji. + /// Description: Page facing up. + /// + public const string PageFacingUp = "\U0001F4C4"; + + /// + /// Gets the "pager" emoji. + /// Description: Pager. + /// + public const string Pager = "\U0001F4DF"; + + /// + /// Gets the "page_with_curl" emoji. + /// Description: Page with curl. + /// + public const string PageWithCurl = "\U0001F4C3"; + + /// + /// Gets the "paintbrush" emoji. + /// Description: Paintbrush. + /// + public const string Paintbrush = "\U0001F58C"; + + /// + /// Gets the "palms_up_together" emoji. + /// Description: Palms up together. + /// + public const string PalmsUpTogether = "\U0001F932"; + + /// + /// Gets the "palm_tree" emoji. + /// Description: Palm tree. + /// + public const string PalmTree = "\U0001F334"; + + /// + /// Gets the "pancakes" emoji. + /// Description: Pancakes. + /// + public const string Pancakes = "\U0001F95E"; + + /// + /// Gets the "panda" emoji. + /// Description: Panda. + /// + public const string Panda = "\U0001F43C"; + + /// + /// Gets the "paperclip" emoji. + /// Description: Paperclip. + /// + public const string Paperclip = "\U0001F4CE"; + + /// + /// Gets the "parachute" emoji. + /// Description: Parachute. + /// + public const string Parachute = "\U0001FA82"; + + /// + /// Gets the "parrot" emoji. + /// Description: Parrot. + /// + public const string Parrot = "\U0001F99C"; + + /// + /// Gets the "part_alternation_mark" emoji. + /// Description: Part alternation mark. + /// + public const string PartAlternationMark = "\U0000303D"; + + /// + /// Gets the "partying_face" emoji. + /// Description: Partying face. + /// + public const string PartyingFace = "\U0001F973"; + + /// + /// Gets the "party_popper" emoji. + /// Description: Party popper. + /// + public const string PartyPopper = "\U0001F389"; + + /// + /// Gets the "passenger_ship" emoji. + /// Description: Passenger ship. + /// + public const string PassengerShip = "\U0001F6F3"; + + /// + /// Gets the "passport_control" emoji. + /// Description: Passport control. + /// + public const string PassportControl = "\U0001F6C2"; + + /// + /// Gets the "pause_button" emoji. + /// Description: Pause button. + /// + public const string PauseButton = "\U000023F8"; + + /// + /// Gets the "paw_prints" emoji. + /// Description: Paw prints. + /// + public const string PawPrints = "\U0001F43E"; + + /// + /// Gets the "p_button" emoji. + /// Description: P button. + /// + public const string PButton = "\U0001F17F"; + + /// + /// Gets the "peace_symbol" emoji. + /// Description: Peace symbol. + /// + public const string PeaceSymbol = "\U0000262E"; + + /// + /// Gets the "peach" emoji. + /// Description: Peach. + /// + public const string Peach = "\U0001F351"; + + /// + /// Gets the "peacock" emoji. + /// Description: Peacock. + /// + public const string Peacock = "\U0001F99A"; + + /// + /// Gets the "peanuts" emoji. + /// Description: Peanuts. + /// + public const string Peanuts = "\U0001F95C"; + + /// + /// Gets the "pear" emoji. + /// Description: Pear. + /// + public const string Pear = "\U0001F350"; + + /// + /// Gets the "pen" emoji. + /// Description: Pen. + /// + public const string Pen = "\U0001F58A"; + + /// + /// Gets the "pencil" emoji. + /// Description: Pencil. + /// + public const string Pencil = "\U0000270F"; + + /// + /// Gets the "penguin" emoji. + /// Description: Penguin. + /// + public const string Penguin = "\U0001F427"; + + /// + /// Gets the "pensive_face" emoji. + /// Description: Pensive face. + /// + public const string PensiveFace = "\U0001F614"; + + /// + /// Gets the "people_hugging" emoji. + /// Description: People hugging. + /// + public const string PeopleHugging = "\U0001FAC2"; + + /// + /// Gets the "people_with_bunny_ears" emoji. + /// Description: People with bunny ears. + /// + public const string PeopleWithBunnyEars = "\U0001F46F"; + + /// + /// Gets the "people_wrestling" emoji. + /// Description: People wrestling. + /// + public const string PeopleWrestling = "\U0001F93C"; + + /// + /// Gets the "performing_arts" emoji. + /// Description: Performing arts. + /// + public const string PerformingArts = "\U0001F3AD"; + + /// + /// Gets the "persevering_face" emoji. + /// Description: Persevering face. + /// + public const string PerseveringFace = "\U0001F623"; + + /// + /// Gets the "person" emoji. + /// Description: Person. + /// + public const string Person = "\U0001F9D1"; + + /// + /// Gets the "person_beard" emoji. + /// Description: Person beard. + /// + public const string PersonBeard = "\U0001F9D4"; + + /// + /// Gets the "person_biking" emoji. + /// Description: Person biking. + /// + public const string PersonBiking = "\U0001F6B4"; + + /// + /// Gets the "person_blond_hair" emoji. + /// Description: Person blond hair. + /// + public const string PersonBlondHair = "\U0001F471"; + + /// + /// Gets the "person_bouncing_ball" emoji. + /// Description: Person bouncing ball. + /// + public const string PersonBouncingBall = "\U000026F9"; + + /// + /// Gets the "person_bowing" emoji. + /// Description: Person bowing. + /// + public const string PersonBowing = "\U0001F647"; + + /// + /// Gets the "person_cartwheeling" emoji. + /// Description: Person cartwheeling. + /// + public const string PersonCartwheeling = "\U0001F938"; + + /// + /// Gets the "person_climbing" emoji. + /// Description: Person climbing. + /// + public const string PersonClimbing = "\U0001F9D7"; + + /// + /// Gets the "person_facepalming" emoji. + /// Description: Person facepalming. + /// + public const string PersonFacepalming = "\U0001F926"; + + /// + /// Gets the "person_fencing" emoji. + /// Description: Person fencing. + /// + public const string PersonFencing = "\U0001F93A"; + + /// + /// Gets the "person_frowning" emoji. + /// Description: Person frowning. + /// + public const string PersonFrowning = "\U0001F64D"; + + /// + /// Gets the "person_gesturing_no" emoji. + /// Description: Person gesturing NO. + /// + public const string PersonGesturingNo = "\U0001F645"; + + /// + /// Gets the "person_gesturing_ok" emoji. + /// Description: Person gesturing OK. + /// + public const string PersonGesturingOk = "\U0001F646"; + + /// + /// Gets the "person_getting_haircut" emoji. + /// Description: Person getting haircut. + /// + public const string PersonGettingHaircut = "\U0001F487"; + + /// + /// Gets the "person_getting_massage" emoji. + /// Description: Person getting massage. + /// + public const string PersonGettingMassage = "\U0001F486"; + + /// + /// Gets the "person_golfing" emoji. + /// Description: Person golfing. + /// + public const string PersonGolfing = "\U0001F3CC"; + + /// + /// Gets the "person_in_bed" emoji. + /// Description: Person in bed. + /// + public const string PersonInBed = "\U0001F6CC"; + + /// + /// Gets the "person_in_lotus_position" emoji. + /// Description: Person in lotus position. + /// + public const string PersonInLotusPosition = "\U0001F9D8"; + + /// + /// Gets the "person_in_steamy_room" emoji. + /// Description: Person in steamy room. + /// + public const string PersonInSteamyRoom = "\U0001F9D6"; + + /// + /// Gets the "person_in_suit_levitating" emoji. + /// Description: Person in suit levitating. + /// + public const string PersonInSuitLevitating = "\U0001F574"; + + /// + /// Gets the "person_in_tuxedo" emoji. + /// Description: Person in tuxedo. + /// + public const string PersonInTuxedo = "\U0001F935"; + + /// + /// Gets the "person_juggling" emoji. + /// Description: Person juggling. + /// + public const string PersonJuggling = "\U0001F939"; + + /// + /// Gets the "person_kneeling" emoji. + /// Description: Person kneeling. + /// + public const string PersonKneeling = "\U0001F9CE"; + + /// + /// Gets the "person_lifting_weights" emoji. + /// Description: Person lifting weights. + /// + public const string PersonLiftingWeights = "\U0001F3CB"; + + /// + /// Gets the "person_mountain_biking" emoji. + /// Description: Person mountain biking. + /// + public const string PersonMountainBiking = "\U0001F6B5"; + + /// + /// Gets the "person_playing_handball" emoji. + /// Description: Person playing handball. + /// + public const string PersonPlayingHandball = "\U0001F93E"; + + /// + /// Gets the "person_playing_water_polo" emoji. + /// Description: Person playing water polo. + /// + public const string PersonPlayingWaterPolo = "\U0001F93D"; + + /// + /// Gets the "person_pouting" emoji. + /// Description: Person pouting. + /// + public const string PersonPouting = "\U0001F64E"; + + /// + /// Gets the "person_raising_hand" emoji. + /// Description: Person raising hand. + /// + public const string PersonRaisingHand = "\U0001F64B"; + + /// + /// Gets the "person_rowing_boat" emoji. + /// Description: Person rowing boat. + /// + public const string PersonRowingBoat = "\U0001F6A3"; + + /// + /// Gets the "person_running" emoji. + /// Description: Person running. + /// + public const string PersonRunning = "\U0001F3C3"; + + /// + /// Gets the "person_shrugging" emoji. + /// Description: Person shrugging. + /// + public const string PersonShrugging = "\U0001F937"; + + /// + /// Gets the "person_standing" emoji. + /// Description: Person standing. + /// + public const string PersonStanding = "\U0001F9CD"; + + /// + /// Gets the "person_surfing" emoji. + /// Description: Person surfing. + /// + public const string PersonSurfing = "\U0001F3C4"; + + /// + /// Gets the "person_swimming" emoji. + /// Description: Person swimming. + /// + public const string PersonSwimming = "\U0001F3CA"; + + /// + /// Gets the "person_taking_bath" emoji. + /// Description: Person taking bath. + /// + public const string PersonTakingBath = "\U0001F6C0"; + + /// + /// Gets the "person_tipping_hand" emoji. + /// Description: Person tipping hand. + /// + public const string PersonTippingHand = "\U0001F481"; + + /// + /// Gets the "person_walking" emoji. + /// Description: Person walking. + /// + public const string PersonWalking = "\U0001F6B6"; + + /// + /// Gets the "person_wearing_turban" emoji. + /// Description: Person wearing turban. + /// + public const string PersonWearingTurban = "\U0001F473"; + + /// + /// Gets the "person_with_skullcap" emoji. + /// Description: Person with skullcap. + /// + public const string PersonWithSkullcap = "\U0001F472"; + + /// + /// Gets the "person_with_veil" emoji. + /// Description: Person with veil. + /// + public const string PersonWithVeil = "\U0001F470"; + + /// + /// Gets the "petri_dish" emoji. + /// Description: Petri dish. + /// + public const string PetriDish = "\U0001F9EB"; + + /// + /// Gets the "pick" emoji. + /// Description: Pick. + /// + public const string Pick = "\U000026CF"; + + /// + /// Gets the "pickup_truck" emoji. + /// Description: Pickup truck. + /// + public const string PickupTruck = "\U0001F6FB"; + + /// + /// Gets the "pie" emoji. + /// Description: Pie. + /// + public const string Pie = "\U0001F967"; + + /// + /// Gets the "pig" emoji. + /// Description: Pig. + /// + public const string Pig = "\U0001F416"; + + /// + /// Gets the "pig_face" emoji. + /// Description: Pig face. + /// + public const string PigFace = "\U0001F437"; + + /// + /// Gets the "pig_nose" emoji. + /// Description: Pig nose. + /// + public const string PigNose = "\U0001F43D"; + + /// + /// Gets the "pile_of_poo" emoji. + /// Description: Pile of poo. + /// + public const string PileOfPoo = "\U0001F4A9"; + + /// + /// Gets the "pill" emoji. + /// Description: Pill. + /// + public const string Pill = "\U0001F48A"; + + /// + /// Gets the "piñata" emoji. + /// Description: Piñata. + /// + public const string Piñata = "\U0001FA85"; + + /// + /// Gets the "pinched_fingers" emoji. + /// Description: Pinched fingers. + /// + public const string PinchedFingers = "\U0001F90C"; + + /// + /// Gets the "pinching_hand" emoji. + /// Description: Pinching hand. + /// + public const string PinchingHand = "\U0001F90F"; + + /// + /// Gets the "pineapple" emoji. + /// Description: Pineapple. + /// + public const string Pineapple = "\U0001F34D"; + + /// + /// Gets the "pine_decoration" emoji. + /// Description: Pine decoration. + /// + public const string PineDecoration = "\U0001F38D"; + + /// + /// Gets the "ping_pong" emoji. + /// Description: Ping pong. + /// + public const string PingPong = "\U0001F3D3"; + + /// + /// Gets the "pisces" emoji. + /// Description: Pisces. + /// + public const string Pisces = "\U00002653"; + + /// + /// Gets the "pizza" emoji. + /// Description: Pizza. + /// + public const string Pizza = "\U0001F355"; + + /// + /// Gets the "placard" emoji. + /// Description: Placard. + /// + public const string Placard = "\U0001FAA7"; + + /// + /// Gets the "place_of_worship" emoji. + /// Description: Place of worship. + /// + public const string PlaceOfWorship = "\U0001F6D0"; + + /// + /// Gets the "play_button" emoji. + /// Description: Play button. + /// + public const string PlayButton = "\U000025B6"; + + /// + /// Gets the "play_or_pause_button" emoji. + /// Description: Play or pause button. + /// + public const string PlayOrPauseButton = "\U000023EF"; + + /// + /// Gets the "pleading_face" emoji. + /// Description: Pleading face. + /// + public const string PleadingFace = "\U0001F97A"; + + /// + /// Gets the "plunger" emoji. + /// Description: Plunger. + /// + public const string Plunger = "\U0001FAA0"; + + /// + /// Gets the "plus" emoji. + /// Description: Plus. + /// + public const string Plus = "\U00002795"; + + /// + /// Gets the "police_car" emoji. + /// Description: Police car. + /// + public const string PoliceCar = "\U0001F693"; + + /// + /// Gets the "police_car_light" emoji. + /// Description: Police car light. + /// + public const string PoliceCarLight = "\U0001F6A8"; + + /// + /// Gets the "police_officer" emoji. + /// Description: Police officer. + /// + public const string PoliceOfficer = "\U0001F46E"; + + /// + /// Gets the "poodle" emoji. + /// Description: Poodle. + /// + public const string Poodle = "\U0001F429"; + + /// + /// Gets the "pool_8_ball" emoji. + /// Description: Pool 8 ball. + /// + public const string Pool8Ball = "\U0001F3B1"; + + /// + /// Gets the "popcorn" emoji. + /// Description: Popcorn. + /// + public const string Popcorn = "\U0001F37F"; + + /// + /// Gets the "postal_horn" emoji. + /// Description: Postal horn. + /// + public const string PostalHorn = "\U0001F4EF"; + + /// + /// Gets the "postbox" emoji. + /// Description: Postbox. + /// + public const string Postbox = "\U0001F4EE"; + + /// + /// Gets the "post_office" emoji. + /// Description: Post office. + /// + public const string PostOffice = "\U0001F3E4"; + + /// + /// Gets the "potable_water" emoji. + /// Description: Potable water. + /// + public const string PotableWater = "\U0001F6B0"; + + /// + /// Gets the "potato" emoji. + /// Description: Potato. + /// + public const string Potato = "\U0001F954"; + + /// + /// Gets the "pot_of_food" emoji. + /// Description: Pot of food. + /// + public const string PotOfFood = "\U0001F372"; + + /// + /// Gets the "potted_plant" emoji. + /// Description: Potted plant. + /// + public const string PottedPlant = "\U0001FAB4"; + + /// + /// Gets the "poultry_leg" emoji. + /// Description: Poultry leg. + /// + public const string PoultryLeg = "\U0001F357"; + + /// + /// Gets the "pound_banknote" emoji. + /// Description: Pound banknote. + /// + public const string PoundBanknote = "\U0001F4B7"; + + /// + /// Gets the "pouting_cat" emoji. + /// Description: Pouting cat. + /// + public const string PoutingCat = "\U0001F63E"; + + /// + /// Gets the "pouting_face" emoji. + /// Description: Pouting face. + /// + public const string PoutingFace = "\U0001F621"; + + /// + /// Gets the "prayer_beads" emoji. + /// Description: Prayer beads. + /// + public const string PrayerBeads = "\U0001F4FF"; + + /// + /// Gets the "pregnant_woman" emoji. + /// Description: Pregnant woman. + /// + public const string PregnantWoman = "\U0001F930"; + + /// + /// Gets the "pretzel" emoji. + /// Description: Pretzel. + /// + public const string Pretzel = "\U0001F968"; + + /// + /// Gets the "prince" emoji. + /// Description: Prince. + /// + public const string Prince = "\U0001F934"; + + /// + /// Gets the "princess" emoji. + /// Description: Princess. + /// + public const string Princess = "\U0001F478"; + + /// + /// Gets the "printer" emoji. + /// Description: Printer. + /// + public const string Printer = "\U0001F5A8"; + + /// + /// Gets the "prohibited" emoji. + /// Description: Prohibited. + /// + public const string Prohibited = "\U0001F6AB"; + + /// + /// Gets the "purple_circle" emoji. + /// Description: Purple circle. + /// + public const string PurpleCircle = "\U0001F7E3"; + + /// + /// Gets the "purple_heart" emoji. + /// Description: Purple heart. + /// + public const string PurpleHeart = "\U0001F49C"; + + /// + /// Gets the "purple_square" emoji. + /// Description: Purple square. + /// + public const string PurpleSquare = "\U0001F7EA"; + + /// + /// Gets the "purse" emoji. + /// Description: Purse. + /// + public const string Purse = "\U0001F45B"; + + /// + /// Gets the "pushpin" emoji. + /// Description: Pushpin. + /// + public const string Pushpin = "\U0001F4CC"; + + /// + /// Gets the "puzzle_piece" emoji. + /// Description: Puzzle piece. + /// + public const string PuzzlePiece = "\U0001F9E9"; + + /// + /// Gets the "rabbit" emoji. + /// Description: Rabbit. + /// + public const string Rabbit = "\U0001F407"; + + /// + /// Gets the "rabbit_face" emoji. + /// Description: Rabbit face. + /// + public const string RabbitFace = "\U0001F430"; + + /// + /// Gets the "raccoon" emoji. + /// Description: Raccoon. + /// + public const string Raccoon = "\U0001F99D"; + + /// + /// Gets the "racing_car" emoji. + /// Description: Racing car. + /// + public const string RacingCar = "\U0001F3CE"; + + /// + /// Gets the "radio" emoji. + /// Description: Radio. + /// + public const string Radio = "\U0001F4FB"; + + /// + /// Gets the "radioactive" emoji. + /// Description: Radioactive. + /// + public const string Radioactive = "\U00002622"; + + /// + /// Gets the "radio_button" emoji. + /// Description: Radio button. + /// + public const string RadioButton = "\U0001F518"; + + /// + /// Gets the "railway_car" emoji. + /// Description: Railway car. + /// + public const string RailwayCar = "\U0001F683"; + + /// + /// Gets the "railway_track" emoji. + /// Description: Railway track. + /// + public const string RailwayTrack = "\U0001F6E4"; + + /// + /// Gets the "rainbow" emoji. + /// Description: Rainbow. + /// + public const string Rainbow = "\U0001F308"; + + /// + /// Gets the "raised_back_of_hand" emoji. + /// Description: Raised back of hand. + /// + public const string RaisedBackOfHand = "\U0001F91A"; + + /// + /// Gets the "raised_fist" emoji. + /// Description: Raised fist. + /// + public const string RaisedFist = "\U0000270A"; + + /// + /// Gets the "raised_hand" emoji. + /// Description: Raised hand. + /// + public const string RaisedHand = "\U0000270B"; + + /// + /// Gets the "raising_hands" emoji. + /// Description: Raising hands. + /// + public const string RaisingHands = "\U0001F64C"; + + /// + /// Gets the "ram" emoji. + /// Description: Ram. + /// + public const string Ram = "\U0001F40F"; + + /// + /// Gets the "rat" emoji. + /// Description: Rat. + /// + public const string Rat = "\U0001F400"; + + /// + /// Gets the "razor" emoji. + /// Description: Razor. + /// + public const string Razor = "\U0001FA92"; + + /// + /// Gets the "receipt" emoji. + /// Description: Receipt. + /// + public const string Receipt = "\U0001F9FE"; + + /// + /// Gets the "record_button" emoji. + /// Description: Record button. + /// + public const string RecordButton = "\U000023FA"; + + /// + /// Gets the "recycling_symbol" emoji. + /// Description: Recycling symbol. + /// + public const string RecyclingSymbol = "\U0000267B"; + + /// + /// Gets the "red_apple" emoji. + /// Description: Red apple. + /// + public const string RedApple = "\U0001F34E"; + + /// + /// Gets the "red_circle" emoji. + /// Description: Red circle. + /// + public const string RedCircle = "\U0001F534"; + + /// + /// Gets the "red_envelope" emoji. + /// Description: Red envelope. + /// + public const string RedEnvelope = "\U0001F9E7"; + + /// + /// Gets the "red_exclamation_mark" emoji. + /// Description: Red exclamation mark. + /// + public const string RedExclamationMark = "\U00002757"; + + /// + /// Gets the "red_hair" emoji. + /// Description: Red hair. + /// + public const string RedHair = "\U0001F9B0"; + + /// + /// Gets the "red_heart" emoji. + /// Description: Red heart. + /// + public const string RedHeart = "\U00002764"; + + /// + /// Gets the "red_paper_lantern" emoji. + /// Description: Red paper lantern. + /// + public const string RedPaperLantern = "\U0001F3EE"; + + /// + /// Gets the "red_question_mark" emoji. + /// Description: Red question mark. + /// + public const string RedQuestionMark = "\U00002753"; + + /// + /// Gets the "red_square" emoji. + /// Description: Red square. + /// + public const string RedSquare = "\U0001F7E5"; + + /// + /// Gets the "red_triangle_pointed_down" emoji. + /// Description: Red triangle pointed down. + /// + public const string RedTrianglePointedDown = "\U0001F53B"; + + /// + /// Gets the "red_triangle_pointed_up" emoji. + /// Description: Red triangle pointed up. + /// + public const string RedTrianglePointedUp = "\U0001F53A"; + + /// + /// Gets the "registered" emoji. + /// Description: Registered. + /// + public const string Registered = "\U000000AE"; + + /// + /// Gets the "relieved_face" emoji. + /// Description: Relieved face. + /// + public const string RelievedFace = "\U0001F60C"; + + /// + /// Gets the "reminder_ribbon" emoji. + /// Description: Reminder ribbon. + /// + public const string ReminderRibbon = "\U0001F397"; + + /// + /// Gets the "repeat_button" emoji. + /// Description: Repeat button. + /// + public const string RepeatButton = "\U0001F501"; + + /// + /// Gets the "repeat_single_button" emoji. + /// Description: Repeat single button. + /// + public const string RepeatSingleButton = "\U0001F502"; + + /// + /// Gets the "rescue_workers_helmet" emoji. + /// Description: Rescue worker s helmet. + /// + public const string RescueWorkersHelmet = "\U000026D1"; + + /// + /// Gets the "restroom" emoji. + /// Description: Restroom. + /// + public const string Restroom = "\U0001F6BB"; + + /// + /// Gets the "reverse_button" emoji. + /// Description: Reverse button. + /// + public const string ReverseButton = "\U000025C0"; + + /// + /// Gets the "revolving_hearts" emoji. + /// Description: Revolving hearts. + /// + public const string RevolvingHearts = "\U0001F49E"; + + /// + /// Gets the "rhinoceros" emoji. + /// Description: Rhinoceros. + /// + public const string Rhinoceros = "\U0001F98F"; + + /// + /// Gets the "ribbon" emoji. + /// Description: Ribbon. + /// + public const string Ribbon = "\U0001F380"; + + /// + /// Gets the "rice_ball" emoji. + /// Description: Rice ball. + /// + public const string RiceBall = "\U0001F359"; + + /// + /// Gets the "rice_cracker" emoji. + /// Description: Rice cracker. + /// + public const string RiceCracker = "\U0001F358"; + + /// + /// Gets the "right_anger_bubble" emoji. + /// Description: Right anger bubble. + /// + public const string RightAngerBubble = "\U0001F5EF"; + + /// + /// Gets the "right_arrow" emoji. + /// Description: Right arrow. + /// + public const string RightArrow = "\U000027A1"; + + /// + /// Gets the "right_arrow_curving_down" emoji. + /// Description: Right arrow curving down. + /// + public const string RightArrowCurvingDown = "\U00002935"; + + /// + /// Gets the "right_arrow_curving_left" emoji. + /// Description: Right arrow curving left. + /// + public const string RightArrowCurvingLeft = "\U000021A9"; + + /// + /// Gets the "right_arrow_curving_up" emoji. + /// Description: Right arrow curving up. + /// + public const string RightArrowCurvingUp = "\U00002934"; + + /// + /// Gets the "right_facing_fist" emoji. + /// Description: right facing fist. + /// + public const string RightFacingFist = "\U0001F91C"; + + /// + /// Gets the "ring" emoji. + /// Description: Ring. + /// + public const string Ring = "\U0001F48D"; + + /// + /// Gets the "ringed_planet" emoji. + /// Description: Ringed planet. + /// + public const string RingedPlanet = "\U0001FA90"; + + /// + /// Gets the "roasted_sweet_potato" emoji. + /// Description: Roasted sweet potato. + /// + public const string RoastedSweetPotato = "\U0001F360"; + + /// + /// Gets the "robot" emoji. + /// Description: Robot. + /// + public const string Robot = "\U0001F916"; + + /// + /// Gets the "rock" emoji. + /// Description: Rock. + /// + public const string Rock = "\U0001FAA8"; + + /// + /// Gets the "rocket" emoji. + /// Description: Rocket. + /// + public const string Rocket = "\U0001F680"; + + /// + /// Gets the "rolled_up_newspaper" emoji. + /// Description: rolled up newspaper. + /// + public const string RolledUpNewspaper = "\U0001F5DE"; + + /// + /// Gets the "roller_coaster" emoji. + /// Description: Roller coaster. + /// + public const string RollerCoaster = "\U0001F3A2"; + + /// + /// Gets the "roller_skate" emoji. + /// Description: Roller skate. + /// + public const string RollerSkate = "\U0001F6FC"; + + /// + /// Gets the "rolling_on_the_floor_laughing" emoji. + /// Description: Rolling on the floor laughing. + /// + public const string RollingOnTheFloorLaughing = "\U0001F923"; + + /// + /// Gets the "roll_of_paper" emoji. + /// Description: Roll of paper. + /// + public const string RollOfPaper = "\U0001F9FB"; + + /// + /// Gets the "rooster" emoji. + /// Description: Rooster. + /// + public const string Rooster = "\U0001F413"; + + /// + /// Gets the "rose" emoji. + /// Description: Rose. + /// + public const string Rose = "\U0001F339"; + + /// + /// Gets the "rosette" emoji. + /// Description: Rosette. + /// + public const string Rosette = "\U0001F3F5"; + + /// + /// Gets the "round_pushpin" emoji. + /// Description: Round pushpin. + /// + public const string RoundPushpin = "\U0001F4CD"; + + /// + /// Gets the "rugby_football" emoji. + /// Description: Rugby football. + /// + public const string RugbyFootball = "\U0001F3C9"; + + /// + /// Gets the "running_shirt" emoji. + /// Description: Running shirt. + /// + public const string RunningShirt = "\U0001F3BD"; + + /// + /// Gets the "running_shoe" emoji. + /// Description: Running shoe. + /// + public const string RunningShoe = "\U0001F45F"; + + /// + /// Gets the "sad_but_relieved_face" emoji. + /// Description: Sad but relieved face. + /// + public const string SadButRelievedFace = "\U0001F625"; + + /// + /// Gets the "safety_pin" emoji. + /// Description: Safety pin. + /// + public const string SafetyPin = "\U0001F9F7"; + + /// + /// Gets the "safety_vest" emoji. + /// Description: Safety vest. + /// + public const string SafetyVest = "\U0001F9BA"; + + /// + /// Gets the "sagittarius" emoji. + /// Description: Sagittarius. + /// + public const string Sagittarius = "\U00002650"; + + /// + /// Gets the "sailboat" emoji. + /// Description: Sailboat. + /// + public const string Sailboat = "\U000026F5"; + + /// + /// Gets the "sake" emoji. + /// Description: Sake. + /// + public const string Sake = "\U0001F376"; + + /// + /// Gets the "salt" emoji. + /// Description: Salt. + /// + public const string Salt = "\U0001F9C2"; + + /// + /// Gets the "sandwich" emoji. + /// Description: Sandwich. + /// + public const string Sandwich = "\U0001F96A"; + + /// + /// Gets the "santa_claus" emoji. + /// Description: Santa claus. + /// + public const string SantaClaus = "\U0001F385"; + + /// + /// Gets the "sari" emoji. + /// Description: Sari. + /// + public const string Sari = "\U0001F97B"; + + /// + /// Gets the "satellite" emoji. + /// Description: Satellite. + /// + public const string Satellite = "\U0001F6F0"; + + /// + /// Gets the "satellite_antenna" emoji. + /// Description: Satellite antenna. + /// + public const string SatelliteAntenna = "\U0001F4E1"; + + /// + /// Gets the "sauropod" emoji. + /// Description: Sauropod. + /// + public const string Sauropod = "\U0001F995"; + + /// + /// Gets the "saxophone" emoji. + /// Description: Saxophone. + /// + public const string Saxophone = "\U0001F3B7"; + + /// + /// Gets the "scarf" emoji. + /// Description: Scarf. + /// + public const string Scarf = "\U0001F9E3"; + + /// + /// Gets the "school" emoji. + /// Description: School. + /// + public const string School = "\U0001F3EB"; + + /// + /// Gets the "scissors" emoji. + /// Description: Scissors. + /// + public const string Scissors = "\U00002702"; + + /// + /// Gets the "scorpio" emoji. + /// Description: Scorpio. + /// + public const string Scorpio = "\U0000264F"; + + /// + /// Gets the "scorpion" emoji. + /// Description: Scorpion. + /// + public const string Scorpion = "\U0001F982"; + + /// + /// Gets the "screwdriver" emoji. + /// Description: Screwdriver. + /// + public const string Screwdriver = "\U0001FA9B"; + + /// + /// Gets the "scroll" emoji. + /// Description: Scroll. + /// + public const string Scroll = "\U0001F4DC"; + + /// + /// Gets the "seal" emoji. + /// Description: Seal. + /// + public const string Seal = "\U0001F9AD"; + + /// + /// Gets the "seat" emoji. + /// Description: Seat. + /// + public const string Seat = "\U0001F4BA"; + + /// + /// Gets the "2nd_place_medal" emoji. + /// Description: 2nd place medal. + /// + public const string SecondPlaceMedal = "\U0001F948"; + + /// + /// Gets the "seedling" emoji. + /// Description: Seedling. + /// + public const string Seedling = "\U0001F331"; + + /// + /// Gets the "see_no_evil_monkey" emoji. + /// Description: see no evil monkey. + /// + public const string SeeNoEvilMonkey = "\U0001F648"; + + /// + /// Gets the "selfie" emoji. + /// Description: Selfie. + /// + public const string Selfie = "\U0001F933"; + + /// + /// Gets the "seven_o_clock" emoji. + /// Description: Seven o clock. + /// + public const string SevenOClock = "\U0001F556"; + + /// + /// Gets the "seven_thirty" emoji. + /// Description: seven thirty. + /// + public const string SevenThirty = "\U0001F562"; + + /// + /// Gets the "sewing_needle" emoji. + /// Description: Sewing needle. + /// + public const string SewingNeedle = "\U0001FAA1"; + + /// + /// Gets the "shallow_pan_of_food" emoji. + /// Description: Shallow pan of food. + /// + public const string ShallowPanOfFood = "\U0001F958"; + + /// + /// Gets the "shamrock" emoji. + /// Description: Shamrock. + /// + public const string Shamrock = "\U00002618"; + + /// + /// Gets the "shark" emoji. + /// Description: Shark. + /// + public const string Shark = "\U0001F988"; + + /// + /// Gets the "shaved_ice" emoji. + /// Description: Shaved ice. + /// + public const string ShavedIce = "\U0001F367"; + + /// + /// Gets the "sheaf_of_rice" emoji. + /// Description: Sheaf of rice. + /// + public const string SheafOfRice = "\U0001F33E"; + + /// + /// Gets the "shield" emoji. + /// Description: Shield. + /// + public const string Shield = "\U0001F6E1"; + + /// + /// Gets the "shinto_shrine" emoji. + /// Description: Shinto shrine. + /// + public const string ShintoShrine = "\U000026E9"; + + /// + /// Gets the "ship" emoji. + /// Description: Ship. + /// + public const string Ship = "\U0001F6A2"; + + /// + /// Gets the "shooting_star" emoji. + /// Description: Shooting star. + /// + public const string ShootingStar = "\U0001F320"; + + /// + /// Gets the "shopping_bags" emoji. + /// Description: Shopping bags. + /// + public const string ShoppingBags = "\U0001F6CD"; + + /// + /// Gets the "shopping_cart" emoji. + /// Description: Shopping cart. + /// + public const string ShoppingCart = "\U0001F6D2"; + + /// + /// Gets the "shortcake" emoji. + /// Description: Shortcake. + /// + public const string Shortcake = "\U0001F370"; + + /// + /// Gets the "shorts" emoji. + /// Description: Shorts. + /// + public const string Shorts = "\U0001FA73"; + + /// + /// Gets the "shower" emoji. + /// Description: Shower. + /// + public const string Shower = "\U0001F6BF"; + + /// + /// Gets the "shrimp" emoji. + /// Description: Shrimp. + /// + public const string Shrimp = "\U0001F990"; + + /// + /// Gets the "shuffle_tracks_button" emoji. + /// Description: Shuffle tracks button. + /// + public const string ShuffleTracksButton = "\U0001F500"; + + /// + /// Gets the "shushing_face" emoji. + /// Description: Shushing face. + /// + public const string ShushingFace = "\U0001F92B"; + + /// + /// Gets the "sign_of_the_horns" emoji. + /// Description: Sign of the horns. + /// + public const string SignOfTheHorns = "\U0001F918"; + + /// + /// Gets the "six_o_clock" emoji. + /// Description: Six o clock. + /// + public const string SixOClock = "\U0001F555"; + + /// + /// Gets the "six_thirty" emoji. + /// Description: six thirty. + /// + public const string SixThirty = "\U0001F561"; + + /// + /// Gets the "skateboard" emoji. + /// Description: Skateboard. + /// + public const string Skateboard = "\U0001F6F9"; + + /// + /// Gets the "skier" emoji. + /// Description: Skier. + /// + public const string Skier = "\U000026F7"; + + /// + /// Gets the "skis" emoji. + /// Description: Skis. + /// + public const string Skis = "\U0001F3BF"; + + /// + /// Gets the "skull" emoji. + /// Description: Skull. + /// + public const string Skull = "\U0001F480"; + + /// + /// Gets the "skull_and_crossbones" emoji. + /// Description: Skull and crossbones. + /// + public const string SkullAndCrossbones = "\U00002620"; + + /// + /// Gets the "skunk" emoji. + /// Description: Skunk. + /// + public const string Skunk = "\U0001F9A8"; + + /// + /// Gets the "sled" emoji. + /// Description: Sled. + /// + public const string Sled = "\U0001F6F7"; + + /// + /// Gets the "sleeping_face" emoji. + /// Description: Sleeping face. + /// + public const string SleepingFace = "\U0001F634"; + + /// + /// Gets the "sleepy_face" emoji. + /// Description: Sleepy face. + /// + public const string SleepyFace = "\U0001F62A"; + + /// + /// Gets the "slightly_frowning_face" emoji. + /// Description: Slightly frowning face. + /// + public const string SlightlyFrowningFace = "\U0001F641"; + + /// + /// Gets the "slightly_smiling_face" emoji. + /// Description: Slightly smiling face. + /// + public const string SlightlySmilingFace = "\U0001F642"; + + /// + /// Gets the "sloth" emoji. + /// Description: Sloth. + /// + public const string Sloth = "\U0001F9A5"; + + /// + /// Gets the "slot_machine" emoji. + /// Description: Slot machine. + /// + public const string SlotMachine = "\U0001F3B0"; + + /// + /// Gets the "small_airplane" emoji. + /// Description: Small airplane. + /// + public const string SmallAirplane = "\U0001F6E9"; + + /// + /// Gets the "small_blue_diamond" emoji. + /// Description: Small blue diamond. + /// + public const string SmallBlueDiamond = "\U0001F539"; + + /// + /// Gets the "small_orange_diamond" emoji. + /// Description: Small orange diamond. + /// + public const string SmallOrangeDiamond = "\U0001F538"; + + /// + /// Gets the "smiling_cat_with_heart_eyes" emoji. + /// Description: smiling cat with heart eyes. + /// + public const string SmilingCatWithHeartEyes = "\U0001F63B"; + + /// + /// Gets the "smiling_face" emoji. + /// Description: Smiling face. + /// + public const string SmilingFace = "\U0000263A"; + + /// + /// Gets the "smiling_face_with_halo" emoji. + /// Description: Smiling face with halo. + /// + public const string SmilingFaceWithHalo = "\U0001F607"; + + /// + /// Gets the "smiling_face_with_heart_eyes" emoji. + /// Description: smiling face with heart eyes. + /// + public const string SmilingFaceWithHeartEyes = "\U0001F60D"; + + /// + /// Gets the "smiling_face_with_hearts" emoji. + /// Description: Smiling face with hearts. + /// + public const string SmilingFaceWithHearts = "\U0001F970"; + + /// + /// Gets the "smiling_face_with_horns" emoji. + /// Description: Smiling face with horns. + /// + public const string SmilingFaceWithHorns = "\U0001F608"; + + /// + /// Gets the "smiling_face_with_smiling_eyes" emoji. + /// Description: Smiling face with smiling eyes. + /// + public const string SmilingFaceWithSmilingEyes = "\U0001F60A"; + + /// + /// Gets the "smiling_face_with_sunglasses" emoji. + /// Description: Smiling face with sunglasses. + /// + public const string SmilingFaceWithSunglasses = "\U0001F60E"; + + /// + /// Gets the "smiling_face_with_tear" emoji. + /// Description: Smiling face with tear. + /// + public const string SmilingFaceWithTear = "\U0001F972"; + + /// + /// Gets the "smirking_face" emoji. + /// Description: Smirking face. + /// + public const string SmirkingFace = "\U0001F60F"; + + /// + /// Gets the "snail" emoji. + /// Description: Snail. + /// + public const string Snail = "\U0001F40C"; + + /// + /// Gets the "snake" emoji. + /// Description: Snake. + /// + public const string Snake = "\U0001F40D"; + + /// + /// Gets the "sneezing_face" emoji. + /// Description: Sneezing face. + /// + public const string SneezingFace = "\U0001F927"; + + /// + /// Gets the "snowboarder" emoji. + /// Description: Snowboarder. + /// + public const string Snowboarder = "\U0001F3C2"; + + /// + /// Gets the "snow_capped_mountain" emoji. + /// Description: snow capped mountain. + /// + public const string SnowCappedMountain = "\U0001F3D4"; + + /// + /// Gets the "snowflake" emoji. + /// Description: Snowflake. + /// + public const string Snowflake = "\U00002744"; + + /// + /// Gets the "snowman" emoji. + /// Description: Snowman. + /// + public const string Snowman = "\U00002603"; + + /// + /// Gets the "snowman_without_snow" emoji. + /// Description: Snowman without snow. + /// + public const string SnowmanWithoutSnow = "\U000026C4"; + + /// + /// Gets the "soap" emoji. + /// Description: Soap. + /// + public const string Soap = "\U0001F9FC"; + + /// + /// Gets the "soccer_ball" emoji. + /// Description: Soccer ball. + /// + public const string SoccerBall = "\U000026BD"; + + /// + /// Gets the "socks" emoji. + /// Description: Socks. + /// + public const string Socks = "\U0001F9E6"; + + /// + /// Gets the "softball" emoji. + /// Description: Softball. + /// + public const string Softball = "\U0001F94E"; + + /// + /// Gets the "soft_ice_cream" emoji. + /// Description: Soft ice cream. + /// + public const string SoftIceCream = "\U0001F366"; + + /// + /// Gets the "soon_arrow" emoji. + /// Description: SOON arrow. + /// + public const string SoonArrow = "\U0001F51C"; + + /// + /// Gets the "sos_button" emoji. + /// Description: SOS button. + /// + public const string SosButton = "\U0001F198"; + + /// + /// Gets the "spade_suit" emoji. + /// Description: Spade suit. + /// + public const string SpadeSuit = "\U00002660"; + + /// + /// Gets the "spaghetti" emoji. + /// Description: Spaghetti. + /// + public const string Spaghetti = "\U0001F35D"; + + /// + /// Gets the "sparkle" emoji. + /// Description: Sparkle. + /// + public const string Sparkle = "\U00002747"; + + /// + /// Gets the "sparkler" emoji. + /// Description: Sparkler. + /// + public const string Sparkler = "\U0001F387"; + + /// + /// Gets the "sparkles" emoji. + /// Description: Sparkles. + /// + public const string Sparkles = "\U00002728"; + + /// + /// Gets the "sparkling_heart" emoji. + /// Description: Sparkling heart. + /// + public const string SparklingHeart = "\U0001F496"; + + /// + /// Gets the "speaker_high_volume" emoji. + /// Description: Speaker high volume. + /// + public const string SpeakerHighVolume = "\U0001F50A"; + + /// + /// Gets the "speaker_low_volume" emoji. + /// Description: Speaker low volume. + /// + public const string SpeakerLowVolume = "\U0001F508"; + + /// + /// Gets the "speaker_medium_volume" emoji. + /// Description: Speaker medium volume. + /// + public const string SpeakerMediumVolume = "\U0001F509"; + + /// + /// Gets the "speaking_head" emoji. + /// Description: Speaking head. + /// + public const string SpeakingHead = "\U0001F5E3"; + + /// + /// Gets the "speak_no_evil_monkey" emoji. + /// Description: speak no evil monkey. + /// + public const string SpeakNoEvilMonkey = "\U0001F64A"; + + /// + /// Gets the "speech_balloon" emoji. + /// Description: Speech balloon. + /// + public const string SpeechBalloon = "\U0001F4AC"; + + /// + /// Gets the "speedboat" emoji. + /// Description: Speedboat. + /// + public const string Speedboat = "\U0001F6A4"; + + /// + /// Gets the "spider" emoji. + /// Description: Spider. + /// + public const string Spider = "\U0001F577"; + + /// + /// Gets the "spider_web" emoji. + /// Description: Spider web. + /// + public const string SpiderWeb = "\U0001F578"; + + /// + /// Gets the "spiral_calendar" emoji. + /// Description: Spiral calendar. + /// + public const string SpiralCalendar = "\U0001F5D3"; + + /// + /// Gets the "spiral_notepad" emoji. + /// Description: Spiral notepad. + /// + public const string SpiralNotepad = "\U0001F5D2"; + + /// + /// Gets the "spiral_shell" emoji. + /// Description: Spiral shell. + /// + public const string SpiralShell = "\U0001F41A"; + + /// + /// Gets the "sponge" emoji. + /// Description: Sponge. + /// + public const string Sponge = "\U0001F9FD"; + + /// + /// Gets the "spoon" emoji. + /// Description: Spoon. + /// + public const string Spoon = "\U0001F944"; + + /// + /// Gets the "sports_medal" emoji. + /// Description: Sports medal. + /// + public const string SportsMedal = "\U0001F3C5"; + + /// + /// Gets the "sport_utility_vehicle" emoji. + /// Description: Sport utility vehicle. + /// + public const string SportUtilityVehicle = "\U0001F699"; + + /// + /// Gets the "spouting_whale" emoji. + /// Description: Spouting whale. + /// + public const string SpoutingWhale = "\U0001F433"; + + /// + /// Gets the "squid" emoji. + /// Description: Squid. + /// + public const string Squid = "\U0001F991"; + + /// + /// Gets the "squinting_face_with_tongue" emoji. + /// Description: Squinting face with tongue. + /// + public const string SquintingFaceWithTongue = "\U0001F61D"; + + /// + /// Gets the "stadium" emoji. + /// Description: Stadium. + /// + public const string Stadium = "\U0001F3DF"; + + /// + /// Gets the "star" emoji. + /// Description: Star. + /// + public const string Star = "\U00002B50"; + + /// + /// Gets the "star_and_crescent" emoji. + /// Description: Star and crescent. + /// + public const string StarAndCrescent = "\U0000262A"; + + /// + /// Gets the "star_of_david" emoji. + /// Description: Star of david. + /// + public const string StarOfDavid = "\U00002721"; + + /// + /// Gets the "star_struck" emoji. + /// Description: star struck. + /// + public const string StarStruck = "\U0001F929"; + + /// + /// Gets the "station" emoji. + /// Description: Station. + /// + public const string Station = "\U0001F689"; + + /// + /// Gets the "statue_of_liberty" emoji. + /// Description: Statue of liberty. + /// + public const string StatueOfLiberty = "\U0001F5FD"; + + /// + /// Gets the "steaming_bowl" emoji. + /// Description: Steaming bowl. + /// + public const string SteamingBowl = "\U0001F35C"; + + /// + /// Gets the "stethoscope" emoji. + /// Description: Stethoscope. + /// + public const string Stethoscope = "\U0001FA7A"; + + /// + /// Gets the "stop_button" emoji. + /// Description: Stop button. + /// + public const string StopButton = "\U000023F9"; + + /// + /// Gets the "stop_sign" emoji. + /// Description: Stop sign. + /// + public const string StopSign = "\U0001F6D1"; + + /// + /// Gets the "stopwatch" emoji. + /// Description: Stopwatch. + /// + public const string Stopwatch = "\U000023F1"; + + /// + /// Gets the "straight_ruler" emoji. + /// Description: Straight ruler. + /// + public const string StraightRuler = "\U0001F4CF"; + + /// + /// Gets the "strawberry" emoji. + /// Description: Strawberry. + /// + public const string Strawberry = "\U0001F353"; + + /// + /// Gets the "studio_microphone" emoji. + /// Description: Studio microphone. + /// + public const string StudioMicrophone = "\U0001F399"; + + /// + /// Gets the "stuffed_flatbread" emoji. + /// Description: Stuffed flatbread. + /// + public const string StuffedFlatbread = "\U0001F959"; + + /// + /// Gets the "sun" emoji. + /// Description: Sun. + /// + public const string Sun = "\U00002600"; + + /// + /// Gets the "sun_behind_cloud" emoji. + /// Description: Sun behind cloud. + /// + public const string SunBehindCloud = "\U000026C5"; + + /// + /// Gets the "sun_behind_large_cloud" emoji. + /// Description: Sun behind large cloud. + /// + public const string SunBehindLargeCloud = "\U0001F325"; + + /// + /// Gets the "sun_behind_rain_cloud" emoji. + /// Description: Sun behind rain cloud. + /// + public const string SunBehindRainCloud = "\U0001F326"; + + /// + /// Gets the "sun_behind_small_cloud" emoji. + /// Description: Sun behind small cloud. + /// + public const string SunBehindSmallCloud = "\U0001F324"; + + /// + /// Gets the "sunflower" emoji. + /// Description: Sunflower. + /// + public const string Sunflower = "\U0001F33B"; + + /// + /// Gets the "sunglasses" emoji. + /// Description: Sunglasses. + /// + public const string Sunglasses = "\U0001F576"; + + /// + /// Gets the "sunrise" emoji. + /// Description: Sunrise. + /// + public const string Sunrise = "\U0001F305"; + + /// + /// Gets the "sunrise_over_mountains" emoji. + /// Description: Sunrise over mountains. + /// + public const string SunriseOverMountains = "\U0001F304"; + + /// + /// Gets the "sunset" emoji. + /// Description: Sunset. + /// + public const string Sunset = "\U0001F307"; + + /// + /// Gets the "sun_with_face" emoji. + /// Description: Sun with face. + /// + public const string SunWithFace = "\U0001F31E"; + + /// + /// Gets the "superhero" emoji. + /// Description: Superhero. + /// + public const string Superhero = "\U0001F9B8"; + + /// + /// Gets the "supervillain" emoji. + /// Description: Supervillain. + /// + public const string Supervillain = "\U0001F9B9"; + + /// + /// Gets the "sushi" emoji. + /// Description: Sushi. + /// + public const string Sushi = "\U0001F363"; + + /// + /// Gets the "suspension_railway" emoji. + /// Description: Suspension railway. + /// + public const string SuspensionRailway = "\U0001F69F"; + + /// + /// Gets the "swan" emoji. + /// Description: Swan. + /// + public const string Swan = "\U0001F9A2"; + + /// + /// Gets the "sweat_droplets" emoji. + /// Description: Sweat droplets. + /// + public const string SweatDroplets = "\U0001F4A6"; + + /// + /// Gets the "synagogue" emoji. + /// Description: Synagogue. + /// + public const string Synagogue = "\U0001F54D"; + + /// + /// Gets the "syringe" emoji. + /// Description: Syringe. + /// + public const string Syringe = "\U0001F489"; + + /// + /// Gets the "taco" emoji. + /// Description: Taco. + /// + public const string Taco = "\U0001F32E"; + + /// + /// Gets the "takeout_box" emoji. + /// Description: Takeout box. + /// + public const string TakeoutBox = "\U0001F961"; + + /// + /// Gets the "tamale" emoji. + /// Description: Tamale. + /// + public const string Tamale = "\U0001FAD4"; + + /// + /// Gets the "tanabata_tree" emoji. + /// Description: Tanabata tree. + /// + public const string TanabataTree = "\U0001F38B"; + + /// + /// Gets the "tangerine" emoji. + /// Description: Tangerine. + /// + public const string Tangerine = "\U0001F34A"; + + /// + /// Gets the "taurus" emoji. + /// Description: Taurus. + /// + public const string Taurus = "\U00002649"; + + /// + /// Gets the "taxi" emoji. + /// Description: Taxi. + /// + public const string Taxi = "\U0001F695"; + + /// + /// Gets the "teacup_without_handle" emoji. + /// Description: Teacup without handle. + /// + public const string TeacupWithoutHandle = "\U0001F375"; + + /// + /// Gets the "teapot" emoji. + /// Description: Teapot. + /// + public const string Teapot = "\U0001FAD6"; + + /// + /// Gets the "tear_off_calendar" emoji. + /// Description: tear off calendar. + /// + public const string TearOffCalendar = "\U0001F4C6"; + + /// + /// Gets the "teddy_bear" emoji. + /// Description: Teddy bear. + /// + public const string TeddyBear = "\U0001F9F8"; + + /// + /// Gets the "telephone" emoji. + /// Description: Telephone. + /// + public const string Telephone = "\U0000260E"; + + /// + /// Gets the "telephone_receiver" emoji. + /// Description: Telephone receiver. + /// + public const string TelephoneReceiver = "\U0001F4DE"; + + /// + /// Gets the "telescope" emoji. + /// Description: Telescope. + /// + public const string Telescope = "\U0001F52D"; + + /// + /// Gets the "television" emoji. + /// Description: Television. + /// + public const string Television = "\U0001F4FA"; + + /// + /// Gets the "tennis" emoji. + /// Description: Tennis. + /// + public const string Tennis = "\U0001F3BE"; + + /// + /// Gets the "ten_o_clock" emoji. + /// Description: Ten o clock. + /// + public const string TenOClock = "\U0001F559"; + + /// + /// Gets the "tent" emoji. + /// Description: Tent. + /// + public const string Tent = "\U000026FA"; + + /// + /// Gets the "ten_thirty" emoji. + /// Description: ten thirty. + /// + public const string TenThirty = "\U0001F565"; + + /// + /// Gets the "test_tube" emoji. + /// Description: Test tube. + /// + public const string TestTube = "\U0001F9EA"; + + /// + /// Gets the "thermometer" emoji. + /// Description: Thermometer. + /// + public const string Thermometer = "\U0001F321"; + + /// + /// Gets the "thinking_face" emoji. + /// Description: Thinking face. + /// + public const string ThinkingFace = "\U0001F914"; + + /// + /// Gets the "3rd_place_medal" emoji. + /// Description: 3rd place medal. + /// + public const string ThirdPlaceMedal = "\U0001F949"; + + /// + /// Gets the "thong_sandal" emoji. + /// Description: Thong sandal. + /// + public const string ThongSandal = "\U0001FA74"; + + /// + /// Gets the "thought_balloon" emoji. + /// Description: Thought balloon. + /// + public const string ThoughtBalloon = "\U0001F4AD"; + + /// + /// Gets the "thread" emoji. + /// Description: Thread. + /// + public const string Thread = "\U0001F9F5"; + + /// + /// Gets the "three_o_clock" emoji. + /// Description: Three o clock. + /// + public const string ThreeOClock = "\U0001F552"; + + /// + /// Gets the "three_thirty" emoji. + /// Description: three thirty. + /// + public const string ThreeThirty = "\U0001F55E"; + + /// + /// Gets the "thumbs_down" emoji. + /// Description: Thumbs down. + /// + public const string ThumbsDown = "\U0001F44E"; + + /// + /// Gets the "thumbs_up" emoji. + /// Description: Thumbs up. + /// + public const string ThumbsUp = "\U0001F44D"; + + /// + /// Gets the "ticket" emoji. + /// Description: Ticket. + /// + public const string Ticket = "\U0001F3AB"; + + /// + /// Gets the "tiger" emoji. + /// Description: Tiger. + /// + public const string Tiger = "\U0001F405"; + + /// + /// Gets the "tiger_face" emoji. + /// Description: Tiger face. + /// + public const string TigerFace = "\U0001F42F"; + + /// + /// Gets the "timer_clock" emoji. + /// Description: Timer clock. + /// + public const string TimerClock = "\U000023F2"; + + /// + /// Gets the "tired_face" emoji. + /// Description: Tired face. + /// + public const string TiredFace = "\U0001F62B"; + + /// + /// Gets the "toilet" emoji. + /// Description: Toilet. + /// + public const string Toilet = "\U0001F6BD"; + + /// + /// Gets the "tokyo_tower" emoji. + /// Description: Tokyo tower. + /// + public const string TokyoTower = "\U0001F5FC"; + + /// + /// Gets the "tomato" emoji. + /// Description: Tomato. + /// + public const string Tomato = "\U0001F345"; + + /// + /// Gets the "tongue" emoji. + /// Description: Tongue. + /// + public const string Tongue = "\U0001F445"; + + /// + /// Gets the "toolbox" emoji. + /// Description: Toolbox. + /// + public const string Toolbox = "\U0001F9F0"; + + /// + /// Gets the "tooth" emoji. + /// Description: Tooth. + /// + public const string Tooth = "\U0001F9B7"; + + /// + /// Gets the "toothbrush" emoji. + /// Description: Toothbrush. + /// + public const string Toothbrush = "\U0001FAA5"; + + /// + /// Gets the "top_arrow" emoji. + /// Description: TOP arrow. + /// + public const string TopArrow = "\U0001F51D"; + + /// + /// Gets the "top_hat" emoji. + /// Description: Top hat. + /// + public const string TopHat = "\U0001F3A9"; + + /// + /// Gets the "tornado" emoji. + /// Description: Tornado. + /// + public const string Tornado = "\U0001F32A"; + + /// + /// Gets the "trackball" emoji. + /// Description: Trackball. + /// + public const string Trackball = "\U0001F5B2"; + + /// + /// Gets the "tractor" emoji. + /// Description: Tractor. + /// + public const string Tractor = "\U0001F69C"; + + /// + /// Gets the "trade_mark" emoji. + /// Description: Trade mark. + /// + public const string TradeMark = "\U00002122"; + + /// + /// Gets the "train" emoji. + /// Description: Train. + /// + public const string Train = "\U0001F686"; + + /// + /// Gets the "tram" emoji. + /// Description: Tram. + /// + public const string Tram = "\U0001F68A"; + + /// + /// Gets the "tram_car" emoji. + /// Description: Tram car. + /// + public const string TramCar = "\U0001F68B"; + + /// + /// Gets the "transgender_symbol" emoji. + /// Description: Transgender symbol. + /// + public const string TransgenderSymbol = "\U000026A7"; + + /// + /// Gets the "t_rex" emoji. + /// Description: T Rex. + /// + public const string TRex = "\U0001F996"; + + /// + /// Gets the "triangular_flag" emoji. + /// Description: Triangular flag. + /// + public const string TriangularFlag = "\U0001F6A9"; + + /// + /// Gets the "triangular_ruler" emoji. + /// Description: Triangular ruler. + /// + public const string TriangularRuler = "\U0001F4D0"; + + /// + /// Gets the "trident_emblem" emoji. + /// Description: Trident emblem. + /// + public const string TridentEmblem = "\U0001F531"; + + /// + /// Gets the "trolleybus" emoji. + /// Description: Trolleybus. + /// + public const string Trolleybus = "\U0001F68E"; + + /// + /// Gets the "trophy" emoji. + /// Description: Trophy. + /// + public const string Trophy = "\U0001F3C6"; + + /// + /// Gets the "tropical_drink" emoji. + /// Description: Tropical drink. + /// + public const string TropicalDrink = "\U0001F379"; + + /// + /// Gets the "tropical_fish" emoji. + /// Description: Tropical fish. + /// + public const string TropicalFish = "\U0001F420"; + + /// + /// Gets the "trumpet" emoji. + /// Description: Trumpet. + /// + public const string Trumpet = "\U0001F3BA"; + + /// + /// Gets the "t_shirt" emoji. + /// Description: t shirt. + /// + public const string TShirt = "\U0001F455"; + + /// + /// Gets the "tulip" emoji. + /// Description: Tulip. + /// + public const string Tulip = "\U0001F337"; + + /// + /// Gets the "tumbler_glass" emoji. + /// Description: Tumbler glass. + /// + public const string TumblerGlass = "\U0001F943"; + + /// + /// Gets the "turkey" emoji. + /// Description: Turkey. + /// + public const string Turkey = "\U0001F983"; + + /// + /// Gets the "turtle" emoji. + /// Description: Turtle. + /// + public const string Turtle = "\U0001F422"; + + /// + /// Gets the "twelve_o_clock" emoji. + /// Description: Twelve o clock. + /// + public const string TwelveOClock = "\U0001F55B"; + + /// + /// Gets the "twelve_thirty" emoji. + /// Description: twelve thirty. + /// + public const string TwelveThirty = "\U0001F567"; + + /// + /// Gets the "two_hearts" emoji. + /// Description: Two hearts. + /// + public const string TwoHearts = "\U0001F495"; + + /// + /// Gets the "two_hump_camel" emoji. + /// Description: two hump camel. + /// + public const string TwoHumpCamel = "\U0001F42B"; + + /// + /// Gets the "two_o_clock" emoji. + /// Description: Two o clock. + /// + public const string TwoOClock = "\U0001F551"; + + /// + /// Gets the "two_thirty" emoji. + /// Description: two thirty. + /// + public const string TwoThirty = "\U0001F55D"; + + /// + /// Gets the "umbrella" emoji. + /// Description: Umbrella. + /// + public const string Umbrella = "\U00002602"; + + /// + /// Gets the "umbrella_on_ground" emoji. + /// Description: Umbrella on ground. + /// + public const string UmbrellaOnGround = "\U000026F1"; + + /// + /// Gets the "umbrella_with_rain_drops" emoji. + /// Description: Umbrella with rain drops. + /// + public const string UmbrellaWithRainDrops = "\U00002614"; + + /// + /// Gets the "unamused_face" emoji. + /// Description: Unamused face. + /// + public const string UnamusedFace = "\U0001F612"; + + /// + /// Gets the "unicorn" emoji. + /// Description: Unicorn. + /// + public const string Unicorn = "\U0001F984"; + + /// + /// Gets the "unlocked" emoji. + /// Description: Unlocked. + /// + public const string Unlocked = "\U0001F513"; + + /// + /// Gets the "up_arrow" emoji. + /// Description: Up arrow. + /// + public const string UpArrow = "\U00002B06"; + + /// + /// Gets the "up_button" emoji. + /// Description: UP button. + /// + public const string UpButton = "\U0001F199"; + + /// + /// Gets the "up_down_arrow" emoji. + /// Description: up down arrow. + /// + public const string UpDownArrow = "\U00002195"; + + /// + /// Gets the "up_left_arrow" emoji. + /// Description: up left arrow. + /// + public const string UpLeftArrow = "\U00002196"; + + /// + /// Gets the "up_right_arrow" emoji. + /// Description: up right arrow. + /// + public const string UpRightArrow = "\U00002197"; + + /// + /// Gets the "upside_down_face" emoji. + /// Description: upside down face. + /// + public const string UpsideDownFace = "\U0001F643"; + + /// + /// Gets the "upwards_button" emoji. + /// Description: Upwards button. + /// + public const string UpwardsButton = "\U0001F53C"; + + /// + /// Gets the "vampire" emoji. + /// Description: Vampire. + /// + public const string Vampire = "\U0001F9DB"; + + /// + /// Gets the "vertical_traffic_light" emoji. + /// Description: Vertical traffic light. + /// + public const string VerticalTrafficLight = "\U0001F6A6"; + + /// + /// Gets the "vibration_mode" emoji. + /// Description: Vibration mode. + /// + public const string VibrationMode = "\U0001F4F3"; + + /// + /// Gets the "victory_hand" emoji. + /// Description: Victory hand. + /// + public const string VictoryHand = "\U0000270C"; + + /// + /// Gets the "video_camera" emoji. + /// Description: Video camera. + /// + public const string VideoCamera = "\U0001F4F9"; + + /// + /// Gets the "videocassette" emoji. + /// Description: Videocassette. + /// + public const string Videocassette = "\U0001F4FC"; + + /// + /// Gets the "video_game" emoji. + /// Description: Video game. + /// + public const string VideoGame = "\U0001F3AE"; + + /// + /// Gets the "violin" emoji. + /// Description: Violin. + /// + public const string Violin = "\U0001F3BB"; + + /// + /// Gets the "virgo" emoji. + /// Description: Virgo. + /// + public const string Virgo = "\U0000264D"; + + /// + /// Gets the "volcano" emoji. + /// Description: Volcano. + /// + public const string Volcano = "\U0001F30B"; + + /// + /// Gets the "volleyball" emoji. + /// Description: Volleyball. + /// + public const string Volleyball = "\U0001F3D0"; + + /// + /// Gets the "vs_button" emoji. + /// Description: VS button. + /// + public const string VsButton = "\U0001F19A"; + + /// + /// Gets the "vulcan_salute" emoji. + /// Description: Vulcan salute. + /// + public const string VulcanSalute = "\U0001F596"; + + /// + /// Gets the "waffle" emoji. + /// Description: Waffle. + /// + public const string Waffle = "\U0001F9C7"; + + /// + /// Gets the "waning_crescent_moon" emoji. + /// Description: Waning crescent moon. + /// + public const string WaningCrescentMoon = "\U0001F318"; + + /// + /// Gets the "waning_gibbous_moon" emoji. + /// Description: Waning gibbous moon. + /// + public const string WaningGibbousMoon = "\U0001F316"; + + /// + /// Gets the "warning" emoji. + /// Description: Warning. + /// + public const string Warning = "\U000026A0"; + + /// + /// Gets the "wastebasket" emoji. + /// Description: Wastebasket. + /// + public const string Wastebasket = "\U0001F5D1"; + + /// + /// Gets the "watch" emoji. + /// Description: Watch. + /// + public const string Watch = "\U0000231A"; + + /// + /// Gets the "water_buffalo" emoji. + /// Description: Water buffalo. + /// + public const string WaterBuffalo = "\U0001F403"; + + /// + /// Gets the "water_closet" emoji. + /// Description: Water closet. + /// + public const string WaterCloset = "\U0001F6BE"; + + /// + /// Gets the "watermelon" emoji. + /// Description: Watermelon. + /// + public const string Watermelon = "\U0001F349"; + + /// + /// Gets the "water_pistol" emoji. + /// Description: Water pistol. + /// + public const string WaterPistol = "\U0001F52B"; + + /// + /// Gets the "water_wave" emoji. + /// Description: Water wave. + /// + public const string WaterWave = "\U0001F30A"; + + /// + /// Gets the "waving_hand" emoji. + /// Description: Waving hand. + /// + public const string WavingHand = "\U0001F44B"; + + /// + /// Gets the "wavy_dash" emoji. + /// Description: Wavy dash. + /// + public const string WavyDash = "\U00003030"; + + /// + /// Gets the "waxing_crescent_moon" emoji. + /// Description: Waxing crescent moon. + /// + public const string WaxingCrescentMoon = "\U0001F312"; + + /// + /// Gets the "waxing_gibbous_moon" emoji. + /// Description: Waxing gibbous moon. + /// + public const string WaxingGibbousMoon = "\U0001F314"; + + /// + /// Gets the "weary_cat" emoji. + /// Description: Weary cat. + /// + public const string WearyCat = "\U0001F640"; + + /// + /// Gets the "weary_face" emoji. + /// Description: Weary face. + /// + public const string WearyFace = "\U0001F629"; + + /// + /// Gets the "wedding" emoji. + /// Description: Wedding. + /// + public const string Wedding = "\U0001F492"; + + /// + /// Gets the "whale" emoji. + /// Description: Whale. + /// + public const string Whale = "\U0001F40B"; + + /// + /// Gets the "wheelchair_symbol" emoji. + /// Description: Wheelchair symbol. + /// + public const string WheelchairSymbol = "\U0000267F"; + + /// + /// Gets the "wheel_of_dharma" emoji. + /// Description: Wheel of dharma. + /// + public const string WheelOfDharma = "\U00002638"; + + /// + /// Gets the "white_cane" emoji. + /// Description: White cane. + /// + public const string WhiteCane = "\U0001F9AF"; + + /// + /// Gets the "white_circle" emoji. + /// Description: White circle. + /// + public const string WhiteCircle = "\U000026AA"; + + /// + /// Gets the "white_exclamation_mark" emoji. + /// Description: White exclamation mark. + /// + public const string WhiteExclamationMark = "\U00002755"; + + /// + /// Gets the "white_flag" emoji. + /// Description: White flag. + /// + public const string WhiteFlag = "\U0001F3F3"; + + /// + /// Gets the "white_flower" emoji. + /// Description: White flower. + /// + public const string WhiteFlower = "\U0001F4AE"; + + /// + /// Gets the "white_hair" emoji. + /// Description: White hair. + /// + public const string WhiteHair = "\U0001F9B3"; + + /// + /// Gets the "white_heart" emoji. + /// Description: White heart. + /// + public const string WhiteHeart = "\U0001F90D"; + + /// + /// Gets the "white_large_square" emoji. + /// Description: White large square. + /// + public const string WhiteLargeSquare = "\U00002B1C"; + + /// + /// Gets the "white_medium_small_square" emoji. + /// Description: white medium small square. + /// + public const string WhiteMediumSmallSquare = "\U000025FD"; + + /// + /// Gets the "white_medium_square" emoji. + /// Description: White medium square. + /// + public const string WhiteMediumSquare = "\U000025FB"; + + /// + /// Gets the "white_question_mark" emoji. + /// Description: White question mark. + /// + public const string WhiteQuestionMark = "\U00002754"; + + /// + /// Gets the "white_small_square" emoji. + /// Description: White small square. + /// + public const string WhiteSmallSquare = "\U000025AB"; + + /// + /// Gets the "white_square_button" emoji. + /// Description: White square button. + /// + public const string WhiteSquareButton = "\U0001F533"; + + /// + /// Gets the "wilted_flower" emoji. + /// Description: Wilted flower. + /// + public const string WiltedFlower = "\U0001F940"; + + /// + /// Gets the "wind_chime" emoji. + /// Description: Wind chime. + /// + public const string WindChime = "\U0001F390"; + + /// + /// Gets the "wind_face" emoji. + /// Description: Wind face. + /// + public const string WindFace = "\U0001F32C"; + + /// + /// Gets the "window" emoji. + /// Description: Window. + /// + public const string Window = "\U0001FA9F"; + + /// + /// Gets the "wine_glass" emoji. + /// Description: Wine glass. + /// + public const string WineGlass = "\U0001F377"; + + /// + /// Gets the "winking_face" emoji. + /// Description: Winking face. + /// + public const string WinkingFace = "\U0001F609"; + + /// + /// Gets the "winking_face_with_tongue" emoji. + /// Description: Winking face with tongue. + /// + public const string WinkingFaceWithTongue = "\U0001F61C"; + + /// + /// Gets the "wolf" emoji. + /// Description: Wolf. + /// + public const string Wolf = "\U0001F43A"; + + /// + /// Gets the "woman" emoji. + /// Description: Woman. + /// + public const string Woman = "\U0001F469"; + + /// + /// Gets the "woman_and_man_holding_hands" emoji. + /// Description: Woman and man holding hands. + /// + public const string WomanAndManHoldingHands = "\U0001F46B"; + + /// + /// Gets the "woman_dancing" emoji. + /// Description: Woman dancing. + /// + public const string WomanDancing = "\U0001F483"; + + /// + /// Gets the "womans_boot" emoji. + /// Description: Woman s boot. + /// + public const string WomansBoot = "\U0001F462"; + + /// + /// Gets the "womans_clothes" emoji. + /// Description: Woman s clothes. + /// + public const string WomansClothes = "\U0001F45A"; + + /// + /// Gets the "womans_hat" emoji. + /// Description: Woman s hat. + /// + public const string WomansHat = "\U0001F452"; + + /// + /// Gets the "womans_sandal" emoji. + /// Description: Woman s sandal. + /// + public const string WomansSandal = "\U0001F461"; + + /// + /// Gets the "woman_with_headscarf" emoji. + /// Description: Woman with headscarf. + /// + public const string WomanWithHeadscarf = "\U0001F9D5"; + + /// + /// Gets the "women_holding_hands" emoji. + /// Description: Women holding hands. + /// + public const string WomenHoldingHands = "\U0001F46D"; + + /// + /// Gets the "womens_room" emoji. + /// Description: Women s room. + /// + public const string WomensRoom = "\U0001F6BA"; + + /// + /// Gets the "wood" emoji. + /// Description: Wood. + /// + public const string Wood = "\U0001FAB5"; + + /// + /// Gets the "woozy_face" emoji. + /// Description: Woozy face. + /// + public const string WoozyFace = "\U0001F974"; + + /// + /// Gets the "world_map" emoji. + /// Description: World map. + /// + public const string WorldMap = "\U0001F5FA"; + + /// + /// Gets the "worm" emoji. + /// Description: Worm. + /// + public const string Worm = "\U0001FAB1"; + + /// + /// Gets the "worried_face" emoji. + /// Description: Worried face. + /// + public const string WorriedFace = "\U0001F61F"; + + /// + /// Gets the "wrapped_gift" emoji. + /// Description: Wrapped gift. + /// + public const string WrappedGift = "\U0001F381"; + + /// + /// Gets the "wrench" emoji. + /// Description: Wrench. + /// + public const string Wrench = "\U0001F527"; + + /// + /// Gets the "writing_hand" emoji. + /// Description: Writing hand. + /// + public const string WritingHand = "\U0000270D"; + + /// + /// Gets the "yarn" emoji. + /// Description: Yarn. + /// + public const string Yarn = "\U0001F9F6"; + + /// + /// Gets the "yawning_face" emoji. + /// Description: Yawning face. + /// + public const string YawningFace = "\U0001F971"; + + /// + /// Gets the "yellow_circle" emoji. + /// Description: Yellow circle. + /// + public const string YellowCircle = "\U0001F7E1"; + + /// + /// Gets the "yellow_heart" emoji. + /// Description: Yellow heart. + /// + public const string YellowHeart = "\U0001F49B"; + + /// + /// Gets the "yellow_square" emoji. + /// Description: Yellow square. + /// + public const string YellowSquare = "\U0001F7E8"; + + /// + /// Gets the "yen_banknote" emoji. + /// Description: Yen banknote. + /// + public const string YenBanknote = "\U0001F4B4"; + + /// + /// Gets the "yin_yang" emoji. + /// Description: Yin yang. + /// + public const string YinYang = "\U0000262F"; + + /// + /// Gets the "yo_yo" emoji. + /// Description: yo yo. + /// + public const string YoYo = "\U0001FA80"; + + /// + /// Gets the "zany_face" emoji. + /// Description: Zany face. + /// + public const string ZanyFace = "\U0001F92A"; + + /// + /// Gets the "zebra" emoji. + /// Description: Zebra. + /// + public const string Zebra = "\U0001F993"; + + /// + /// Gets the "zipper_mouth_face" emoji. + /// Description: zipper mouth face. + /// + public const string ZipperMouthFace = "\U0001F910"; + + /// + /// Gets the "zombie" emoji. + /// Description: Zombie. + /// + public const string Zombie = "\U0001F9DF"; + + /// + /// Gets the "zzz" emoji. + /// Description: Zzz. + /// + public const string Zzz = "\U0001F4A4"; + } } } diff --git a/src/Spectre.Console/Emoji.cs b/src/Spectre.Console/Emoji.cs index c489d03..0d9e604 100644 --- a/src/Spectre.Console/Emoji.cs +++ b/src/Spectre.Console/Emoji.cs @@ -3,9 +3,9 @@ using System.Text.RegularExpressions; namespace Spectre.Console { /// - /// Utility class for working with emojis. + /// Utility for working with emojis. /// - internal static partial class Emoji + public static partial class Emoji { private static readonly Regex _emojiCode = new Regex(@"(:(\S*?):)", RegexOptions.Compiled); diff --git a/src/Spectre.Console/Internal/Colors/ColorPalette.Generated.cs b/src/Spectre.Console/Internal/Colors/ColorPalette.Generated.cs index 0f4fc9e..169bc47 100644 --- a/src/Spectre.Console/Internal/Colors/ColorPalette.Generated.cs +++ b/src/Spectre.Console/Internal/Colors/ColorPalette.Generated.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Generated 2020-08-03 15:17 +// Generated 2020-09-18 10:42 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Spectre.Console/Internal/Colors/ColorTable.Generated.cs b/src/Spectre.Console/Internal/Colors/ColorTable.Generated.cs index 7741f13..d76f334 100644 --- a/src/Spectre.Console/Internal/Colors/ColorTable.Generated.cs +++ b/src/Spectre.Console/Internal/Colors/ColorTable.Generated.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Generated 2020-08-03 15:17 +// Generated 2020-09-18 10:42 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. diff --git a/src/Spectre.Console/Internal/Text/Markup/MarkupParser.cs b/src/Spectre.Console/Internal/Text/Markup/MarkupParser.cs index 2d3d816..3118773 100644 --- a/src/Spectre.Console/Internal/Text/Markup/MarkupParser.cs +++ b/src/Spectre.Console/Internal/Text/Markup/MarkupParser.cs @@ -8,6 +8,12 @@ namespace Spectre.Console.Internal { public static Paragraph Parse(string text, Style? style = null) { + if (text is null) + { + throw new ArgumentNullException(nameof(text)); + } + + text = Emoji.Replace(text); style ??= Style.Plain; var result = new Paragraph(); diff --git a/src/Spectre.Console/Rendering/Segment.cs b/src/Spectre.Console/Rendering/Segment.cs index 4833b88..3020ce5 100644 --- a/src/Spectre.Console/Rendering/Segment.cs +++ b/src/Spectre.Console/Rendering/Segment.cs @@ -71,7 +71,7 @@ namespace Spectre.Console.Rendering throw new ArgumentNullException(nameof(text)); } - Text = Emoji.Replace(text).NormalizeLineEndings(); + Text = text.NormalizeLineEndings(); Style = style; IsLineBreak = lineBreak; IsWhiteSpace = string.IsNullOrWhiteSpace(text);