├── .gitignore ├── README.md └── UnicodeEmoji.pas /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/delphi 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=delphi 3 | 4 | ### Delphi ### 5 | # Uncomment these types if you want even more clean repository. But be careful. 6 | # It can make harm to an existing project source. Read explanations below. 7 | # 8 | # Resource files are binaries containing manifest, project icon and version info. 9 | # They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files. 10 | #*.res 11 | # Type library file (binary). In old Delphi versions it should be stored. 12 | # Since Delphi 2009 it is produced from .ridl file and can safely be ignored. 13 | #*.tlb 14 | # Diagram Portfolio file. Used by the diagram editor up to Delphi 7. 15 | # Uncomment this if you are not using diagrams or use newer Delphi version. 16 | #*.ddp 17 | # Visual LiveBindings file. Added in Delphi XE2. 18 | # Uncomment this if you are not using LiveBindings Designer. 19 | #*.vlb 20 | # Deployment Manager configuration file for your project. Added in Delphi XE2. 21 | # Uncomment this if it is not mobile development and you do not use remote debug feature. 22 | #*.deployproj 23 | # C++ object files produced when C/C++ Output file generation is configured. 24 | # Uncomment this if you are not using external objects (zlib library for example). 25 | #*.obj 26 | 27 | # Delphi compiler-generated binaries (safe to delete) 28 | *.exe 29 | *.dll 30 | *.bpl 31 | *.bpi 32 | *.dcp 33 | *.so 34 | *.apk 35 | *.drc 36 | *.map 37 | *.dres 38 | *.rsm 39 | *.tds 40 | *.dcu 41 | *.lib 42 | *.a 43 | *.o 44 | *.ocx 45 | 46 | # Delphi autogenerated files (duplicated info) 47 | *.cfg 48 | *.hpp 49 | *Resource.rc 50 | 51 | # Delphi local files (user-specific info) 52 | *.local 53 | *.identcache 54 | *.projdata 55 | *.tvsconfig 56 | *.dsk 57 | 58 | # Delphi history and backups 59 | __history/ 60 | __recovery/ 61 | *.~* 62 | 63 | # Castalia statistics file (since XE7 Castalia is distributed with Delphi) 64 | *.stat 65 | 66 | # Boss dependency manager vendor folder https://github.com/HashLoad/boss 67 | modules/ 68 | 69 | # End of https://www.toptal.com/developers/gitignore/api/delphi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Unicode Emoji Library 2 | 3 | This unit provides constants for various Unicode emojis in Delphi. Each emoji is represented by a string constant for easy integration into your Delphi projects. 4 | 5 | ## Usage 6 | 7 | 1. Include the `UnicodeEmoji` unit in your Delphi project. 8 | 2. Access the emojis using the `TEmojiConstants` record. 9 | 10 | ```delphi 11 | uses 12 | UnicodeEmoji; 13 | 14 | procedure TForm1.Button1Click(Sender: TObject); 15 | begin 16 | ShowMessage('Hello ' + TEmojiConstants.WavingHand); 17 | end; 18 | ``` 19 | 20 | ## Emoji List 21 | 22 | | Emoji Name | Constant Name | Emoji Code | 23 | |----------------------------------|------------------------------|---------------| 24 | | Aubergine | Aubergine | 🍆 | 25 | | Grinning Face | GrinningFace | 😀 | 26 | | Grinning Face With Big Eyes | GrinningFaceWithBigEyes | 😃 | 27 | | Grinning Face With Smiling Eyes | GrinningFaceWithSmilingEyes | 😄 | 28 | | Beaming Face With Smiling Eyes | BeamingFaceWithSmilingEyes | 😁 | 29 | | Grinning Squinting Face | GrinningSquintingFace | 😆 | 30 | | Grinning Face With Sweat | GrinningFaceWithSweat | 😅 | 31 | | Rolling On The Floor Laughing | RollingOnTheFloorLaughing | 🤣 | 32 | | Face With Tears Of Joy | FaceWithTearsOfJoy | 😂 | 33 | | Slightly Smiling Face | SlightlySmilingFace | 🙂 | 34 | | Upside Down Face | UpsideDownFace | 🙃 | 35 | | Winking Face | WinkingFace | 😉 | 36 | | Smiling Face With Smiling Eyes | SmilingFaceWithSmilingEyes | 😊 | 37 | | Smiling Face With Halo | SmilingFaceWithHalo | 😇 | 38 | | Smiling Face With Hearts | SmilingFaceWithHearts | 🥰 | 39 | | Smiling Face With Heart Eyes | SmilingFaceWithHeartEyes | 😍 | 40 | | Star Struck | StarStruck | 🤩 | 41 | | Face Blowing A Kiss | FaceBlowingAKiss | 😘 | 42 | | Kissing Face | KissingFace | 😗 | 43 | | Closed Eyes Kissing | ClosedEyesKissing | 😚 | 44 | | Kissing Face With Smiling Eyes | KissingFaceWithSmilingEyes | 😙 | 45 | | Smiling Face | SmilingFace | ☺ | 46 | | Hugging Face | HuggingFace | 🤗 | 47 | | Thinking Face | ThinkingFace | 🤔 | 48 | | Face With Raised Eyebrow | FaceWithRaisedEyebrow | 😏 | 49 | | Neutral Face | NeutralFace | 😐 | 50 | | Expressionless Face | ExpressionlessFace | 😑 | 51 | | Face Without Mouth | FaceWithoutMouth | 😶 | 52 | | Smirking Face | SmirkingFace | 😏 | 53 | | Unamused Face | UnamusedFace | 😒 | 54 | | Face With Rolling Eyes | FaceWithRollingEyes | 🙄 | 55 | | Grimacing Face | GrimacingFace | 😬 | 56 | | Lying Face | LyingFace | 🤥 | 57 | | Shushing Face | ShushingFace | 🤫 | 58 | | Face With Hand Over Mouth | FaceWithHandOverMouth | 🤭 | 59 | | Face With Monocle | FaceWithMonocle | 🧐 | 60 | | Nerd Face | NerdFace | 🤓 | 61 | | Sunglasses | Sunglasses | 😎 | 62 | | Clown Face | ClownFace | 🤡 | 63 | | Pouting Face | PoutingFace | 😡 | 64 | | Angry Face | AngryFace | 😠 | 65 | | Face With Symbols On Mouth | FaceWithSymbolsOnMouth | 🤬 | 66 | | Exploding Head | ExplodingHead | 😱 | 67 | | Face With Steam From Nose | FaceWithSteamFromNose | 😤 | 68 | | Hot Face | HotFace | 🥵 | 69 | | Cold Face | ColdFace | 🥶 | 70 | | Woozy Face | WoozyFace | 🥴 | 71 | | Dizzy Face | DizzyFace | 😵 | 72 | | Face With Medical Mask | FaceWithMedicalMask | 😷 | 73 | | Grinning Cat Face | GrinningCatFace | 😺 | 74 | | Grinning Cat Face With Smiling Eyes | GrinningCatFaceWithSmilingEyes | 😸 | 75 | | Cat Face With Tears Of Joy | CatFaceWithTearsOfJoy | 😹 | 76 | | Smiling Cat Face With Heart Eyes | SmilingCatFaceWithHeartEyes | 😻 | 77 | | Cat Face With Wry Smile | CatFaceWithWrySmile | 😼 | 78 | | Kissing Cat Face | KissingCatFace | 😽 | 79 | | Weary Cat Face | WearyCatFace | 🙀 | 80 | | Crying Cat Face | CryingCatFace | 😿 | 81 | | Pouting Cat Face | PoutingCatFace | 😾 | 82 | | Monkey Face | MonkeyFace | 🐵 | 83 | | Monkey Face With Big Eyes | MonkeyFaceWithBigEyes | 🐒 | 84 | | Gorilla | Gorilla | 🦍 | 85 | | Dog Face | DogFace | 🐶 | 86 | | Dog Face With Tongue | DogFaceWithTongue | 🐶 | 87 | | Dog Face With Big Eyes | DogFaceWithBigEyes | 🐶 | 88 | | Poodle | Poodle | 🐩 | 89 | | Wolf Face | WolfFace | 🐺 | 90 | | Fox Face | FoxFace | 🦊 | 91 | | Cat Face | CatFace | 🐱 | 92 | | Cat Face With Tears Of Joy | CatFaceWithTearsOfJoy | 🐱 | 93 | | Pouting Cat Face | PoutingCatFace | 🐱 | 94 | | Lion Face | LionFace | 🦁 | 95 | | Tiger Face | TigerFace | 🐯 | 96 | | Tiger Face With Big Eyes | TigerFaceWithBigEyes | 🐯 | 97 | | Leopard | Leopard | 🐆 | 98 | | Horse Face | HorseFace | 🐴 | 99 | | Horse Face With Goggles | HorseFaceWithGoggles | 🐴 | 100 | | Zebra | Zebra | 🦓 | 101 | | Deer | Deer | 🦌 | 102 | | Bison | Bison | 🦬 | 103 | | Cow Face | CowFace | 🐮 | 104 | | Ox | Ox | 🐂 | 105 | | Water Buffalo | WaterBuffalo | 🐃 | 106 | | Cow Face With Big Eyes | CowFaceWithBigEyes | 🐄 | 107 | | Pig Face | PigFace | 🐷 | 108 | | Pig Face With Big Eyes | PigFaceWithBigEyes | 🐽 | 109 | | Boar | Boar | 🐗 | 110 | | Pig Nose | PigNose | 🐽 | 111 | | Ram | Ram | 🐏 | 112 | | Sheep | Sheep | 🐑 | 113 | | Goat | Goat | 🐐 | 114 | | Camel | Camel | 🐫 | 115 | | Two-Hump Camel | TwoHumpCamel | 🐫 | 116 | | Elephant | Elephant | 🐘 | 117 | | Mammoth | Mammoth | 🦣 | 118 | | Rat | Rat | 🐀 | 119 | | Mouse Face | MouseFace | 🐭 | 120 | | Mouse Face With Big Eyes | MouseFaceWithBigEyes | 🐭 | 121 | | Rat | Rat | 🐀 | 122 | | Hamster Face | HamsterFace | 🐹 | 123 | | Rabbit Face | RabbitFace | 🐰 | 124 | | Rabbit Face With Big Eyes | RabbitFaceWithBigEyes | 🐰 | 125 | | Hedgehog | Hedgehog | 🦔 | 126 | | Bat | Bat | 🦇 | 127 | | Bear Face | BearFace | 🐻 | 128 | | Koala | Koala | 🐨 | 129 | | Panda Face | PandaFace | 🐼 | 130 | | Sloth | Sloth | 🦥 | 131 | | Otter | Otter | 🦦 | 132 | | Skunk | Skunk | 🦨 | 133 | | Kangaroo | Kangaroo | 🦘 | 134 | | Badger | Badger | 🦡 | 135 | | Paw Prints | PawPrints | 🐾 | 136 | | Turkey | Turkey | 🦃 | 137 | | Chicken | Chicken | 🐔 | 138 | | Rooster | Rooster | 🐓 | 139 | | Hatching Chick | HatchingChick | 🐣 | 140 | | Baby Chick | BabyChick | 🐤 | 141 | | Front-Facing Baby Chick | FrontFacingBabyChick | 🐥 | 142 | | Bird | Bird | 🐦 | 143 | | Penguin | Penguin | 🐧 | 144 | | Dove | Dove | 🕊 | 145 | | Eagle | Eagle | 🦅 | 146 | | Duck | Duck | 🦆 | 147 | | Swan | Swan | 🦢 | 148 | | Owl | Owl | 🦉 | 149 | | Dodo | Dodo | 🦤 | 150 | | Feather | Feather | 🪶 | 151 | | Flamingo | Flamingo | 🦩 | 152 | | Peacock | Peacock | 🦚 | 153 | | Parrot | Parrot | 🦜 | 154 | | Frog | Frog | 🐸 | 155 | | Crocodile | Crocodile | 🐊 | 156 | | Turtle | Turtle | 🐢 | 157 | | Lizard | Lizard | 🦎 | 158 | | Snake | Snake | 🐍 | 159 | | Dragon Face | DragonFace | 🐲 | 160 | | Dragon | Dragon | 🐉 | 161 | | Spouting Whale | SpoutingWhale | 🐳 | 162 | | Whale | Whale | 🐋 | 163 | | Dolphin | Dolphin | 🐬 | 164 | | Fish | Fish | 🐟 | 165 | | Tropical Fish | TropicalFish | 🐠 | 166 | | Blowfish | Blowfish | 🐡 | 167 | | Shark | Shark | 🦈 | 168 | | Octopus | Octopus | 🐙 | 169 | | Spiral Shell | SpiralShell | 🐚 | 170 | | Snail | Snail | 🐌 | 171 | | Butterfly | Butterfly | 🦋 | 172 | | Bug | Bug | 🐛 | 173 | | Ant | Ant | 🐜 | 174 | | Honeybee | Honeybee | 🐝 | 175 | | Lady Beetle | LadyBeetle | 🐞 | 176 | | Cricket | Cricket | 🦗 | 177 | | Spider | Spider | 🕷 | 178 | | Spider Web | SpiderWeb | 🕸 | 179 | | Scorpion | Scorpion | 🦂 | 180 | | Mosquito | Mosquito | 🦟 | 181 | | Microbe | Microbe | 🦠 | 182 | | Bouquet | Bouquet | 💐 | 183 | | Cherry Blossom | CherryBlossom | 🌸 | 184 | | White Flower | WhiteFlower | 💮 | 185 | | Rosette | Rosette | 🏵 | 186 | | Rose | Rose | 🌹 | 187 | | Wilted Flower | WiltedFlower | 🥀 | 188 | | Hibiscus | Hibiscus | 🌺 | 189 | 190 | ## Note 191 | 192 | Make sure to check the Unicode Emoji documentation for any updates or new emojis added to the Unicode standard. 193 | 194 | Feel free to contribute by adding more emojis or improving the existing code. 195 | 196 | Enjoy using emojis in your Delphi projects! 😊🎉 197 | -------------------------------------------------------------------------------- /UnicodeEmoji.pas: -------------------------------------------------------------------------------- 1 | {******************************************************************************* 2 | * * 3 | * Delphi Emoji Library * 4 | * * 5 | * Contribution : Silas AIKO * 6 | * * 7 | * Description: * 8 | * This Delphi library provides a collection of emojis for adding a * 9 | * delightful touch to your applications. * 10 | * * 11 | * License: MIT License (See LICENSE file for details) * 12 | * * 13 | *******************************************************************************} 14 | 15 | 16 | unit UnicodeEmoji; 17 | 18 | interface 19 | 20 | type 21 | TEmojiConstants = record 22 | const 23 | Aubergine: string = #$1F346; 24 | GrinningFace: string = #$1F600; 25 | GrinningFaceWithBigEyes: string = #$1F603; 26 | GrinningFaceWithSmilingEyes: string = #$1F604; 27 | BeamingFaceWithSmilingEyes: string = #$1F601; 28 | GrinningSquintingFace: string = #$1F606; 29 | GrinningFaceWithSweat: string = #$1F605; 30 | RollingOnTheFloorLaughing: string = #$1F923; 31 | FaceWithTearsOfJoy: string = #$1F602; 32 | SlightlySmilingFace: string = #$1F642; 33 | UpsideDownFace: string = #$1F643; 34 | WinkingFace: string = #$1F609; 35 | SmilingFaceWithSmilingEyes: string = #$1F60A; 36 | SmilingFaceWithHalo: string = #$1F607; 37 | SmilingFaceWithHearts: string = #$1F970; 38 | SmilingFaceWithHeartEyes: string = #$1F60D; 39 | StarStruck: string = #$1F929; 40 | FaceBlowingAKiss: string = #$1F618; 41 | KissingFace: string = #$1F617; 42 | ClosedEyesKissing: string = #$1F61A; 43 | KissingFaceWithSmilingEyes: string = #$1F619; 44 | SmilingFace: string = #$263A; 45 | HuggingFace: string = #$1F917; 46 | ThinkingFace: string = #$1F914; 47 | FaceWithRaisedEyebrow: string = #$1F60F; 48 | NeutralFace: string = #$1F610; 49 | ExpressionlessFace: string = #$1F611; 50 | FaceWithoutMouth: string = #$1F636; 51 | SmirkingFace: string = #$1F60F; 52 | UnamusedFace: string = #$1F612; 53 | FaceWithRollingEyes: string = #$1F644; 54 | GrimacingFace: string = #$1F62C; 55 | LyingFace: string = #$1F925; 56 | ShushingFace: string = #$1F92B; 57 | FaceWithHandOverMouth: string = #$1F92D; 58 | FaceWithMonocle: string = #$1F9D0; 59 | NerdFace: string = #$1F913; 60 | Sunglasses: string = #$1F60E; 61 | ClownFace: string = #$1F921; 62 | PoutingFace: string = #$1F621; 63 | AngryFace: string = #$1F620; 64 | FaceWithSymbolsOnMouth: string = #$1F92C; 65 | ExplodingHead: string = #$1F631; 66 | FaceWithSteamFromNose: string = #$1F624; 67 | HotFace: string = #$1F975; 68 | ColdFace: string = #$1F976; 69 | WoozyFace: string = #$1F974; 70 | DizzyFace: string = #$1F635; 71 | FaceWithMedicalMask: string = #$1F637; 72 | GrinningCatFace: string = #$1F63A; 73 | GrinningCatFaceWithSmilingEyes: string = #$1F638; 74 | CatFaceWithTearsOfJoy: string = #$1F639; 75 | SmilingCatFaceWithHeartEyes: string = #$1F63B; 76 | CatFaceWithWrySmile: string = #$1F63C; 77 | KissingCatFace: string = #$1F63D; 78 | WearyCatFace: string = #$1F640; 79 | CryingCatFace: string = #$1F63F; 80 | PoutingCatFace: string = #$1F63E; 81 | MonkeyFace: string = #$1F435; 82 | MonkeyFaceWithSmilingEyes: string = #$1F648; 83 | Gorilla: string = #$1F98D; 84 | DogFace: string = #$1F436; 85 | DogFaceWithTongue: string = #$1F436; 86 | Poodle: string = #$1F429; 87 | WolfFace: string = #$1F43A; 88 | FoxFace: string = #$1F98A; 89 | CatFace: string = #$1F431; 90 | LionFace: string = #$1F981; 91 | TigerFace: string = #$1F42F; 92 | TigerFaceWithCryingEyes: string = #$1F405; 93 | LeopardFace: string = #$1F406; 94 | HorseFace: string = #$1F434; 95 | HorseFaceWithTongue: string = #$1F436; 96 | UnicornFace: string = #$1F984; 97 | CowFace: string = #$1F42E; 98 | OxFace: string = #$A9; 99 | WaterBuffaloFace: string = #$1F403; 100 | PigFace: string = #$1F437; 101 | PigFaceWithTongue: string = #$1F438; 102 | Boar: string = #$1F417; 103 | PigNose: string = #$1F43D; 104 | Ram: string = #$1F40F; 105 | Ewe: string = #$1F411; 106 | Goat: string = #$1F410; 107 | Camel: string = #$1F42B; 108 | TwoHumpCamel: string = #$1F42B; 109 | Elephant: string = #$1F418; 110 | Mammoth: string = #$1F9A3; 111 | Rhinoceros: string = #$1F98F; 112 | Hippopotamus: string = #$1F99B; 113 | MouseFace: string = #$1F42D; 114 | MouseFaceWithBigEyes: string = #$1F42D; 115 | Rat: string = #$1F400; 116 | HamsterFace: string = #$1F439; 117 | RabbitFace: string = #$1F430; 118 | RabbitFaceWithBigEyes: string = #$1F430; 119 | Fox: string = #$1F98A; 120 | PandaFace: string = #$1F43C; 121 | PolarBearFace: string = #$1F43B; 122 | Koala: string = #$1F428; 123 | Kangaroo: string = #$1F998; 124 | Badger: string = #$1F9A1; 125 | Beaver: string = #$1F9AB; 126 | Sloth: string = #$1F9A5; 127 | Mouse: string = #$1F42D; 128 | Hamster: string = #$1F439; 129 | Rabbit: string = #$1F430; 130 | Chipmunk: string = #$1F43F; 131 | Hedgehog: string = #$1F994; 132 | Bat: string = #$1F987; 133 | Bear: string = #$1F43B; 134 | Panda: string = #$1F43C; 135 | Penguin: string = #$1F427; 136 | Frog: string = #$1F438; 137 | Turtle: string = #$1F422; 138 | Snake: string = #$1F40D; 139 | DragonFace: string = #$1F432; 140 | Dragon: string = #$1F409; 141 | Crocodile: string = #$1F40A; 142 | Whale: string = #$1F40B; 143 | Snail: string = #$1F40C; 144 | Butterfly: string = #$1F98B; 145 | Bug: string = #$1F41B; 146 | Ant: string = #$1F41C; 147 | Honeybee: string = #$1F41D; 148 | LadyBeetle: string = #$1F41E; 149 | Cricket: string = #$1F997; 150 | Spider: string = #$1F577; 151 | SpiderWeb: string = #$1F578; 152 | Scorpion: string = #$1F982; 153 | Bouquet: string = #$1F490; 154 | CherryBlossom: string = #$1F338; 155 | WhiteFlower: string = #$1F4AE; 156 | Rosette: string = #$1F3F5; 157 | Rose: string = #$1F339; 158 | WiltedFlower: string = #$1F940; 159 | Hibiscus: string = #$1F33A; 160 | Sunflower: string = #$1F33B; 161 | Blossom: string = #$1F33C; 162 | Tulip: string = #$1F337; 163 | Seedling: string = #$1F331; 164 | EvergreenTree: string = #$1F332; 165 | DeciduousTree: string = #$1F333; 166 | PalmTree: string = #$1F334; 167 | Cactus: string = #$1F335; 168 | SheafOfRice: string = #$1F33E; 169 | Herb: string = #$1F33F; 170 | Shamrock: string = #$2618; 171 | FourLeafClover: string = #$1F340; 172 | MapleLeaf: string = #$1F341; 173 | FallenLeaf: string = #$1F342; 174 | LeafFlutteringInWind: string = #$1F343; 175 | Grapes: string = #$1F347; 176 | Melon: string = #$1F348; 177 | Watermelon: string = #$1F349; 178 | Tangerine: string = #$1F34A; 179 | Lemon: string = #$1F34B; 180 | Banana: string = #$1F34C; 181 | Pineapple: string = #$1F34D; 182 | RedApple: string = #$1F34E; 183 | GreenApple: string = #$1F34F; 184 | Pear: string = #$1F350; 185 | Peach: string = #$1F351; 186 | Cherries: string = #$1F352; 187 | Strawberry: string = #$1F353; 188 | KiwiFruit: string = #$1F95D; 189 | Tomato: string = #$1F345; 190 | Olive: string = #$1FAD2; 191 | Coconut: string = #$1F965; 192 | Avocado: string = #$1F951; 193 | Eggplant: string = #$1F346; 194 | Potato: string = #$1F954; 195 | Carrot: string = #$1F955; 196 | EarOfCorn: string = #$1F33D; 197 | HotPepper: string = #$1F336; 198 | BellPepper: string = #$1FAD1; 199 | Cucumber: string = #$1F952; 200 | LeafyGreen: string = #$1F96C; 201 | Broccoli: string = #$1F966; 202 | Garlic: string = #$1F9C4; 203 | Onion: string = #$1F9C5; 204 | Mushroom: string = #$1F344; 205 | Peanut: string = #$1F95B; 206 | Chestnut: string = #$1F330; 207 | Bread: string = #$1F35E; 208 | Croissant: string = #$1F950; 209 | BaguetteBread: string = #$1F956; 210 | Flatbread: string = #$1FAD3; 211 | Pretzel: string = #$1F968; 212 | Bagel: string = #$1F96F; 213 | Pancakes: string = #$1F95E; 214 | Waffle: string = #$1F967; 215 | CheeseWedge: string = #$1F9C0; 216 | MeatOnBone: string = #$1F356; 217 | PoultryLeg: string = #$1F357; 218 | CutOfMeat: string = #$1F969; 219 | Bacon: string = #$1F953; 220 | Hamburger: string = #$1F354; 221 | FrenchFries: string = #$1F35F; 222 | Pizza: string = #$1F355; 223 | HotDog: string = #$1F32D; 224 | Sandwich: string = #$1F96A; 225 | Taco: string = #$1F32E; 226 | Burrito: string = #$1F32F; 227 | Tamale: string = #$1FAD4; 228 | StuffedFlatbread: string = #$1F959; 229 | Falafel: string = #$1F9C6; 230 | Egg: string = #$1F95A; 231 | FriedEgg: string = #$1F373; 232 | ShallowPanOfFood: string = #$1F958; 233 | PotOfFood: string = #$1F372; 234 | BowlWithSpoon: string = #$1F963; 235 | GreenSalad: string = #$1F957; 236 | Popcorn: string = #$1F37F; 237 | Butter: string = #$1F9C8; 238 | Salt: string = #$1F9C2; 239 | CannedFood: string = #$1F96B; 240 | BentoBox: string = #$1F371; 241 | RiceCracker: string = #$1F358; 242 | RiceBall: string = #$1F359; 243 | CookedRice: string = #$1F35A; 244 | CurryRice: string = #$1F35B; 245 | SteamingBowl: string = #$1F35C; 246 | Spaghetti: string = #$1F35D; 247 | RoastedSweetPotato: string = #$1F360; 248 | Oden: string = #$1F362; 249 | Sushi: string = #$1F363; 250 | FriedShrimp: string = #$1F364; 251 | FishCakeWithSwirl: string = #$1F365; 252 | MoonCake: string = #$1F96C; 253 | Dango: string = #$1F361; 254 | ShavedIce: string = #$1F367; 255 | IceCream: string = #$1F368; 256 | Doughnut: string = #$1F369; 257 | Cookie: string = #$1F36A; 258 | BirthdayCake: string = #$1F382; 259 | Shortcake: string = #$1F370; 260 | Cupcake: string = #$1F9C1; 261 | Pie: string = #$1F967; 262 | ChocolateBar: string = #$1F36B; 263 | Candy: string = #$1F36C; 264 | Lollipop: string = #$1F36D; 265 | Custard: string = #$1F36E; 266 | HoneyPot: string = #$1F36F; 267 | BabyBottle: string = #$1F37C; 268 | GlassOfMilk: string = #$1F95B; 269 | HotBeverage: string = #$2615; 270 | TeacupWithoutHandle: string = #$1F375; 271 | Sake: string = #$1F376; 272 | BottleWithPoppingCork: string = #$1F37E; 273 | WineGlass: string = #$1F377; 274 | CocktailGlass: string = #$1F378; 275 | TropicalDrink: string = #$1F379; 276 | BeerMug: string = #$1F37A; 277 | ClinkingBeerMugs: string = #$1F37B; 278 | ClinkingGlasses: string = #$1F942; 279 | TumblerGlass: string = #$1F943; 280 | CupWithStraw: string = #$1F964; 281 | BubbleTea: string = #$1F9CB; 282 | BeverageBox: string = #$1F9C3; 283 | Mate: string = #$1F9C9; 284 | Ice: string = #$1F9CA; 285 | Chopsticks: string = #$1F962; 286 | ForkAndKnifeWithPlate: string = #$1F37D; 287 | ForkAndKnife: string = #$1F374; 288 | Spoon: string = #$1F944; 289 | KitchenKnife: string = #$1F52A; 290 | Amphora: string = #$1F3FA; 291 | WorldMap: string = #$1F5FA; 292 | Compass: string = #$1F9ED; 293 | Map: string = #$1F5FA; 294 | SnowCappedMountain: string = #$1F3D4; 295 | Mountain: string = #$26F0; 296 | Volcano: string = #$1F30B; 297 | MountFuji: string = #$1F5FB; 298 | Camping: string = #$1F3D5; 299 | BeachWithUmbrella: string = #$1F3D6; 300 | Desert: string = #$1F3DC; 301 | DesertIsland: string = #$1F3DD; 302 | NationalPark: string = #$1F3DE; 303 | Stadium: string = #$1F3DF; 304 | ClassicalBuilding: string = #$1F3DB; 305 | BuildingConstruction: string = #$1F3D7; 306 | Brick: string = #$1F9F1; 307 | Wood: string = #$1FAB5; 308 | Hut: string = #$1F6D6; 309 | Houses: string = #$1F3D8; 310 | DerelictHouse: string = #$1F3DA; 311 | House: string = #$1F3E0; 312 | HouseWithGarden: string = #$1F3E1; 313 | OfficeBuilding: string = #$1F3E2; 314 | JapanesePostOffice: string = #$1F3E3; 315 | PostOffice: string = #$1F3E4; 316 | Hospital: string = #$1F3E5; 317 | Bank: string = #$1F3E6; 318 | Hotel: string = #$1F3E8; 319 | LoveHotel: string = #$1F3E9; 320 | ConvenienceStore: string = #$1F3EA; 321 | School: string = #$1F3EB; 322 | DepartmentStore: string = #$1F3EC; 323 | Factory: string = #$1F3ED; 324 | JapaneseCastle: string = #$1F3EF; 325 | Castle: string = #$1F3F0; 326 | Wedding: string = #$1F492; 327 | TokyoTower: string = #$1F5FC; 328 | StatueOfLiberty: string = #$1F5FD; 329 | Church: string = #$26EA; 330 | Mosque: string = #$1F54C; 331 | HinduTemple: string = #$1F6D5; 332 | Synagogue: string = #$1F54D; 333 | ShintoShrine: string = #$26E9; 334 | Kaaba: string = #$1F54B; 335 | Fountain: string = #$26F2; 336 | Tent: string = #$26FA; 337 | Foggy: string = #$1F301; 338 | NightWithStars: string = #$1F303; 339 | SunriseOverMountains: string = #$1F304; 340 | Sunrise: string = #$1F305; 341 | CityscapeAtDusk: string = #$1F306; 342 | Sunset: string = #$1F307; 343 | Cityscape: string = #$1F309; 344 | Rainbow: string = #$1F308; 345 | BridgeAtNight: string = #$1F309; 346 | MilkyWay: string = #$1F30C; 347 | ShootingStar: string = #$1F320; 348 | FireworkSparkler: string = #$1F387; 349 | Fireworks: string = #$1F386; 350 | Sparkler: string = #$1F387; 351 | MoonViewingCeremony: string = #$1F391; 352 | Moon: string = #$1F315; 353 | WaxingGibbousMoon: string = #$1F314; 354 | FullMoonWithFace: string = #$1F31D; 355 | FirstQuarterMoon: string = #$1F313; 356 | WaxingCrescentMoon: string = #$1F312; 357 | CrescentMoon: string = #$1F319; 358 | NewMoonWithFace: string = #$1F31A; 359 | FirstQuarterMoonWithFace: string = #$1F31B; 360 | LastQuarterMoonWithFace: string = #$1F31C; 361 | WaningCrescentMoon: string = #$1F318; 362 | LastQuarterMoon: string = #$1F317; 363 | WaningGibbousMoon: string = #$1F316; 364 | Sun: string = #$2600; 365 | Star: string = #$2B50; 366 | GlowingStar: string = #$1F31F; 367 | Cloud: string = #$2601; 368 | SunBehindCloud: string = #$26C5; 369 | SunBehindSmallCloud: string = #$1F324; 370 | SunBehindLargeCloud: string = #$1F325; 371 | SunBehindRainCloud: string = #$1F326; 372 | CloudWithRain: string = #$1F327; 373 | CloudWithSnow: string = #$1F328; 374 | CloudWithLightning: string = #$1F329; 375 | Tornado: string = #$1F32A; 376 | Fog: string = #$1F32B; 377 | WindFace: string = #$1F32C; 378 | Umbrella: string = #$2614; 379 | UmbrellaWithRainDrops: string = #$2614; 380 | HighVoltage: string = #$26A1; 381 | Snowflake: string = #$2744; 382 | Snowman: string = #$2603; 383 | SnowmanWithoutSnow: string = #$26C4; 384 | Comet: string = #$2604; 385 | Fire: string = #$1F525; 386 | Droplet: string = #$1F4A7; 387 | WaterWave: string = #$1F30A; 388 | ChristmasTree: string = #$1F384; 389 | Sparkles: string = #$2728; 390 | TanabataTree: string = #$1F38B; 391 | PineDecoration: string = #$1F38D; 392 | RedEnvelope: string = #$1F9E7; 393 | Ribbon: string = #$1F380; 394 | WrappedGift: string = #$1F381; 395 | ConfettiBall: string = #$1F38A; 396 | PartyPopper: string = #$1F389; 397 | JapaneseDolls: string = #$1F38E; 398 | CarpStreamer: string = #$1F38F; 399 | WindChime: string = #$1F390; 400 | CrystalBall: string = #$1F52E; 401 | MovieCamera: string = #$1F3A5; 402 | FilmFrames: string = #$1F39E; 403 | ClapperBoard: string = #$1F3AC; 404 | Microphone: string = #$1F3A4; 405 | Headphone: string = #$1F3A7; 406 | Radio: string = #$1F4FB; 407 | MusicalScore: string = #$1F3BC; 408 | MusicalNote: string = #$1F3B5; 409 | Saxophone: string = #$1F3B7; 410 | Guitar: string = #$1F3B8; 411 | MusicalKeyboard: string = #$1F3B9; 412 | Trumpet: string = #$1F3BA; 413 | Violin: string = #$1F3BB; 414 | Drum: string = #$1F941; 415 | MobilePhone: string = #$1F4F1; 416 | Smartphone: string = #$1F4F1; 417 | Telephone: string = #$260E; 418 | TelephoneReceiver: string = #$1F4DE; 419 | Pager: string = #$1F4DF; 420 | FaxMachine: string = #$1F4E0; 421 | Battery: string = #$1F50B; 422 | ElectricPlug: string = #$1F50C; 423 | Laptop: string = #$1F4BB; 424 | ComputerDisk: string = #$1F4BD; 425 | FloppyDisk: string = #$1F4BE; 426 | OpticalDisk: string = #$1F4BF; 427 | DVD: string = #$1F4C0; 428 | ComputerMouse: string = #$1F5B1; 429 | Trackball: string = #$1F5B2; 430 | Joystick: string = #$1F579; 431 | Keyboard: string = #$2328; 432 | ComputerPrinter: string = #$1F5A8; 433 | ComputerScreen: string = #$1F5BB; 434 | Camera: string = #$1F4F7; 435 | CameraWithFlash: string = #$1F4F8; 436 | VideoCamera: string = #$1F4F9; 437 | LongDrum: string = #$1FA98; 438 | Coin: string = #$1FA99; 439 | Wallet: string = #$1F45B; 440 | Handbag: string = #$1F45C; 441 | Briefcase: string = #$1F4BC; 442 | Backpack: string = #$1F392; 443 | StudioMicrophone: string = #$1F399; 444 | LevelSlider: string = #$1F39A; 445 | ControlKnobs: string = #$1F39B; 446 | MobilePhoneOff: string = #$1F4F4; 447 | VibrationMode: string = #$1F4F3; 448 | M: string = #$24C2; 449 | CircledM: string = #$24C5; 450 | A: string = #$1F170; 451 | B: string = #$1F171; 452 | AB: string = #$1F18E; 453 | O: string = #$1F17E; 454 | StopSign: string = #$1F6D1; 455 | NoEntry: string = #$26D4; 456 | Prohibited: string = #$1F6AB; 457 | TrafficLight: string = #$1F6A5; 458 | VerticalTrafficLight: string = #$1F6A6; 459 | Construction: string = #$1F6A7; 460 | Warning: string = #$26A0; 461 | ChildrenCrossing: string = #$1F6B8; 462 | JapaneseSymbolForBeginner: string = #$1F530; 463 | CrossMark: string = #$274C; 464 | CrossMarkButton: string = #$274E; 465 | AButtonBloodType: string = #$1F170; 466 | ABButtonBloodType: string = #$1F18E; 467 | BButtonBloodType: string = #$1F171; 468 | CLButton: string = #$1F191; 469 | COOLButton: string = #$1F192; 470 | FREEButton: string = #$1F193; 471 | IDButton: string = #$1F194; 472 | NEWButton: string = #$1F195; 473 | NGButton: string = #$1F196; 474 | OButtonBloodType: string = #$1F17E; 475 | OKButton: string = #$1F197; 476 | PButton: string = #$1F17F; 477 | SOSButton: string = #$1F198; 478 | UPButton: string = #$1F199; 479 | VSButton: string = #$1F19A; 480 | JapaneseHereButton: string = #$1F201; 481 | JapaneseServiceChargeButton: string = #$1F202; 482 | JapaneseMonthlyAmountButton: string = #$1F237; 483 | JapaneseNotFreeOfChargeButton: string = #$1F236; 484 | JapaneseReservedButton: string = #$1F22F; 485 | JapaneseBargainButton: string = #$1F250; 486 | JapaneseDiscountButton: string = #$1F239; 487 | JapaneseFreeOfChargeButton: string = #$1F21A; 488 | JapaneseProhibitedButton: string = #$1F232; 489 | JapaneseAcceptableButton: string = #$1F251; 490 | JapaneseApplicationButton: string = #$1F238; 491 | JapanesePassingGradeButton: string = #$1F234; 492 | JapaneseVacancyButton: string = #$1F233; 493 | JapaneseCongratulationsButton: string = #$3297; 494 | JapaneseSecretButton: string = #$3299; 495 | JapaneseOpenForBusinessButton: string = #$1F23A; 496 | JapaneseNoVacancyButton: string = #$1F235; 497 | JapaneseBicycleParkingButton: string = #$1F6B2; 498 | JapaneseReservedParkingButton: string = #$1F17F; 499 | RedCircle: string = #$1F534; 500 | BlueCircle: string = #$1F535; 501 | HollowRedCircle: string = #$2B55; 502 | HollowBlueCircle: string = #$1F6AB; 503 | Heart: string = #$2764; 504 | OrangeHeart: string = #$1F9E1; 505 | YellowHeart: string = #$1F49B; 506 | GreenHeart: string = #$1F49A; 507 | BlueHeart: string = #$1F499; 508 | PurpleHeart: string = #$1F49C; 509 | BlackHeart: string = #$1F5A4; 510 | BrownHeart: string = #$1F90E; 511 | WhiteHeart: string = #$1F90D; 512 | BrokenHeart: string = #$1F494; 513 | HeartExclamation: string = #$2763; 514 | TwoHearts: string = #$1F495; 515 | RevolvingHearts: string = #$1F49E; 516 | HeartDecoration: string = #$1F49F; 517 | LoveLetter: string = #$1F48C; 518 | ZZZ: string = #$1F4A4; 519 | AngerSymbol: string = #$1F4A2; 520 | SweatDroplets: string = #$1F4A6; 521 | DashSymbol: string = #$1F4A8; 522 | PileOfPoo: string = #$1F4A9; 523 | Dizzy: string = #$1F4AB; 524 | SpeechBalloon: string = #$1F4AC; 525 | ThoughtBalloon: string = #$1F4AD; 526 | RightAngerBubble: string = #$1F5EF; 527 | LeftSpeechBubble: string = #$1F5E8; 528 | RightSpeechBubble: string = #$1F5EF; 529 | LeftThoughtBubble: string = #$1F5ED; 530 | RightThoughtBubble: string = #$1F5EF; 531 | Man: string = #$1F468; 532 | Woman: string = #$1F469; 533 | Adult: string = #$1F9D1; 534 | PersonWithBlondHair: string = #$1F471; 535 | OldMan: string = #$1F474; 536 | OldWoman: string = #$1F475; 537 | Baby: string = #$1F476; 538 | PersonBowing: string = #$1F647; 539 | PersonRaisingHand: string = #$1F64B; 540 | DeafPerson: string = #$1F9CF; 541 | PersonFacepalming: string = #$1F926; 542 | PersonShrugging: string = #$1F937; 543 | PersonPouting: string = #$1F64E; 544 | PersonFrowning: string = #$1F64D; 545 | PersonWithVeil: string = #$1F470; 546 | PersonInTuxedo: string = #$1F935; 547 | PregnantWoman: string = #$1F930; 548 | Breastfeeding: string = #$1F931; 549 | PersonClimbing: string = #$1F9D7; 550 | PersonInLotusPosition: string = #$1F9D8; 551 | Mage: string = #$1F9D9; 552 | Fairy: string = #$1F9DA; 553 | Vampire: string = #$1F9DB; 554 | Merperson: string = #$1F9DC; 555 | Elf: string = #$1F9DD; 556 | Genie: string = #$1F9DE; 557 | Zombie: string = #$1F9DF; 558 | PersonGettingMassage: string = #$1F486; 559 | PersonGettingHaircut: string = #$1F487; 560 | PersonWalking: string = #$1F6B6; 561 | PersonRunning: string = #$1F3C3; 562 | Child: string = #$1F9D2; 563 | PersonBiking: string = #$1F6B4; 564 | PersonMountainBiking: string = #$1F6B5; 565 | PersonCartwheeling: string = #$1F938; 566 | PeopleWrestling: string = #$1F93C; 567 | PersonPlayingWaterPolo: string = #$1F93D; 568 | PersonPlayingHandball: string = #$1F93E; 569 | PersonJuggling: string = #$1F939; 570 | PersonInSteamyRoom: string = #$1F9D6; 571 | CircleGreen: string = #$1F7E2; 572 | end; 573 | 574 | implementation 575 | 576 | end. 577 | --------------------------------------------------------------------------------