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.
Usage
Currently, the Emoji class instances can be get using the EmojiManager class from Textify.Data.Unicode.
Available functions
You can use one of the following functions:
GetEmojis()
Gets an array of all known Unicode emojis
GetEmojisFromName()
Gets an array of emojis from a name
GetEmojiFromEmoji()
Gets an emoji instance from an emoji sequence
GetEmojiFromEnum()
Gets an emoji instance from an emoji enumeration value, EmojiEnum.
Emoji instance class properties
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.
Sequence
A string containing an actual emoji. This can be either one character, two surrogate characters, or a sequence of characters that modify a base emoji using width joiners or something similar.
where Status can be one of the following values:
Component
Emoji is a component (excluding Regional_Indicators, ASCII, and non-Emoji.)
FullyQualified
Emoji is fully qualified
MinimalQualified
Emoji is minimally qualified
NotQualified
Emoji is not qualified
Last updated