R/Emoji_list.R

Defines functions emoji_list

Documented in emoji_list

#'  Print list of All Available Emoji names and actual emojis in the console
#'
#' Prints all emoji names with their corresponding emoji symbols from the master list.
#'
#' @return prints the name of the emoji and the emoji image in the console
#' @export
#'
#' @examples
#' emoji_list()
#'
emoji_list <- function() {
  cat("Available Emojis in Rmoji\n\n")
  for (name in names(emoji_dict)) {
    cat(sprintf("%-15s %s\n", name, emoji_dict[[name]]))
  }
}

Try the Rmoji package in your browser

Any scripts or data that you put into this service are public.

Rmoji documentation built on June 8, 2025, 12:25 p.m.