Using emojis in your app has never been easier.
Mojee provides a semantic API for .NET and TypeScript. These are just a few examples. You can learn more reading the docs .
// 1. Replace all shortcodes with an emoji
Mojee.Replace("Hello, world :smile:");
// Hello, world 😄
// 2. Search for emojis
Mojee.Search("smile").ToList()
.ForEach(emoji => Console.Write(emoji));
// 😄 😸 😃 😺 😅
// 3. Get an emoji
var emoji = Emoji.Get("smile");
Console.Write($"{emoji.Shortcode}: {emoji}");
// smile: 😄
Mojee.io is a great tool for searching emojis. We provide a convenient search tool where you can view and copy emojis.
Building a robust and performant Emoji parser is time consuming. Mojee does the heavy lifting for you and you can add Emoji support to your app in minutes.
Get started