Emoji Management
Manage your emoticons here.
Textify provides a tool for emoji management that allows you to obtain a full list of Unicode emojis according to the latest Unicode 16.0.0 standard taken from this source. This tool allows you to analyze an emoji, get its sequence, its name, and other properties. Currently, the Emoji
class instances can be get using one of the following functions from the EmojiManager
class from Textify.Data.Unicode
:
GetEmojis()
: Gets an array of all known Unicode emojisGetEmojisFromName()
: Gets an array of emojis from a nameGetEmojiFromEmoji()
: Gets an emoji instance from an emoji sequenceGetEmojiFromEnum()
: Gets an emoji instance from an emoji enumeration value,EmojiEnum
.
An Emoji
class instance contains the following properties:
Name
: Name of an emoji according to the Unicode database.Enum
: Automatically generated emoji enumeration.Status
: Unicode status for a particular emoji.Component
: Emoji is a component (excluding Regional_Indicators, ASCII, and non-Emoji.)FullyQualified
: Emoji is fully qualifiedMinimalQualified
: Emoji is minimally qualifiedNotQualified
: Emoji is not qualified
Sequence
: A string containing an actual emoji. This can be either one characters, two surrogate characters, or a sequence of characters that modify a base emoji using width joiners or something similar.
Last updated