Counts the number of emoji characters in text.
Examples
count_emojis("Hello world")
#> [1] 0
count_emojis("Hello \U0001F44B World \U0001F30D!")
#> [1] 2
count_emojis(c("No emoji", "\U0001F600\U0001F601\U0001F602"))
#> [1] 0 3
Counts the number of emoji characters in text.
count_emojis("Hello world")
#> [1] 0
count_emojis("Hello \U0001F44B World \U0001F30D!")
#> [1] 2
count_emojis(c("No emoji", "\U0001F600\U0001F601\U0001F602"))
#> [1] 0 3