View source: R/lookup_emojis.R
lookup_emojis | R Documentation |
Looks up names, IDs, and/or categories of emojis based on an input of either names, IDs, or emojis.
lookup_emojis(input, type)
input |
A character or integer vector, depending on the type argument. |
type |
Either "id" (for integer IDs), "emoji" (for emojis), or "name" (for Unicode-assigned names). |
Names and categories are assigned by Unicode. IDs are unique to the emoji package. Updated as of Unicode 12.1.
Produces a data frame with four columns for each emoji in the input vector - emoji, name, ID, and category.
Rebecca Godard
https://unicode.org/emoji/charts/full-emoji-list.html
all_emojis
lookup_emojis(input = c(1:10), type = "id")
lookup_emojis(input = c("\U001f600", "\U002764", "\U001f4aa"), type = "emoji")
Note: Emojis are not supported by the software used to generate package manuals, so
the unicode character codes are used instead.
lookup_emojis(input = c("grinning cat", "hundred points", "monkey face"), type = "name")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.