TelegramBots / Telegram.Bot

.NET Client for Telegram Bot API
https://telegrambots.github.io/book
MIT License
3.11k stars 683 forks source link

Emoji class #991

Closed hrishynpavlo closed 3 years ago

hrishynpavlo commented 3 years ago

I would like to propose a static class with Emoji.

It would be great and useful to send emoji as a member of a static class (like constant) instead of Unicode or something else.

I've prepared the class based on https://apps.timwhitlock.info/emoji/tables/unicode below: (I've tried to create a pull request, but I don't have permissions to do it)

namespace Telegram.Bot.Emojis
{
    /// <summary>
    /// Provides Emoji as constants from <see href="https://apps.timwhitlock.info/emoji/tables/unicode">emoji unicode table.</see>
    /// </summary>
    public static class Emoji
    {
        public readonly static string GRINNING_FACE_WITH_SMILING_EYES = char.ConvertFromUtf32(0x1F601);
        public readonly static string FACE_WITH_TEARS_OF_JOY = char.ConvertFromUtf32(0x1F602);
        public readonly static string SMILING_FACE_WITH_OPEN_MOUTH = char.ConvertFromUtf32(0x1F603);
        public readonly static string SMILING_FACE_WITH_OPEN_MOUTH_AND_SMILING_EYES = char.ConvertFromUtf32(0x1F604);
        public readonly static string SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT = char.ConvertFromUtf32(0x1F605);
        public readonly static string SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY_CLOSED_EYES = char.ConvertFromUtf32(0x1F606);
        public readonly static string WINKING_FACE = char.ConvertFromUtf32(0x1F609);
        public readonly static string SMILING_FACE_WITH_SMILING_EYES = char.ConvertFromUtf32(0x1F60A);
        public readonly static string FACE_SAVOURING_DELICIOUS_FOOD = char.ConvertFromUtf32(0x1F60B);
        public readonly static string RELIEVED_FACE = char.ConvertFromUtf32(0x1F60C);
        public readonly static string SMILING_FACE_WITH_HEART_SHAPED_EYES = char.ConvertFromUtf32(0x1F60D);
        public readonly static string SMIRKING_FACE = char.ConvertFromUtf32(0x1F60F);
        public readonly static string UNAMUSED_FACE = char.ConvertFromUtf32(0x1F612);
        public readonly static string FACE_WITH_COLD_SWEAT = char.ConvertFromUtf32(0x1F613);
        public readonly static string PENSIVE_FACE = char.ConvertFromUtf32(0x1F614);
        public readonly static string CONFOUNDED_FACE = char.ConvertFromUtf32(0x1F616);
        public readonly static string FACE_THROWING_A_KISS = char.ConvertFromUtf32(0x1F618);
        public readonly static string KISSING_FACE_WITH_CLOSED_EYES = char.ConvertFromUtf32(0x1F61A);
        public readonly static string FACE_WITH_STUCK_OUT_TONGUE_AND_WINKING_EYE = char.ConvertFromUtf32(0x1F61C);
        public readonly static string FACE_WITH_STUCK_OUT_TONGUE_AND_TIGHTLY_CLOSED_EYES = char.ConvertFromUtf32(0x1F61D);
        public readonly static string DISAPPOINTED_FACE = char.ConvertFromUtf32(0x1F61E);
        public readonly static string ANGRY_FACE = char.ConvertFromUtf32(0x1F620);
        public readonly static string POUTING_FACE = char.ConvertFromUtf32(0x1F621);
        public readonly static string CRYING_FACE = char.ConvertFromUtf32(0x1F622);
        public readonly static string PERSEVERING_FACE = char.ConvertFromUtf32(0x1F623);
        public readonly static string FACE_WITH_LOOK_OF_TRIUMPH = char.ConvertFromUtf32(0x1F624);
        public readonly static string DISAPPOINTED_BUT_RELIEVED_FACE = char.ConvertFromUtf32(0x1F625);
        public readonly static string FEARFUL_FACE = char.ConvertFromUtf32(0x1F628);
        public readonly static string WEARY_FACE = char.ConvertFromUtf32(0x1F629);
        public readonly static string SLEEPY_FACE = char.ConvertFromUtf32(0x1F62A);
        public readonly static string TIRED_FACE = char.ConvertFromUtf32(0x1F62B);
        public readonly static string LOUDLY_CRYING_FACE = char.ConvertFromUtf32(0x1F62D);
        public readonly static string FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT = char.ConvertFromUtf32(0x1F630);
        public readonly static string FACE_SCREAMING_IN_FEAR = char.ConvertFromUtf32(0x1F631);
        public readonly static string ASTONISHED_FACE = char.ConvertFromUtf32(0x1F632);
        public readonly static string FLUSHED_FACE = char.ConvertFromUtf32(0x1F633);
        public readonly static string DIZZY_FACE = char.ConvertFromUtf32(0x1F635);
        public readonly static string FACE_WITH_MEDICAL_MASK = char.ConvertFromUtf32(0x1F637);
        public readonly static string GRINNING_CAT_FACE_WITH_SMILING_EYES = char.ConvertFromUtf32(0x1F638);
        public readonly static string CAT_FACE_WITH_TEARS_OF_JOY = char.ConvertFromUtf32(0x1F639);
        public readonly static string SMILING_CAT_FACE_WITH_OPEN_MOUTH = char.ConvertFromUtf32(0x1F63A);
        public readonly static string SMILING_CAT_FACE_WITH_HEART_SHAPED_EYES = char.ConvertFromUtf32(0x1F63B);
        public readonly static string CAT_FACE_WITH_WRY_SMILE = char.ConvertFromUtf32(0x1F63C);
        public readonly static string KISSING_CAT_FACE_WITH_CLOSED_EYES = char.ConvertFromUtf32(0x1F63D);
        public readonly static string POUTING_CAT_FACE = char.ConvertFromUtf32(0x1F63E);
        public readonly static string CRYING_CAT_FACE = char.ConvertFromUtf32(0x1F63F);
        public readonly static string WEARY_CAT_FACE = char.ConvertFromUtf32(0x1F640);
        public readonly static string FACE_WITH_NO_GOOD_GESTURE = char.ConvertFromUtf32(0x1F645);
        public readonly static string FACE_WITH_OK_GESTURE = char.ConvertFromUtf32(0x1F646);
        public readonly static string PERSON_BOWING_DEEPLY = char.ConvertFromUtf32(0x1F647);
        public readonly static string SEE_NO_EVIL_MONKEY = char.ConvertFromUtf32(0x1F648);
        public readonly static string HEAR_NO_EVIL_MONKEY = char.ConvertFromUtf32(0x1F649);
        public readonly static string SPEAK_NO_EVIL_MONKEY = char.ConvertFromUtf32(0x1F64A);
        public readonly static string HAPPY_PERSON_RAISING_ONE_HAND = char.ConvertFromUtf32(0x1F64B);
        public readonly static string PERSON_RAISING_BOTH_HANDS_IN_CELEBRATION = char.ConvertFromUtf32(0x1F64C);
        public readonly static string PERSON_FROWNING = char.ConvertFromUtf32(0x1F64D);
        public readonly static string PERSON_WITH_POUTING_FACE = char.ConvertFromUtf32(0x1F64E);
        public readonly static string PERSON_WITH_FOLDED_HANDS = char.ConvertFromUtf32(0x1F64F);
        public readonly static string BLACK_SCISSORS = char.ConvertFromUtf32(0x2702);
        public readonly static string WHITE_HEAVY_CHECK_MARK = char.ConvertFromUtf32(0x2705);
        public readonly static string AIRPLANE = char.ConvertFromUtf32(0x2708);
        public readonly static string ENVELOPE = char.ConvertFromUtf32(0x2709);
        public readonly static string RAISED_FIST = char.ConvertFromUtf32(0x270A);
        public readonly static string RAISED_HAND = char.ConvertFromUtf32(0x270B);
        public readonly static string VICTORY_HAND = char.ConvertFromUtf32(0x270C);
        public readonly static string PENCIL = char.ConvertFromUtf32(0x270F);
        public readonly static string BLACK_NIB = char.ConvertFromUtf32(0x2712);
        public readonly static string HEAVY_CHECK_MARK = char.ConvertFromUtf32(0x2714);
        public readonly static string HEAVY_MULTIPLICATION_X = char.ConvertFromUtf32(0x2716);
        public readonly static string SPARKLES = char.ConvertFromUtf32(0x2728);
        public readonly static string EIGHT_SPOKED_ASTERISK = char.ConvertFromUtf32(0x2733);
        public readonly static string EIGHT_POINTED_BLACK_STAR = char.ConvertFromUtf32(0x2734);
        public readonly static string SNOWFLAKE = char.ConvertFromUtf32(0x2744);
        public readonly static string SPARKLE = char.ConvertFromUtf32(0x2747);
        public readonly static string CROSS_MARK = char.ConvertFromUtf32(0x274C);
        public readonly static string NEGATIVE_SQUARED_CROSS_MARK = char.ConvertFromUtf32(0x274E);
        public readonly static string BLACK_QUESTION_MARK_ORNAMENT = char.ConvertFromUtf32(0x2753);
        public readonly static string WHITE_QUESTION_MARK_ORNAMENT = char.ConvertFromUtf32(0x2754);
        public readonly static string WHITE_EXCLAMATION_MARK_ORNAMENT = char.ConvertFromUtf32(0x2755);
        public readonly static string HEAVY_EXCLAMATION_MARK_SYMBOL = char.ConvertFromUtf32(0x2757);
        public readonly static string HEAVY_BLACK_HEART = char.ConvertFromUtf32(0x2764);
        public readonly static string HEAVY_PLUS_SIGN = char.ConvertFromUtf32(0x2795);
        public readonly static string HEAVY_MINUS_SIGN = char.ConvertFromUtf32(0x2796);
        public readonly static string HEAVY_DIVISION_SIGN = char.ConvertFromUtf32(0x2797);
        public readonly static string BLACK_RIGHTWARDS_ARROW = char.ConvertFromUtf32(0x27A1);
        public readonly static string CURLY_LOOP = char.ConvertFromUtf32(0x27B0);
        public readonly static string ROCKET = char.ConvertFromUtf32(0x1F680);
        public readonly static string RAILWAY_CAR = char.ConvertFromUtf32(0x1F683);
        public readonly static string HIGH_SPEED_TRAIN = char.ConvertFromUtf32(0x1F684);
        public readonly static string HIGH_SPEED_TRAIN_WITH_BULLET_NOSE = char.ConvertFromUtf32(0x1F685);
        public readonly static string METRO = char.ConvertFromUtf32(0x1F687);
        public readonly static string STATION = char.ConvertFromUtf32(0x1F689);
        public readonly static string BUS = char.ConvertFromUtf32(0x1F68C);
        public readonly static string BUS_STOP = char.ConvertFromUtf32(0x1F68F);
        public readonly static string AMBULANCE = char.ConvertFromUtf32(0x1F691);
        public readonly static string FIRE_ENGINE = char.ConvertFromUtf32(0x1F692);
        public readonly static string POLICE_CAR = char.ConvertFromUtf32(0x1F693);
        public readonly static string TAXI = char.ConvertFromUtf32(0x1F695);
        public readonly static string AUTOMOBILE = char.ConvertFromUtf32(0x1F697);
        public readonly static string RECREATIONAL_VEHICLE = char.ConvertFromUtf32(0x1F699);
        public readonly static string DELIVERY_TRUCK = char.ConvertFromUtf32(0x1F69A);
        public readonly static string SHIP = char.ConvertFromUtf32(0x1F6A2);
        public readonly static string SPEEDBOAT = char.ConvertFromUtf32(0x1F6A4);
        public readonly static string HORIZONTAL_TRAFFIC_LIGHT = char.ConvertFromUtf32(0x1F6A5);
        public readonly static string CONSTRUCTION_SIGN = char.ConvertFromUtf32(0x1F6A7);
        public readonly static string POLICE_CARS_REVOLVING_LIGHT = char.ConvertFromUtf32(0x1F6A8);
        public readonly static string TRIANGULAR_FLAG_ON_POST = char.ConvertFromUtf32(0x1F6A9);
        public readonly static string DOOR = char.ConvertFromUtf32(0x1F6AA);
        public readonly static string NO_ENTRY_SIGN = char.ConvertFromUtf32(0x1F6AB);
        public readonly static string SMOKING_SYMBOL = char.ConvertFromUtf32(0x1F6AC);
        public readonly static string NO_SMOKING_SYMBOL = char.ConvertFromUtf32(0x1F6AD);
        public readonly static string BICYCLE = char.ConvertFromUtf32(0x1F6B2);
        public readonly static string PEDESTRIAN = char.ConvertFromUtf32(0x1F6B6);
        public readonly static string MENS_SYMBOL = char.ConvertFromUtf32(0x1F6B9);
        public readonly static string WOMENS_SYMBOL = char.ConvertFromUtf32(0x1F6BA);
        public readonly static string RESTROOM = char.ConvertFromUtf32(0x1F6BB);
        public readonly static string BABY_SYMBOL = char.ConvertFromUtf32(0x1F6BC);
        public readonly static string TOILET = char.ConvertFromUtf32(0x1F6BD);
        public readonly static string WATER_CLOSET = char.ConvertFromUtf32(0x1F6BE);
        public readonly static string BATH = char.ConvertFromUtf32(0x1F6C0);
        public readonly static string CIRCLED_LATIN_CAPITAL_LETTER_M = char.ConvertFromUtf32(0x24C2);
        public readonly static string NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_A = char.ConvertFromUtf32(0x1F170);
        public readonly static string NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_B = char.ConvertFromUtf32(0x1F171);
        public readonly static string NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_O = char.ConvertFromUtf32(0x1F17E);
        public readonly static string NEGATIVE_SQUARED_LATIN_CAPITAL_LETTER_P = char.ConvertFromUtf32(0x1F17F);
        public readonly static string NEGATIVE_SQUARED_AB = char.ConvertFromUtf32(0x1F18E);
        public readonly static string SQUARED_CL = char.ConvertFromUtf32(0x1F191);
        public readonly static string SQUARED_COOL = char.ConvertFromUtf32(0x1F192);
        public readonly static string SQUARED_FREE = char.ConvertFromUtf32(0x1F193);
        public readonly static string SQUARED_ID = char.ConvertFromUtf32(0x1F194);
        public readonly static string SQUARED_NEW = char.ConvertFromUtf32(0x1F195);
        public readonly static string SQUARED_NG = char.ConvertFromUtf32(0x1F196);
        public readonly static string SQUARED_OK = char.ConvertFromUtf32(0x1F197);
        public readonly static string SQUARED_SOS = char.ConvertFromUtf32(0x1F198);
        public readonly static string SQUARED_UP_WITH_EXCLAMATION_MARK = char.ConvertFromUtf32(0x1F199);
        public readonly static string SQUARED_VS = char.ConvertFromUtf32(0x1F19A);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_D_REGIONAL_INDICATOR_SYMBOL_LETTER_E = char.ConvertFromUtf32(0x1F1E9);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_G_REGIONAL_INDICATOR_SYMBOL_LETTER_B = char.ConvertFromUtf32(0x1F1EC);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_C_REGIONAL_INDICATOR_SYMBOL_LETTER_N = char.ConvertFromUtf32(0x1F1E8);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_J_REGIONAL_INDICATOR_SYMBOL_LETTER_P = char.ConvertFromUtf32(0x1F1EF);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_F_REGIONAL_INDICATOR_SYMBOL_LETTER_R = char.ConvertFromUtf32(0x1F1EB);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_K_REGIONAL_INDICATOR_SYMBOL_LETTER_R = char.ConvertFromUtf32(0x1F1F0);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_E_REGIONAL_INDICATOR_SYMBOL_LETTER_S = char.ConvertFromUtf32(0x1F1EA);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_I_REGIONAL_INDICATOR_SYMBOL_LETTER_T = char.ConvertFromUtf32(0x1F1EE);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_R_REGIONAL_INDICATOR_SYMBOL_LETTER_U = char.ConvertFromUtf32(0x1F1F7);
        public readonly static string REGIONAL_INDICATOR_SYMBOL_LETTER_U_REGIONAL_INDICATOR_SYMBOL_LETTER_S = char.ConvertFromUtf32(0x1F1FA);
        public readonly static string SQUARED_KATAKANA_KOKO = char.ConvertFromUtf32(0x1F201);
        public readonly static string SQUARED_KATAKANA_SA = char.ConvertFromUtf32(0x1F202);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_7121 = char.ConvertFromUtf32(0x1F21A);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_6307 = char.ConvertFromUtf32(0x1F22F);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_7981 = char.ConvertFromUtf32(0x1F232);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_7A7A = char.ConvertFromUtf32(0x1F233);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_5408 = char.ConvertFromUtf32(0x1F234);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_6E80 = char.ConvertFromUtf32(0x1F235);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_6709 = char.ConvertFromUtf32(0x1F236);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_6708 = char.ConvertFromUtf32(0x1F237);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_7533 = char.ConvertFromUtf32(0x1F238);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_5272 = char.ConvertFromUtf32(0x1F239);
        public readonly static string SQUARED_CJK_UNIFIED_IDEOGRAPH_55B6 = char.ConvertFromUtf32(0x1F23A);
        public readonly static string CIRCLED_IDEOGRAPH_ADVANTAGE = char.ConvertFromUtf32(0x1F250);
        public readonly static string CIRCLED_IDEOGRAPH_ACCEPT = char.ConvertFromUtf32(0x1F251);
        public readonly static string COPYRIGHT_SIGN = char.ConvertFromUtf32(0x00A9);
        public readonly static string REGISTERED_SIGN = char.ConvertFromUtf32(0x00AE);
        public readonly static string DOUBLE_EXCLAMATION_MARK = char.ConvertFromUtf32(0x203C);
        public readonly static string EXCLAMATION_QUESTION_MARK = char.ConvertFromUtf32(0x2049);
        public readonly static string NUMBER_SIGN_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0023);
        public readonly static string DIGIT_EIGHT_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0038);
        public readonly static string DIGIT_NINE_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0039);
        public readonly static string DIGIT_SEVEN_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0037);
        public readonly static string DIGIT_ZERO_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0030);
        public readonly static string DIGIT_SIX_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0036);
        public readonly static string DIGIT_FIVE_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0035);
        public readonly static string DIGIT_FOUR_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0034);
        public readonly static string DIGIT_THREE_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0033);
        public readonly static string DIGIT_TWO_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0032);
        public readonly static string DIGIT_ONE_COMBINING_ENCLOSING_KEYCAP = char.ConvertFromUtf32(0x0031);
        public readonly static string TRADE_MARK_SIGN = char.ConvertFromUtf32(0x2122);
        public readonly static string INFORMATION_SOURCE = char.ConvertFromUtf32(0x2139);
        public readonly static string LEFT_RIGHT_ARROW = char.ConvertFromUtf32(0x2194);
        public readonly static string UP_DOWN_ARROW = char.ConvertFromUtf32(0x2195);
        public readonly static string NORTH_WEST_ARROW = char.ConvertFromUtf32(0x2196);
        public readonly static string NORTH_EAST_ARROW = char.ConvertFromUtf32(0x2197);
        public readonly static string SOUTH_EAST_ARROW = char.ConvertFromUtf32(0x2198);
        public readonly static string SOUTH_WEST_ARROW = char.ConvertFromUtf32(0x2199);
        public readonly static string LEFTWARDS_ARROW_WITH_HOOK = char.ConvertFromUtf32(0x21A9);
        public readonly static string RIGHTWARDS_ARROW_WITH_HOOK = char.ConvertFromUtf32(0x21AA);
        public readonly static string WATCH = char.ConvertFromUtf32(0x231A);
        public readonly static string HOURGLASS = char.ConvertFromUtf32(0x231B);
        public readonly static string BLACK_RIGHT_POINTING_DOUBLE_TRIANGLE = char.ConvertFromUtf32(0x23E9);
        public readonly static string BLACK_LEFT_POINTING_DOUBLE_TRIANGLE = char.ConvertFromUtf32(0x23EA);
        public readonly static string BLACK_UP_POINTING_DOUBLE_TRIANGLE = char.ConvertFromUtf32(0x23EB);
        public readonly static string BLACK_DOWN_POINTING_DOUBLE_TRIANGLE = char.ConvertFromUtf32(0x23EC);
        public readonly static string ALARM_CLOCK = char.ConvertFromUtf32(0x23F0);
        public readonly static string HOURGLASS_WITH_FLOWING_SAND = char.ConvertFromUtf32(0x23F3);
        public readonly static string BLACK_SMALL_SQUARE = char.ConvertFromUtf32(0x25AA);
        public readonly static string WHITE_SMALL_SQUARE = char.ConvertFromUtf32(0x25AB);
        public readonly static string BLACK_RIGHT_POINTING_TRIANGLE = char.ConvertFromUtf32(0x25B6);
        public readonly static string BLACK_LEFT_POINTING_TRIANGLE = char.ConvertFromUtf32(0x25C0);
        public readonly static string WHITE_MEDIUM_SQUARE = char.ConvertFromUtf32(0x25FB);
        public readonly static string BLACK_MEDIUM_SQUARE = char.ConvertFromUtf32(0x25FC);
        public readonly static string WHITE_MEDIUM_SMALL_SQUARE = char.ConvertFromUtf32(0x25FD);
        public readonly static string BLACK_MEDIUM_SMALL_SQUARE = char.ConvertFromUtf32(0x25FE);
        public readonly static string BLACK_SUN_WITH_RAYS = char.ConvertFromUtf32(0x2600);
        public readonly static string CLOUD = char.ConvertFromUtf32(0x2601);
        public readonly static string BLACK_TELEPHONE = char.ConvertFromUtf32(0x260E);
        public readonly static string BALLOT_BOX_WITH_CHECK = char.ConvertFromUtf32(0x2611);
        public readonly static string UMBRELLA_WITH_RAIN_DROPS = char.ConvertFromUtf32(0x2614);
        public readonly static string HOT_BEVERAGE = char.ConvertFromUtf32(0x2615);
        public readonly static string WHITE_UP_POINTING_INDEX = char.ConvertFromUtf32(0x261D);
        public readonly static string WHITE_SMILING_FACE = char.ConvertFromUtf32(0x263A);
        public readonly static string ARIES = char.ConvertFromUtf32(0x2648);
        public readonly static string TAURUS = char.ConvertFromUtf32(0x2649);
        public readonly static string GEMINI = char.ConvertFromUtf32(0x264A);
        public readonly static string CANCER = char.ConvertFromUtf32(0x264B);
        public readonly static string LEO = char.ConvertFromUtf32(0x264C);
        public readonly static string VIRGO = char.ConvertFromUtf32(0x264D);
        public readonly static string LIBRA = char.ConvertFromUtf32(0x264E);
        public readonly static string SCORPIUS = char.ConvertFromUtf32(0x264F);
        public readonly static string SAGITTARIUS = char.ConvertFromUtf32(0x2650);
        public readonly static string CAPRICORN = char.ConvertFromUtf32(0x2651);
        public readonly static string AQUARIUS = char.ConvertFromUtf32(0x2652);
        public readonly static string PISCES = char.ConvertFromUtf32(0x2653);
        public readonly static string BLACK_SPADE_SUIT = char.ConvertFromUtf32(0x2660);
        public readonly static string BLACK_CLUB_SUIT = char.ConvertFromUtf32(0x2663);
        public readonly static string BLACK_HEART_SUIT = char.ConvertFromUtf32(0x2665);
        public readonly static string BLACK_DIAMOND_SUIT = char.ConvertFromUtf32(0x2666);
        public readonly static string HOT_SPRINGS = char.ConvertFromUtf32(0x2668);
        public readonly static string BLACK_UNIVERSAL_RECYCLING_SYMBOL = char.ConvertFromUtf32(0x267B);
        public readonly static string WHEELCHAIR_SYMBOL = char.ConvertFromUtf32(0x267F);
        public readonly static string ANCHOR = char.ConvertFromUtf32(0x2693);
        public readonly static string WARNING_SIGN = char.ConvertFromUtf32(0x26A0);
        public readonly static string HIGH_VOLTAGE_SIGN = char.ConvertFromUtf32(0x26A1);
        public readonly static string MEDIUM_WHITE_CIRCLE = char.ConvertFromUtf32(0x26AA);
        public readonly static string MEDIUM_BLACK_CIRCLE = char.ConvertFromUtf32(0x26AB);
        public readonly static string SOCCER_BALL = char.ConvertFromUtf32(0x26BD);
        public readonly static string BASEBALL = char.ConvertFromUtf32(0x26BE);
        public readonly static string SNOWMAN_WITHOUT_SNOW = char.ConvertFromUtf32(0x26C4);
        public readonly static string SUN_BEHIND_CLOUD = char.ConvertFromUtf32(0x26C5);
        public readonly static string OPHIUCHUS = char.ConvertFromUtf32(0x26CE);
        public readonly static string NO_ENTRY = char.ConvertFromUtf32(0x26D4);
        public readonly static string CHURCH = char.ConvertFromUtf32(0x26EA);
        public readonly static string FOUNTAIN = char.ConvertFromUtf32(0x26F2);
        public readonly static string FLAG_IN_HOLE = char.ConvertFromUtf32(0x26F3);
        public readonly static string SAILBOAT = char.ConvertFromUtf32(0x26F5);
        public readonly static string TENT = char.ConvertFromUtf32(0x26FA);
        public readonly static string FUEL_PUMP = char.ConvertFromUtf32(0x26FD);
        public readonly static string ARROW_POINTING_RIGHTWARDS_THEN_CURVING_UPWARDS = char.ConvertFromUtf32(0x2934);
        public readonly static string ARROW_POINTING_RIGHTWARDS_THEN_CURVING_DOWNWARDS = char.ConvertFromUtf32(0x2935);
        public readonly static string LEFTWARDS_BLACK_ARROW = char.ConvertFromUtf32(0x2B05);
        public readonly static string UPWARDS_BLACK_ARROW = char.ConvertFromUtf32(0x2B06);
        public readonly static string DOWNWARDS_BLACK_ARROW = char.ConvertFromUtf32(0x2B07);
        public readonly static string BLACK_LARGE_SQUARE = char.ConvertFromUtf32(0x2B1B);
        public readonly static string WHITE_LARGE_SQUARE = char.ConvertFromUtf32(0x2B1C);
        public readonly static string WHITE_MEDIUM_STAR = char.ConvertFromUtf32(0x2B50);
        public readonly static string HEAVY_LARGE_CIRCLE = char.ConvertFromUtf32(0x2B55);
        public readonly static string WAVY_DASH = char.ConvertFromUtf32(0x3030);
        public readonly static string PART_ALTERNATION_MARK = char.ConvertFromUtf32(0x303D);
        public readonly static string CIRCLED_IDEOGRAPH_CONGRATULATION = char.ConvertFromUtf32(0x3297);
        public readonly static string CIRCLED_IDEOGRAPH_SECRET = char.ConvertFromUtf32(0x3299);
        public readonly static string MAHJONG_TILE_RED_DRAGON = char.ConvertFromUtf32(0x1F004);
        public readonly static string PLAYING_CARD_BLACK_JOKER = char.ConvertFromUtf32(0x1F0CF);
        public readonly static string CYCLONE = char.ConvertFromUtf32(0x1F300);
        public readonly static string FOGGY = char.ConvertFromUtf32(0x1F301);
        public readonly static string CLOSED_UMBRELLA = char.ConvertFromUtf32(0x1F302);
        public readonly static string NIGHT_WITH_STARS = char.ConvertFromUtf32(0x1F303);
        public readonly static string SUNRISE_OVER_MOUNTAINS = char.ConvertFromUtf32(0x1F304);
        public readonly static string SUNRISE = char.ConvertFromUtf32(0x1F305);
        public readonly static string CITYSCAPE_AT_DUSK = char.ConvertFromUtf32(0x1F306);
        public readonly static string SUNSET_OVER_BUILDINGS = char.ConvertFromUtf32(0x1F307);
        public readonly static string RAINBOW = char.ConvertFromUtf32(0x1F308);
        public readonly static string BRIDGE_AT_NIGHT = char.ConvertFromUtf32(0x1F309);
        public readonly static string WATER_WAVE = char.ConvertFromUtf32(0x1F30A);
        public readonly static string VOLCANO = char.ConvertFromUtf32(0x1F30B);
        public readonly static string MILKY_WAY = char.ConvertFromUtf32(0x1F30C);
        public readonly static string EARTH_GLOBE_ASIA_AUSTRALIA = char.ConvertFromUtf32(0x1F30F);
        public readonly static string NEW_MOON_SYMBOL = char.ConvertFromUtf32(0x1F311);
        public readonly static string FIRST_QUARTER_MOON_SYMBOL = char.ConvertFromUtf32(0x1F313);
        public readonly static string WAXING_GIBBOUS_MOON_SYMBOL = char.ConvertFromUtf32(0x1F314);
        public readonly static string FULL_MOON_SYMBOL = char.ConvertFromUtf32(0x1F315);
        public readonly static string CRESCENT_MOON = char.ConvertFromUtf32(0x1F319);
        public readonly static string FIRST_QUARTER_MOON_WITH_FACE = char.ConvertFromUtf32(0x1F31B);
        public readonly static string GLOWING_STAR = char.ConvertFromUtf32(0x1F31F);
        public readonly static string SHOOTING_STAR = char.ConvertFromUtf32(0x1F320);
        public readonly static string CHESTNUT = char.ConvertFromUtf32(0x1F330);
        public readonly static string SEEDLING = char.ConvertFromUtf32(0x1F331);
        public readonly static string PALM_TREE = char.ConvertFromUtf32(0x1F334);
        public readonly static string CACTUS = char.ConvertFromUtf32(0x1F335);
        public readonly static string TULIP = char.ConvertFromUtf32(0x1F337);
        public readonly static string CHERRY_BLOSSOM = char.ConvertFromUtf32(0x1F338);
        public readonly static string ROSE = char.ConvertFromUtf32(0x1F339);
        public readonly static string HIBISCUS = char.ConvertFromUtf32(0x1F33A);
        public readonly static string SUNFLOWER = char.ConvertFromUtf32(0x1F33B);
        public readonly static string BLOSSOM = char.ConvertFromUtf32(0x1F33C);
        public readonly static string EAR_OF_MAIZE = char.ConvertFromUtf32(0x1F33D);
        public readonly static string EAR_OF_RICE = char.ConvertFromUtf32(0x1F33E);
        public readonly static string HERB = char.ConvertFromUtf32(0x1F33F);
        public readonly static string FOUR_LEAF_CLOVER = char.ConvertFromUtf32(0x1F340);
        public readonly static string MAPLE_LEAF = char.ConvertFromUtf32(0x1F341);
        public readonly static string FALLEN_LEAF = char.ConvertFromUtf32(0x1F342);
        public readonly static string LEAF_FLUTTERING_IN_WIND = char.ConvertFromUtf32(0x1F343);
        public readonly static string MUSHROOM = char.ConvertFromUtf32(0x1F344);
        public readonly static string TOMATO = char.ConvertFromUtf32(0x1F345);
        public readonly static string AUBERGINE = char.ConvertFromUtf32(0x1F346);
        public readonly static string GRAPES = char.ConvertFromUtf32(0x1F347);
        public readonly static string MELON = char.ConvertFromUtf32(0x1F348);
        public readonly static string WATERMELON = char.ConvertFromUtf32(0x1F349);
        public readonly static string TANGERINE = char.ConvertFromUtf32(0x1F34A);
        public readonly static string BANANA = char.ConvertFromUtf32(0x1F34C);
        public readonly static string PINEAPPLE = char.ConvertFromUtf32(0x1F34D);
        public readonly static string RED_APPLE = char.ConvertFromUtf32(0x1F34E);
        public readonly static string GREEN_APPLE = char.ConvertFromUtf32(0x1F34F);
        public readonly static string PEACH = char.ConvertFromUtf32(0x1F351);
        public readonly static string CHERRIES = char.ConvertFromUtf32(0x1F352);
        public readonly static string STRAWBERRY = char.ConvertFromUtf32(0x1F353);
        public readonly static string HAMBURGER = char.ConvertFromUtf32(0x1F354);
        public readonly static string SLICE_OF_PIZZA = char.ConvertFromUtf32(0x1F355);
        public readonly static string MEAT_ON_BONE = char.ConvertFromUtf32(0x1F356);
        public readonly static string POULTRY_LEG = char.ConvertFromUtf32(0x1F357);
        public readonly static string RICE_CRACKER = char.ConvertFromUtf32(0x1F358);
        public readonly static string RICE_BALL = char.ConvertFromUtf32(0x1F359);
        public readonly static string COOKED_RICE = char.ConvertFromUtf32(0x1F35A);
        public readonly static string CURRY_AND_RICE = char.ConvertFromUtf32(0x1F35B);
        public readonly static string STEAMING_BOWL = char.ConvertFromUtf32(0x1F35C);
        public readonly static string SPAGHETTI = char.ConvertFromUtf32(0x1F35D);
        public readonly static string BREAD = char.ConvertFromUtf32(0x1F35E);
        public readonly static string FRENCH_FRIES = char.ConvertFromUtf32(0x1F35F);
        public readonly static string ROASTED_SWEET_POTATO = char.ConvertFromUtf32(0x1F360);
        public readonly static string DANGO = char.ConvertFromUtf32(0x1F361);
        public readonly static string ODEN = char.ConvertFromUtf32(0x1F362);
        public readonly static string SUSHI = char.ConvertFromUtf32(0x1F363);
        public readonly static string FRIED_SHRIMP = char.ConvertFromUtf32(0x1F364);
        public readonly static string FISH_CAKE_WITH_SWIRL_DESIGN = char.ConvertFromUtf32(0x1F365);
        public readonly static string SOFT_ICE_CREAM = char.ConvertFromUtf32(0x1F366);
        public readonly static string SHAVED_ICE = char.ConvertFromUtf32(0x1F367);
        public readonly static string ICE_CREAM = char.ConvertFromUtf32(0x1F368);
        public readonly static string DOUGHNUT = char.ConvertFromUtf32(0x1F369);
        public readonly static string COOKIE = char.ConvertFromUtf32(0x1F36A);
        public readonly static string CHOCOLATE_BAR = char.ConvertFromUtf32(0x1F36B);
        public readonly static string CANDY = char.ConvertFromUtf32(0x1F36C);
        public readonly static string LOLLIPOP = char.ConvertFromUtf32(0x1F36D);
        public readonly static string CUSTARD = char.ConvertFromUtf32(0x1F36E);
        public readonly static string HONEY_POT = char.ConvertFromUtf32(0x1F36F);
        public readonly static string SHORTCAKE = char.ConvertFromUtf32(0x1F370);
        public readonly static string BENTO_BOX = char.ConvertFromUtf32(0x1F371);
        public readonly static string POT_OF_FOOD = char.ConvertFromUtf32(0x1F372);
        public readonly static string COOKING = char.ConvertFromUtf32(0x1F373);
        public readonly static string FORK_AND_KNIFE = char.ConvertFromUtf32(0x1F374);
        public readonly static string TEACUP_WITHOUT_HANDLE = char.ConvertFromUtf32(0x1F375);
        public readonly static string SAKE_BOTTLE_AND_CUP = char.ConvertFromUtf32(0x1F376);
        public readonly static string WINE_GLASS = char.ConvertFromUtf32(0x1F377);
        public readonly static string COCKTAIL_GLASS = char.ConvertFromUtf32(0x1F378);
        public readonly static string TROPICAL_DRINK = char.ConvertFromUtf32(0x1F379);
        public readonly static string BEER_MUG = char.ConvertFromUtf32(0x1F37A);
        public readonly static string CLINKING_BEER_MUGS = char.ConvertFromUtf32(0x1F37B);
        public readonly static string RIBBON = char.ConvertFromUtf32(0x1F380);
        public readonly static string WRAPPED_PRESENT = char.ConvertFromUtf32(0x1F381);
        public readonly static string BIRTHDAY_CAKE = char.ConvertFromUtf32(0x1F382);
        public readonly static string JACK_O_LANTERN = char.ConvertFromUtf32(0x1F383);
        public readonly static string CHRISTMAS_TREE = char.ConvertFromUtf32(0x1F384);
        public readonly static string FATHER_CHRISTMAS = char.ConvertFromUtf32(0x1F385);
        public readonly static string FIREWORKS = char.ConvertFromUtf32(0x1F386);
        public readonly static string FIREWORK_SPARKLER = char.ConvertFromUtf32(0x1F387);
        public readonly static string BALLOON = char.ConvertFromUtf32(0x1F388);
        public readonly static string PARTY_POPPER = char.ConvertFromUtf32(0x1F389);
        public readonly static string CONFETTI_BALL = char.ConvertFromUtf32(0x1F38A);
        public readonly static string TANABATA_TREE = char.ConvertFromUtf32(0x1F38B);
        public readonly static string CROSSED_FLAGS = char.ConvertFromUtf32(0x1F38C);
        public readonly static string PINE_DECORATION = char.ConvertFromUtf32(0x1F38D);
        public readonly static string JAPANESE_DOLLS = char.ConvertFromUtf32(0x1F38E);
        public readonly static string CARP_STREAMER = char.ConvertFromUtf32(0x1F38F);
        public readonly static string WIND_CHIME = char.ConvertFromUtf32(0x1F390);
        public readonly static string MOON_VIEWING_CEREMONY = char.ConvertFromUtf32(0x1F391);
        public readonly static string SCHOOL_SATCHEL = char.ConvertFromUtf32(0x1F392);
        public readonly static string GRADUATION_CAP = char.ConvertFromUtf32(0x1F393);
        public readonly static string CAROUSEL_HORSE = char.ConvertFromUtf32(0x1F3A0);
        public readonly static string FERRIS_WHEEL = char.ConvertFromUtf32(0x1F3A1);
        public readonly static string ROLLER_COASTER = char.ConvertFromUtf32(0x1F3A2);
        public readonly static string FISHING_POLE_AND_FISH = char.ConvertFromUtf32(0x1F3A3);
        public readonly static string MICROPHONE = char.ConvertFromUtf32(0x1F3A4);
        public readonly static string MOVIE_CAMERA = char.ConvertFromUtf32(0x1F3A5);
        public readonly static string CINEMA = char.ConvertFromUtf32(0x1F3A6);
        public readonly static string HEADPHONE = char.ConvertFromUtf32(0x1F3A7);
        public readonly static string ARTIST_PALETTE = char.ConvertFromUtf32(0x1F3A8);
        public readonly static string TOP_HAT = char.ConvertFromUtf32(0x1F3A9);
        public readonly static string CIRCUS_TENT = char.ConvertFromUtf32(0x1F3AA);
        public readonly static string TICKET = char.ConvertFromUtf32(0x1F3AB);
        public readonly static string CLAPPER_BOARD = char.ConvertFromUtf32(0x1F3AC);
        public readonly static string PERFORMING_ARTS = char.ConvertFromUtf32(0x1F3AD);
        public readonly static string VIDEO_GAME = char.ConvertFromUtf32(0x1F3AE);
        public readonly static string DIRECT_HIT = char.ConvertFromUtf32(0x1F3AF);
        public readonly static string SLOT_MACHINE = char.ConvertFromUtf32(0x1F3B0);
        public readonly static string BILLIARDS = char.ConvertFromUtf32(0x1F3B1);
        public readonly static string GAME_DIE = char.ConvertFromUtf32(0x1F3B2);
        public readonly static string BOWLING = char.ConvertFromUtf32(0x1F3B3);
        public readonly static string FLOWER_PLAYING_CARDS = char.ConvertFromUtf32(0x1F3B4);
        public readonly static string MUSICAL_NOTE = char.ConvertFromUtf32(0x1F3B5);
        public readonly static string MULTIPLE_MUSICAL_NOTES = char.ConvertFromUtf32(0x1F3B6);
        public readonly static string SAXOPHONE = char.ConvertFromUtf32(0x1F3B7);
        public readonly static string GUITAR = char.ConvertFromUtf32(0x1F3B8);
        public readonly static string MUSICAL_KEYBOARD = char.ConvertFromUtf32(0x1F3B9);
        public readonly static string TRUMPET = char.ConvertFromUtf32(0x1F3BA);
        public readonly static string VIOLIN = char.ConvertFromUtf32(0x1F3BB);
        public readonly static string MUSICAL_SCORE = char.ConvertFromUtf32(0x1F3BC);
        public readonly static string RUNNING_SHIRT_WITH_SASH = char.ConvertFromUtf32(0x1F3BD);
        public readonly static string TENNIS_RACQUET_AND_BALL = char.ConvertFromUtf32(0x1F3BE);
        public readonly static string SKI_AND_SKI_BOOT = char.ConvertFromUtf32(0x1F3BF);
        public readonly static string BASKETBALL_AND_HOOP = char.ConvertFromUtf32(0x1F3C0);
        public readonly static string CHEQUERED_FLAG = char.ConvertFromUtf32(0x1F3C1);
        public readonly static string SNOWBOARDER = char.ConvertFromUtf32(0x1F3C2);
        public readonly static string RUNNER = char.ConvertFromUtf32(0x1F3C3);
        public readonly static string SURFER = char.ConvertFromUtf32(0x1F3C4);
        public readonly static string TROPHY = char.ConvertFromUtf32(0x1F3C6);
        public readonly static string AMERICAN_FOOTBALL = char.ConvertFromUtf32(0x1F3C8);
        public readonly static string SWIMMER = char.ConvertFromUtf32(0x1F3CA);
        public readonly static string HOUSE_BUILDING = char.ConvertFromUtf32(0x1F3E0);
        public readonly static string HOUSE_WITH_GARDEN = char.ConvertFromUtf32(0x1F3E1);
        public readonly static string OFFICE_BUILDING = char.ConvertFromUtf32(0x1F3E2);
        public readonly static string JAPANESE_POST_OFFICE = char.ConvertFromUtf32(0x1F3E3);
        public readonly static string HOSPITAL = char.ConvertFromUtf32(0x1F3E5);
        public readonly static string BANK = char.ConvertFromUtf32(0x1F3E6);
        public readonly static string AUTOMATED_TELLER_MACHINE = char.ConvertFromUtf32(0x1F3E7);
        public readonly static string HOTEL = char.ConvertFromUtf32(0x1F3E8);
        public readonly static string LOVE_HOTEL = char.ConvertFromUtf32(0x1F3E9);
        public readonly static string CONVENIENCE_STORE = char.ConvertFromUtf32(0x1F3EA);
        public readonly static string SCHOOL = char.ConvertFromUtf32(0x1F3EB);
        public readonly static string DEPARTMENT_STORE = char.ConvertFromUtf32(0x1F3EC);
        public readonly static string FACTORY = char.ConvertFromUtf32(0x1F3ED);
        public readonly static string IZAKAYA_LANTERN = char.ConvertFromUtf32(0x1F3EE);
        public readonly static string JAPANESE_CASTLE = char.ConvertFromUtf32(0x1F3EF);
        public readonly static string EUROPEAN_CASTLE = char.ConvertFromUtf32(0x1F3F0);
        public readonly static string SNAIL = char.ConvertFromUtf32(0x1F40C);
        public readonly static string SNAKE = char.ConvertFromUtf32(0x1F40D);
        public readonly static string HORSE = char.ConvertFromUtf32(0x1F40E);
        public readonly static string SHEEP = char.ConvertFromUtf32(0x1F411);
        public readonly static string MONKEY = char.ConvertFromUtf32(0x1F412);
        public readonly static string CHICKEN = char.ConvertFromUtf32(0x1F414);
        public readonly static string BOAR = char.ConvertFromUtf32(0x1F417);
        public readonly static string ELEPHANT = char.ConvertFromUtf32(0x1F418);
        public readonly static string OCTOPUS = char.ConvertFromUtf32(0x1F419);
        public readonly static string SPIRAL_SHELL = char.ConvertFromUtf32(0x1F41A);
        public readonly static string BUG = char.ConvertFromUtf32(0x1F41B);
        public readonly static string ANT = char.ConvertFromUtf32(0x1F41C);
        public readonly static string HONEYBEE = char.ConvertFromUtf32(0x1F41D);
        public readonly static string LADY_BEETLE = char.ConvertFromUtf32(0x1F41E);
        public readonly static string FISH = char.ConvertFromUtf32(0x1F41F);
        public readonly static string TROPICAL_FISH = char.ConvertFromUtf32(0x1F420);
        public readonly static string BLOWFISH = char.ConvertFromUtf32(0x1F421);
        public readonly static string TURTLE = char.ConvertFromUtf32(0x1F422);
        public readonly static string HATCHING_CHICK = char.ConvertFromUtf32(0x1F423);
        public readonly static string BABY_CHICK = char.ConvertFromUtf32(0x1F424);
        public readonly static string FRONT_FACING_BABY_CHICK = char.ConvertFromUtf32(0x1F425);
        public readonly static string BIRD = char.ConvertFromUtf32(0x1F426);
        public readonly static string PENGUIN = char.ConvertFromUtf32(0x1F427);
        public readonly static string KOALA = char.ConvertFromUtf32(0x1F428);
        public readonly static string POODLE = char.ConvertFromUtf32(0x1F429);
        public readonly static string BACTRIAN_CAMEL = char.ConvertFromUtf32(0x1F42B);
        public readonly static string DOLPHIN = char.ConvertFromUtf32(0x1F42C);
        public readonly static string MOUSE_FACE = char.ConvertFromUtf32(0x1F42D);
        public readonly static string COW_FACE = char.ConvertFromUtf32(0x1F42E);
        public readonly static string TIGER_FACE = char.ConvertFromUtf32(0x1F42F);
        public readonly static string RABBIT_FACE = char.ConvertFromUtf32(0x1F430);
        public readonly static string CAT_FACE = char.ConvertFromUtf32(0x1F431);
        public readonly static string DRAGON_FACE = char.ConvertFromUtf32(0x1F432);
        public readonly static string SPOUTING_WHALE = char.ConvertFromUtf32(0x1F433);
        public readonly static string HORSE_FACE = char.ConvertFromUtf32(0x1F434);
        public readonly static string MONKEY_FACE = char.ConvertFromUtf32(0x1F435);
        public readonly static string DOG_FACE = char.ConvertFromUtf32(0x1F436);
        public readonly static string PIG_FACE = char.ConvertFromUtf32(0x1F437);
        public readonly static string FROG_FACE = char.ConvertFromUtf32(0x1F438);
        public readonly static string HAMSTER_FACE = char.ConvertFromUtf32(0x1F439);
        public readonly static string WOLF_FACE = char.ConvertFromUtf32(0x1F43A);
        public readonly static string BEAR_FACE = char.ConvertFromUtf32(0x1F43B);
        public readonly static string PANDA_FACE = char.ConvertFromUtf32(0x1F43C);
        public readonly static string PIG_NOSE = char.ConvertFromUtf32(0x1F43D);
        public readonly static string PAW_PRINTS = char.ConvertFromUtf32(0x1F43E);
        public readonly static string EYES = char.ConvertFromUtf32(0x1F440);
        public readonly static string EAR = char.ConvertFromUtf32(0x1F442);
        public readonly static string NOSE = char.ConvertFromUtf32(0x1F443);
        public readonly static string MOUTH = char.ConvertFromUtf32(0x1F444);
        public readonly static string TONGUE = char.ConvertFromUtf32(0x1F445);
        public readonly static string WHITE_UP_POINTING_BACKHAND_INDEX = char.ConvertFromUtf32(0x1F446);
        public readonly static string WHITE_DOWN_POINTING_BACKHAND_INDEX = char.ConvertFromUtf32(0x1F447);
        public readonly static string WHITE_LEFT_POINTING_BACKHAND_INDEX = char.ConvertFromUtf32(0x1F448);
        public readonly static string WHITE_RIGHT_POINTING_BACKHAND_INDEX = char.ConvertFromUtf32(0x1F449);
        public readonly static string FISTED_HAND_SIGN = char.ConvertFromUtf32(0x1F44A);
        public readonly static string WAVING_HAND_SIGN = char.ConvertFromUtf32(0x1F44B);
        public readonly static string OK_HAND_SIGN = char.ConvertFromUtf32(0x1F44C);
        public readonly static string THUMBS_UP_SIGN = char.ConvertFromUtf32(0x1F44D);
        public readonly static string THUMBS_DOWN_SIGN = char.ConvertFromUtf32(0x1F44E);
        public readonly static string CLAPPING_HANDS_SIGN = char.ConvertFromUtf32(0x1F44F);
        public readonly static string OPEN_HANDS_SIGN = char.ConvertFromUtf32(0x1F450);
        public readonly static string CROWN = char.ConvertFromUtf32(0x1F451);
        public readonly static string WOMANS_HAT = char.ConvertFromUtf32(0x1F452);
        public readonly static string EYEGLASSES = char.ConvertFromUtf32(0x1F453);
        public readonly static string NECKTIE = char.ConvertFromUtf32(0x1F454);
        public readonly static string T_SHIRT = char.ConvertFromUtf32(0x1F455);
        public readonly static string JEANS = char.ConvertFromUtf32(0x1F456);
        public readonly static string DRESS = char.ConvertFromUtf32(0x1F457);
        public readonly static string KIMONO = char.ConvertFromUtf32(0x1F458);
        public readonly static string BIKINI = char.ConvertFromUtf32(0x1F459);
        public readonly static string WOMANS_CLOTHES = char.ConvertFromUtf32(0x1F45A);
        public readonly static string PURSE = char.ConvertFromUtf32(0x1F45B);
        public readonly static string HANDBAG = char.ConvertFromUtf32(0x1F45C);
        public readonly static string POUCH = char.ConvertFromUtf32(0x1F45D);
        public readonly static string MANS_SHOE = char.ConvertFromUtf32(0x1F45E);
        public readonly static string ATHLETIC_SHOE = char.ConvertFromUtf32(0x1F45F);
        public readonly static string HIGH_HEELED_SHOE = char.ConvertFromUtf32(0x1F460);
        public readonly static string WOMANS_SANDAL = char.ConvertFromUtf32(0x1F461);
        public readonly static string WOMANS_BOOTS = char.ConvertFromUtf32(0x1F462);
        public readonly static string FOOTPRINTS = char.ConvertFromUtf32(0x1F463);
        public readonly static string BUST_IN_SILHOUETTE = char.ConvertFromUtf32(0x1F464);
        public readonly static string BOY = char.ConvertFromUtf32(0x1F466);
        public readonly static string GIRL = char.ConvertFromUtf32(0x1F467);
        public readonly static string MAN = char.ConvertFromUtf32(0x1F468);
        public readonly static string WOMAN = char.ConvertFromUtf32(0x1F469);
        public readonly static string FAMILY = char.ConvertFromUtf32(0x1F46A);
        public readonly static string MAN_AND_WOMAN_HOLDING_HANDS = char.ConvertFromUtf32(0x1F46B);
        public readonly static string POLICE_OFFICER = char.ConvertFromUtf32(0x1F46E);
        public readonly static string WOMAN_WITH_BUNNY_EARS = char.ConvertFromUtf32(0x1F46F);
        public readonly static string BRIDE_WITH_VEIL = char.ConvertFromUtf32(0x1F470);
        public readonly static string PERSON_WITH_BLOND_HAIR = char.ConvertFromUtf32(0x1F471);
        public readonly static string MAN_WITH_GUA_PI_MAO = char.ConvertFromUtf32(0x1F472);
        public readonly static string MAN_WITH_TURBAN = char.ConvertFromUtf32(0x1F473);
        public readonly static string OLDER_MAN = char.ConvertFromUtf32(0x1F474);
        public readonly static string OLDER_WOMAN = char.ConvertFromUtf32(0x1F475);
        public readonly static string BABY = char.ConvertFromUtf32(0x1F476);
        public readonly static string CONSTRUCTION_WORKER = char.ConvertFromUtf32(0x1F477);
        public readonly static string PRINCESS = char.ConvertFromUtf32(0x1F478);
        public readonly static string JAPANESE_OGRE = char.ConvertFromUtf32(0x1F479);
        public readonly static string JAPANESE_GOBLIN = char.ConvertFromUtf32(0x1F47A);
        public readonly static string GHOST = char.ConvertFromUtf32(0x1F47B);
        public readonly static string BABY_ANGEL = char.ConvertFromUtf32(0x1F47C);
        public readonly static string EXTRATERRESTRIAL_ALIEN = char.ConvertFromUtf32(0x1F47D);
        public readonly static string ALIEN_MONSTER = char.ConvertFromUtf32(0x1F47E);
        public readonly static string IMP = char.ConvertFromUtf32(0x1F47F);
        public readonly static string SKULL = char.ConvertFromUtf32(0x1F480);
        public readonly static string INFORMATION_DESK_PERSON = char.ConvertFromUtf32(0x1F481);
        public readonly static string GUARDSMAN = char.ConvertFromUtf32(0x1F482);
        public readonly static string DANCER = char.ConvertFromUtf32(0x1F483);
        public readonly static string LIPSTICK = char.ConvertFromUtf32(0x1F484);
        public readonly static string NAIL_POLISH = char.ConvertFromUtf32(0x1F485);
        public readonly static string FACE_MASSAGE = char.ConvertFromUtf32(0x1F486);
        public readonly static string HAIRCUT = char.ConvertFromUtf32(0x1F487);
        public readonly static string BARBER_POLE = char.ConvertFromUtf32(0x1F488);
        public readonly static string SYRINGE = char.ConvertFromUtf32(0x1F489);
        public readonly static string PILL = char.ConvertFromUtf32(0x1F48A);
        public readonly static string KISS_MARK = char.ConvertFromUtf32(0x1F48B);
        public readonly static string LOVE_LETTER = char.ConvertFromUtf32(0x1F48C);
        public readonly static string RING = char.ConvertFromUtf32(0x1F48D);
        public readonly static string GEM_STONE = char.ConvertFromUtf32(0x1F48E);
        public readonly static string KISS = char.ConvertFromUtf32(0x1F48F);
        public readonly static string BOUQUET = char.ConvertFromUtf32(0x1F490);
        public readonly static string COUPLE_WITH_HEART = char.ConvertFromUtf32(0x1F491);
        public readonly static string WEDDING = char.ConvertFromUtf32(0x1F492);
        public readonly static string BEATING_HEART = char.ConvertFromUtf32(0x1F493);
        public readonly static string BROKEN_HEART = char.ConvertFromUtf32(0x1F494);
        public readonly static string TWO_HEARTS = char.ConvertFromUtf32(0x1F495);
        public readonly static string SPARKLING_HEART = char.ConvertFromUtf32(0x1F496);
        public readonly static string GROWING_HEART = char.ConvertFromUtf32(0x1F497);
        public readonly static string HEART_WITH_ARROW = char.ConvertFromUtf32(0x1F498);
        public readonly static string BLUE_HEART = char.ConvertFromUtf32(0x1F499);
        public readonly static string GREEN_HEART = char.ConvertFromUtf32(0x1F49A);
        public readonly static string YELLOW_HEART = char.ConvertFromUtf32(0x1F49B);
        public readonly static string PURPLE_HEART = char.ConvertFromUtf32(0x1F49C);
        public readonly static string HEART_WITH_RIBBON = char.ConvertFromUtf32(0x1F49D);
        public readonly static string REVOLVING_HEARTS = char.ConvertFromUtf32(0x1F49E);
        public readonly static string HEART_DECORATION = char.ConvertFromUtf32(0x1F49F);
        public readonly static string DIAMOND_SHAPE_WITH_A_DOT_INSIDE = char.ConvertFromUtf32(0x1F4A0);
        public readonly static string ELECTRIC_LIGHT_BULB = char.ConvertFromUtf32(0x1F4A1);
        public readonly static string ANGER_SYMBOL = char.ConvertFromUtf32(0x1F4A2);
        public readonly static string BOMB = char.ConvertFromUtf32(0x1F4A3);
        public readonly static string SLEEPING_SYMBOL = char.ConvertFromUtf32(0x1F4A4);
        public readonly static string COLLISION_SYMBOL = char.ConvertFromUtf32(0x1F4A5);
        public readonly static string SPLASHING_SWEAT_SYMBOL = char.ConvertFromUtf32(0x1F4A6);
        public readonly static string DROPLET = char.ConvertFromUtf32(0x1F4A7);
        public readonly static string DASH_SYMBOL = char.ConvertFromUtf32(0x1F4A8);
        public readonly static string PILE_OF_POO = char.ConvertFromUtf32(0x1F4A9);
        public readonly static string FLEXED_BICEPS = char.ConvertFromUtf32(0x1F4AA);
        public readonly static string DIZZY_SYMBOL = char.ConvertFromUtf32(0x1F4AB);
        public readonly static string SPEECH_BALLOON = char.ConvertFromUtf32(0x1F4AC);
        public readonly static string WHITE_FLOWER = char.ConvertFromUtf32(0x1F4AE);
        public readonly static string HUNDRED_POINTS_SYMBOL = char.ConvertFromUtf32(0x1F4AF);
        public readonly static string MONEY_BAG = char.ConvertFromUtf32(0x1F4B0);
        public readonly static string CURRENCY_EXCHANGE = char.ConvertFromUtf32(0x1F4B1);
        public readonly static string HEAVY_DOLLAR_SIGN = char.ConvertFromUtf32(0x1F4B2);
        public readonly static string CREDIT_CARD = char.ConvertFromUtf32(0x1F4B3);
        public readonly static string BANKNOTE_WITH_YEN_SIGN = char.ConvertFromUtf32(0x1F4B4);
        public readonly static string BANKNOTE_WITH_DOLLAR_SIGN = char.ConvertFromUtf32(0x1F4B5);
        public readonly static string MONEY_WITH_WINGS = char.ConvertFromUtf32(0x1F4B8);
        public readonly static string CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN = char.ConvertFromUtf32(0x1F4B9);
        public readonly static string SEAT = char.ConvertFromUtf32(0x1F4BA);
        public readonly static string PERSONAL_COMPUTER = char.ConvertFromUtf32(0x1F4BB);
        public readonly static string BRIEFCASE = char.ConvertFromUtf32(0x1F4BC);
        public readonly static string MINIDISC = char.ConvertFromUtf32(0x1F4BD);
        public readonly static string FLOPPY_DISK = char.ConvertFromUtf32(0x1F4BE);
        public readonly static string OPTICAL_DISC = char.ConvertFromUtf32(0x1F4BF);
        public readonly static string DVD = char.ConvertFromUtf32(0x1F4C0);
        public readonly static string FILE_FOLDER = char.ConvertFromUtf32(0x1F4C1);
        public readonly static string OPEN_FILE_FOLDER = char.ConvertFromUtf32(0x1F4C2);
        public readonly static string PAGE_WITH_CURL = char.ConvertFromUtf32(0x1F4C3);
        public readonly static string PAGE_FACING_UP = char.ConvertFromUtf32(0x1F4C4);
        public readonly static string CALENDAR = char.ConvertFromUtf32(0x1F4C5);
        public readonly static string TEAR_OFF_CALENDAR = char.ConvertFromUtf32(0x1F4C6);
        public readonly static string CARD_INDEX = char.ConvertFromUtf32(0x1F4C7);
        public readonly static string CHART_WITH_UPWARDS_TREND = char.ConvertFromUtf32(0x1F4C8);
        public readonly static string CHART_WITH_DOWNWARDS_TREND = char.ConvertFromUtf32(0x1F4C9);
        public readonly static string BAR_CHART = char.ConvertFromUtf32(0x1F4CA);
        public readonly static string CLIPBOARD = char.ConvertFromUtf32(0x1F4CB);
        public readonly static string PUSHPIN = char.ConvertFromUtf32(0x1F4CC);
        public readonly static string ROUND_PUSHPIN = char.ConvertFromUtf32(0x1F4CD);
        public readonly static string PAPERCLIP = char.ConvertFromUtf32(0x1F4CE);
        public readonly static string STRAIGHT_RULER = char.ConvertFromUtf32(0x1F4CF);
        public readonly static string TRIANGULAR_RULER = char.ConvertFromUtf32(0x1F4D0);
        public readonly static string BOOKMARK_TABS = char.ConvertFromUtf32(0x1F4D1);
        public readonly static string LEDGER = char.ConvertFromUtf32(0x1F4D2);
        public readonly static string NOTEBOOK = char.ConvertFromUtf32(0x1F4D3);
        public readonly static string NOTEBOOK_WITH_DECORATIVE_COVER = char.ConvertFromUtf32(0x1F4D4);
        public readonly static string CLOSED_BOOK = char.ConvertFromUtf32(0x1F4D5);
        public readonly static string OPEN_BOOK = char.ConvertFromUtf32(0x1F4D6);
        public readonly static string GREEN_BOOK = char.ConvertFromUtf32(0x1F4D7);
        public readonly static string BLUE_BOOK = char.ConvertFromUtf32(0x1F4D8);
        public readonly static string ORANGE_BOOK = char.ConvertFromUtf32(0x1F4D9);
        public readonly static string BOOKS = char.ConvertFromUtf32(0x1F4DA);
        public readonly static string NAME_BADGE = char.ConvertFromUtf32(0x1F4DB);
        public readonly static string SCROLL = char.ConvertFromUtf32(0x1F4DC);
        public readonly static string MEMO = char.ConvertFromUtf32(0x1F4DD);
        public readonly static string TELEPHONE_RECEIVER = char.ConvertFromUtf32(0x1F4DE);
        public readonly static string PAGER = char.ConvertFromUtf32(0x1F4DF);
        public readonly static string FAX_MACHINE = char.ConvertFromUtf32(0x1F4E0);
        public readonly static string SATELLITE_ANTENNA = char.ConvertFromUtf32(0x1F4E1);
        public readonly static string PUBLIC_ADDRESS_LOUDSPEAKER = char.ConvertFromUtf32(0x1F4E2);
        public readonly static string CHEERING_MEGAPHONE = char.ConvertFromUtf32(0x1F4E3);
        public readonly static string OUTBOX_TRAY = char.ConvertFromUtf32(0x1F4E4);
        public readonly static string INBOX_TRAY = char.ConvertFromUtf32(0x1F4E5);
        public readonly static string PACKAGE = char.ConvertFromUtf32(0x1F4E6);
        public readonly static string E_MAIL_SYMBOL = char.ConvertFromUtf32(0x1F4E7);
        public readonly static string INCOMING_ENVELOPE = char.ConvertFromUtf32(0x1F4E8);
        public readonly static string ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE = char.ConvertFromUtf32(0x1F4E9);
        public readonly static string CLOSED_MAILBOX_WITH_LOWERED_FLAG = char.ConvertFromUtf32(0x1F4EA);
        public readonly static string CLOSED_MAILBOX_WITH_RAISED_FLAG = char.ConvertFromUtf32(0x1F4EB);
        public readonly static string POSTBOX = char.ConvertFromUtf32(0x1F4EE);
        public readonly static string NEWSPAPER = char.ConvertFromUtf32(0x1F4F0);
        public readonly static string MOBILE_PHONE = char.ConvertFromUtf32(0x1F4F1);
        public readonly static string MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT = char.ConvertFromUtf32(0x1F4F2);
        public readonly static string VIBRATION_MODE = char.ConvertFromUtf32(0x1F4F3);
        public readonly static string MOBILE_PHONE_OFF = char.ConvertFromUtf32(0x1F4F4);
        public readonly static string ANTENNA_WITH_BARS = char.ConvertFromUtf32(0x1F4F6);
        public readonly static string CAMERA = char.ConvertFromUtf32(0x1F4F7);
        public readonly static string VIDEO_CAMERA = char.ConvertFromUtf32(0x1F4F9);
        public readonly static string TELEVISION = char.ConvertFromUtf32(0x1F4FA);
        public readonly static string RADIO = char.ConvertFromUtf32(0x1F4FB);
        public readonly static string VIDEOCASSETTE = char.ConvertFromUtf32(0x1F4FC);
        public readonly static string CLOCKWISE_DOWNWARDS_AND_UPWARDS_OPEN_CIRCLE_ARROWS = char.ConvertFromUtf32(0x1F503);
        public readonly static string SPEAKER_WITH_THREE_SOUND_WAVES = char.ConvertFromUtf32(0x1F50A);
        public readonly static string BATTERY = char.ConvertFromUtf32(0x1F50B);
        public readonly static string ELECTRIC_PLUG = char.ConvertFromUtf32(0x1F50C);
        public readonly static string LEFT_POINTING_MAGNIFYING_GLASS = char.ConvertFromUtf32(0x1F50D);
        public readonly static string RIGHT_POINTING_MAGNIFYING_GLASS = char.ConvertFromUtf32(0x1F50E);
        public readonly static string LOCK_WITH_INK_PEN = char.ConvertFromUtf32(0x1F50F);
        public readonly static string CLOSED_LOCK_WITH_KEY = char.ConvertFromUtf32(0x1F510);
        public readonly static string KEY = char.ConvertFromUtf32(0x1F511);
        public readonly static string LOCK = char.ConvertFromUtf32(0x1F512);
        public readonly static string OPEN_LOCK = char.ConvertFromUtf32(0x1F513);
        public readonly static string BELL = char.ConvertFromUtf32(0x1F514);
        public readonly static string BOOKMARK = char.ConvertFromUtf32(0x1F516);
        public readonly static string LINK_SYMBOL = char.ConvertFromUtf32(0x1F517);
        public readonly static string RADIO_BUTTON = char.ConvertFromUtf32(0x1F518);
        public readonly static string BACK_WITH_LEFTWARDS_ARROW_ABOVE = char.ConvertFromUtf32(0x1F519);
        public readonly static string END_WITH_LEFTWARDS_ARROW_ABOVE = char.ConvertFromUtf32(0x1F51A);
        public readonly static string ON_WITH_EXCLAMATION_MARK_WITH_LEFT_RIGHT_ARROW_ABOVE = char.ConvertFromUtf32(0x1F51B);
        public readonly static string SOON_WITH_RIGHTWARDS_ARROW_ABOVE = char.ConvertFromUtf32(0x1F51C);
        public readonly static string TOP_WITH_UPWARDS_ARROW_ABOVE = char.ConvertFromUtf32(0x1F51D);
        public readonly static string NO_ONE_UNDER_EIGHTEEN_SYMBOL = char.ConvertFromUtf32(0x1F51E);
        public readonly static string KEYCAP_TEN = char.ConvertFromUtf32(0x1F51F);
        public readonly static string INPUT_SYMBOL_FOR_LATIN_CAPITAL_LETTERS = char.ConvertFromUtf32(0x1F520);
        public readonly static string INPUT_SYMBOL_FOR_LATIN_SMALL_LETTERS = char.ConvertFromUtf32(0x1F521);
        public readonly static string INPUT_SYMBOL_FOR_NUMBERS = char.ConvertFromUtf32(0x1F522);
        public readonly static string INPUT_SYMBOL_FOR_SYMBOLS = char.ConvertFromUtf32(0x1F523);
        public readonly static string INPUT_SYMBOL_FOR_LATIN_LETTERS = char.ConvertFromUtf32(0x1F524);
        public readonly static string FIRE = char.ConvertFromUtf32(0x1F525);
        public readonly static string ELECTRIC_TORCH = char.ConvertFromUtf32(0x1F526);
        public readonly static string WRENCH = char.ConvertFromUtf32(0x1F527);
        public readonly static string HAMMER = char.ConvertFromUtf32(0x1F528);
        public readonly static string NUT_AND_BOLT = char.ConvertFromUtf32(0x1F529);
        public readonly static string HOCHO = char.ConvertFromUtf32(0x1F52A);
        public readonly static string PISTOL = char.ConvertFromUtf32(0x1F52B);
        public readonly static string CRYSTAL_BALL = char.ConvertFromUtf32(0x1F52E);
        public readonly static string SIX_POINTED_STAR_WITH_MIDDLE_DOT = char.ConvertFromUtf32(0x1F52F);
        public readonly static string JAPANESE_SYMBOL_FOR_BEGINNER = char.ConvertFromUtf32(0x1F530);
        public readonly static string TRIDENT_EMBLEM = char.ConvertFromUtf32(0x1F531);
        public readonly static string BLACK_SQUARE_BUTTON = char.ConvertFromUtf32(0x1F532);
        public readonly static string WHITE_SQUARE_BUTTON = char.ConvertFromUtf32(0x1F533);
        public readonly static string LARGE_RED_CIRCLE = char.ConvertFromUtf32(0x1F534);
        public readonly static string LARGE_BLUE_CIRCLE = char.ConvertFromUtf32(0x1F535);
        public readonly static string LARGE_ORANGE_DIAMOND = char.ConvertFromUtf32(0x1F536);
        public readonly static string LARGE_BLUE_DIAMOND = char.ConvertFromUtf32(0x1F537);
        public readonly static string SMALL_ORANGE_DIAMOND = char.ConvertFromUtf32(0x1F538);
        public readonly static string SMALL_BLUE_DIAMOND = char.ConvertFromUtf32(0x1F539);
        public readonly static string UP_POINTING_RED_TRIANGLE = char.ConvertFromUtf32(0x1F53A);
        public readonly static string DOWN_POINTING_RED_TRIANGLE = char.ConvertFromUtf32(0x1F53B);
        public readonly static string UP_POINTING_SMALL_RED_TRIANGLE = char.ConvertFromUtf32(0x1F53C);
        public readonly static string DOWN_POINTING_SMALL_RED_TRIANGLE = char.ConvertFromUtf32(0x1F53D);
        public readonly static string CLOCK_FACE_ONE_OCLOCK = char.ConvertFromUtf32(0x1F550);
        public readonly static string CLOCK_FACE_TWO_OCLOCK = char.ConvertFromUtf32(0x1F551);
        public readonly static string CLOCK_FACE_THREE_OCLOCK = char.ConvertFromUtf32(0x1F552);
        public readonly static string CLOCK_FACE_FOUR_OCLOCK = char.ConvertFromUtf32(0x1F553);
        public readonly static string CLOCK_FACE_FIVE_OCLOCK = char.ConvertFromUtf32(0x1F554);
        public readonly static string CLOCK_FACE_SIX_OCLOCK = char.ConvertFromUtf32(0x1F555);
        public readonly static string CLOCK_FACE_SEVEN_OCLOCK = char.ConvertFromUtf32(0x1F556);
        public readonly static string CLOCK_FACE_EIGHT_OCLOCK = char.ConvertFromUtf32(0x1F557);
        public readonly static string CLOCK_FACE_NINE_OCLOCK = char.ConvertFromUtf32(0x1F558);
        public readonly static string CLOCK_FACE_TEN_OCLOCK = char.ConvertFromUtf32(0x1F559);
        public readonly static string CLOCK_FACE_ELEVEN_OCLOCK = char.ConvertFromUtf32(0x1F55A);
        public readonly static string CLOCK_FACE_TWELVE_OCLOCK = char.ConvertFromUtf32(0x1F55B);
        public readonly static string MOUNT_FUJI = char.ConvertFromUtf32(0x1F5FB);
        public readonly static string TOKYO_TOWER = char.ConvertFromUtf32(0x1F5FC);
        public readonly static string STATUE_OF_LIBERTY = char.ConvertFromUtf32(0x1F5FD);
        public readonly static string SILHOUETTE_OF_JAPAN = char.ConvertFromUtf32(0x1F5FE);
        public readonly static string MOYAI = char.ConvertFromUtf32(0x1F5FF);
        public readonly static string GRINNING_FACE = char.ConvertFromUtf32(0x1F600);
        public readonly static string SMILING_FACE_WITH_HALO = char.ConvertFromUtf32(0x1F607);
        public readonly static string SMILING_FACE_WITH_HORNS = char.ConvertFromUtf32(0x1F608);
        public readonly static string SMILING_FACE_WITH_SUNGLASSES = char.ConvertFromUtf32(0x1F60E);
        public readonly static string NEUTRAL_FACE = char.ConvertFromUtf32(0x1F610);
        public readonly static string EXPRESSIONLESS_FACE = char.ConvertFromUtf32(0x1F611);
        public readonly static string CONFUSED_FACE = char.ConvertFromUtf32(0x1F615);
        public readonly static string KISSING_FACE = char.ConvertFromUtf32(0x1F617);
        public readonly static string KISSING_FACE_WITH_SMILING_EYES = char.ConvertFromUtf32(0x1F619);
        public readonly static string FACE_WITH_STUCK_OUT_TONGUE = char.ConvertFromUtf32(0x1F61B);
        public readonly static string WORRIED_FACE = char.ConvertFromUtf32(0x1F61F);
        public readonly static string FROWNING_FACE_WITH_OPEN_MOUTH = char.ConvertFromUtf32(0x1F626);
        public readonly static string ANGUISHED_FACE = char.ConvertFromUtf32(0x1F627);
        public readonly static string GRIMACING_FACE = char.ConvertFromUtf32(0x1F62C);
        public readonly static string FACE_WITH_OPEN_MOUTH = char.ConvertFromUtf32(0x1F62E);
        public readonly static string HUSHED_FACE = char.ConvertFromUtf32(0x1F62F);
        public readonly static string SLEEPING_FACE = char.ConvertFromUtf32(0x1F634);
        public readonly static string FACE_WITHOUT_MOUTH = char.ConvertFromUtf32(0x1F636);
        public readonly static string HELICOPTER = char.ConvertFromUtf32(0x1F681);
        public readonly static string STEAM_LOCOMOTIVE = char.ConvertFromUtf32(0x1F682);
        public readonly static string TRAIN = char.ConvertFromUtf32(0x1F686);
        public readonly static string LIGHT_RAIL = char.ConvertFromUtf32(0x1F688);
        public readonly static string TRAM = char.ConvertFromUtf32(0x1F68A);
        public readonly static string ONCOMING_BUS = char.ConvertFromUtf32(0x1F68D);
        public readonly static string TROLLEYBUS = char.ConvertFromUtf32(0x1F68E);
        public readonly static string MINIBUS = char.ConvertFromUtf32(0x1F690);
        public readonly static string ONCOMING_POLICE_CAR = char.ConvertFromUtf32(0x1F694);
        public readonly static string ONCOMING_TAXI = char.ConvertFromUtf32(0x1F696);
        public readonly static string ONCOMING_AUTOMOBILE = char.ConvertFromUtf32(0x1F698);
        public readonly static string ARTICULATED_LORRY = char.ConvertFromUtf32(0x1F69B);
        public readonly static string TRACTOR = char.ConvertFromUtf32(0x1F69C);
        public readonly static string MONORAIL = char.ConvertFromUtf32(0x1F69D);
        public readonly static string MOUNTAIN_RAILWAY = char.ConvertFromUtf32(0x1F69E);
        public readonly static string SUSPENSION_RAILWAY = char.ConvertFromUtf32(0x1F69F);
        public readonly static string MOUNTAIN_CABLEWAY = char.ConvertFromUtf32(0x1F6A0);
        public readonly static string AERIAL_TRAMWAY = char.ConvertFromUtf32(0x1F6A1);
        public readonly static string ROWBOAT = char.ConvertFromUtf32(0x1F6A3);
        public readonly static string VERTICAL_TRAFFIC_LIGHT = char.ConvertFromUtf32(0x1F6A6);
        public readonly static string PUT_LITTER_IN_ITS_PLACE_SYMBOL = char.ConvertFromUtf32(0x1F6AE);
        public readonly static string DO_NOT_LITTER_SYMBOL = char.ConvertFromUtf32(0x1F6AF);
        public readonly static string POTABLE_WATER_SYMBOL = char.ConvertFromUtf32(0x1F6B0);
        public readonly static string NON_POTABLE_WATER_SYMBOL = char.ConvertFromUtf32(0x1F6B1);
        public readonly static string NO_BICYCLES = char.ConvertFromUtf32(0x1F6B3);
        public readonly static string BICYCLIST = char.ConvertFromUtf32(0x1F6B4);
        public readonly static string MOUNTAIN_BICYCLIST = char.ConvertFromUtf32(0x1F6B5);
        public readonly static string NO_PEDESTRIANS = char.ConvertFromUtf32(0x1F6B7);
        public readonly static string CHILDREN_CROSSING = char.ConvertFromUtf32(0x1F6B8);
        public readonly static string SHOWER = char.ConvertFromUtf32(0x1F6BF);
        public readonly static string BATHTUB = char.ConvertFromUtf32(0x1F6C1);
        public readonly static string PASSPORT_CONTROL = char.ConvertFromUtf32(0x1F6C2);
        public readonly static string CUSTOMS = char.ConvertFromUtf32(0x1F6C3);
        public readonly static string BAGGAGE_CLAIM = char.ConvertFromUtf32(0x1F6C4);
        public readonly static string LEFT_LUGGAGE = char.ConvertFromUtf32(0x1F6C5);
        public readonly static string EARTH_GLOBE_EUROPE_AFRICA = char.ConvertFromUtf32(0x1F30D);
        public readonly static string EARTH_GLOBE_AMERICAS = char.ConvertFromUtf32(0x1F30E);
        public readonly static string GLOBE_WITH_MERIDIANS = char.ConvertFromUtf32(0x1F310);
        public readonly static string WAXING_CRESCENT_MOON_SYMBOL = char.ConvertFromUtf32(0x1F312);
        public readonly static string WANING_GIBBOUS_MOON_SYMBOL = char.ConvertFromUtf32(0x1F316);
        public readonly static string LAST_QUARTER_MOON_SYMBOL = char.ConvertFromUtf32(0x1F317);
        public readonly static string WANING_CRESCENT_MOON_SYMBOL = char.ConvertFromUtf32(0x1F318);
        public readonly static string NEW_MOON_WITH_FACE = char.ConvertFromUtf32(0x1F31A);
        public readonly static string LAST_QUARTER_MOON_WITH_FACE = char.ConvertFromUtf32(0x1F31C);
        public readonly static string FULL_MOON_WITH_FACE = char.ConvertFromUtf32(0x1F31D);
        public readonly static string SUN_WITH_FACE = char.ConvertFromUtf32(0x1F31E);
        public readonly static string EVERGREEN_TREE = char.ConvertFromUtf32(0x1F332);
        public readonly static string DECIDUOUS_TREE = char.ConvertFromUtf32(0x1F333);
        public readonly static string LEMON = char.ConvertFromUtf32(0x1F34B);
        public readonly static string PEAR = char.ConvertFromUtf32(0x1F350);
        public readonly static string BABY_BOTTLE = char.ConvertFromUtf32(0x1F37C);
        public readonly static string HORSE_RACING = char.ConvertFromUtf32(0x1F3C7);
        public readonly static string RUGBY_FOOTBALL = char.ConvertFromUtf32(0x1F3C9);
        public readonly static string EUROPEAN_POST_OFFICE = char.ConvertFromUtf32(0x1F3E4);
        public readonly static string RAT = char.ConvertFromUtf32(0x1F400);
        public readonly static string MOUSE = char.ConvertFromUtf32(0x1F401);
        public readonly static string OX = char.ConvertFromUtf32(0x1F402);
        public readonly static string WATER_BUFFALO = char.ConvertFromUtf32(0x1F403);
        public readonly static string COW = char.ConvertFromUtf32(0x1F404);
        public readonly static string TIGER = char.ConvertFromUtf32(0x1F405);
        public readonly static string LEOPARD = char.ConvertFromUtf32(0x1F406);
        public readonly static string RABBIT = char.ConvertFromUtf32(0x1F407);
        public readonly static string CAT = char.ConvertFromUtf32(0x1F408);
        public readonly static string DRAGON = char.ConvertFromUtf32(0x1F409);
        public readonly static string CROCODILE = char.ConvertFromUtf32(0x1F40A);
        public readonly static string WHALE = char.ConvertFromUtf32(0x1F40B);
        public readonly static string RAM = char.ConvertFromUtf32(0x1F40F);
        public readonly static string GOAT = char.ConvertFromUtf32(0x1F410);
        public readonly static string ROOSTER = char.ConvertFromUtf32(0x1F413);
        public readonly static string DOG = char.ConvertFromUtf32(0x1F415);
        public readonly static string PIG = char.ConvertFromUtf32(0x1F416);
        public readonly static string DROMEDARY_CAMEL = char.ConvertFromUtf32(0x1F42A);
        public readonly static string BUSTS_IN_SILHOUETTE = char.ConvertFromUtf32(0x1F465);
        public readonly static string TWO_MEN_HOLDING_HANDS = char.ConvertFromUtf32(0x1F46C);
        public readonly static string TWO_WOMEN_HOLDING_HANDS = char.ConvertFromUtf32(0x1F46D);
        public readonly static string THOUGHT_BALLOON = char.ConvertFromUtf32(0x1F4AD);
        public readonly static string BANKNOTE_WITH_EURO_SIGN = char.ConvertFromUtf32(0x1F4B6);
        public readonly static string BANKNOTE_WITH_POUND_SIGN = char.ConvertFromUtf32(0x1F4B7);
        public readonly static string OPEN_MAILBOX_WITH_RAISED_FLAG = char.ConvertFromUtf32(0x1F4EC);
        public readonly static string OPEN_MAILBOX_WITH_LOWERED_FLAG = char.ConvertFromUtf32(0x1F4ED);
        public readonly static string POSTAL_HORN = char.ConvertFromUtf32(0x1F4EF);
        public readonly static string NO_MOBILE_PHONES = char.ConvertFromUtf32(0x1F4F5);
        public readonly static string TWISTED_RIGHTWARDS_ARROWS = char.ConvertFromUtf32(0x1F500);
        public readonly static string CLOCKWISE_RIGHTWARDS_AND_LEFTWARDS_OPEN_CIRCLE_ARROWS = char.ConvertFromUtf32(0x1F501);
        public readonly static string CLOCKWISE_RIGHTWARDS_AND_LEFTWARDS_OPEN_CIRCLE_ARROWS_WITH_CIRCLED_ONE_OVERLAY = char.ConvertFromUtf32(0x1F502);
        public readonly static string ANTICLOCKWISE_DOWNWARDS_AND_UPWARDS_OPEN_CIRCLE_ARROWS = char.ConvertFromUtf32(0x1F504);
        public readonly static string LOW_BRIGHTNESS_SYMBOL = char.ConvertFromUtf32(0x1F505);
        public readonly static string HIGH_BRIGHTNESS_SYMBOL = char.ConvertFromUtf32(0x1F506);
        public readonly static string SPEAKER_WITH_CANCELLATION_STROKE = char.ConvertFromUtf32(0x1F507);
        public readonly static string SPEAKER_WITH_ONE_SOUND_WAVE = char.ConvertFromUtf32(0x1F509);
        public readonly static string BELL_WITH_CANCELLATION_STROKE = char.ConvertFromUtf32(0x1F515);
        public readonly static string MICROSCOPE = char.ConvertFromUtf32(0x1F52C);
        public readonly static string TELESCOPE = char.ConvertFromUtf32(0x1F52D);
        public readonly static string CLOCK_FACE_ONE_THIRTY = char.ConvertFromUtf32(0x1F55C);
        public readonly static string CLOCK_FACE_TWO_THIRTY = char.ConvertFromUtf32(0x1F55D);
        public readonly static string CLOCK_FACE_THREE_THIRTY = char.ConvertFromUtf32(0x1F55E);
        public readonly static string CLOCK_FACE_FOUR_THIRTY = char.ConvertFromUtf32(0x1F55F);
        public readonly static string CLOCK_FACE_FIVE_THIRTY = char.ConvertFromUtf32(0x1F560);
        public readonly static string CLOCK_FACE_SIX_THIRTY = char.ConvertFromUtf32(0x1F561);
        public readonly static string CLOCK_FACE_SEVEN_THIRTY = char.ConvertFromUtf32(0x1F562);
        public readonly static string CLOCK_FACE_EIGHT_THIRTY = char.ConvertFromUtf32(0x1F563);
        public readonly static string CLOCK_FACE_NINE_THIRTY = char.ConvertFromUtf32(0x1F564);
        public readonly static string CLOCK_FACE_TEN_THIRTY = char.ConvertFromUtf32(0x1F565);
        public readonly static string CLOCK_FACE_ELEVEN_THIRTY = char.ConvertFromUtf32(0x1F566);
        public readonly static string CLOCK_FACE_TWELVE_THIRTY = char.ConvertFromUtf32(0x1F567);
    }
}
tuscen commented 3 years ago

There's no need for this. You can just copy paste any emoji as text and send it.

Fedorus commented 3 years ago

There is no real reason to have almost infinite list of emoji...