With {utf8ify} you can easilyโฆ
1๏ธโฃ ๐ณ๐ผ๐ฟ๐บ๐ฎ๐ ๐๐ฒ๐ ๐ 2๏ธโฃ ๐๐จ๐ซ๐ฆ๐๐ญ ๐ญ๐๐ฑ๐ญ 3๏ธโฃ ๐ง๐ฐ๐ณ๐ฎ๐ข๐ต ๐ต๐ฆ๐น๐ต 4๏ธโฃ ๐๐๐๐๐๐ ๐๐๐๐ 5๏ธโฃ ๐ฏ๐ธ๐ป๐ถ๐ช๐ฝ ๐ฝ๐ฎ๐๐ฝ 6๏ธโฃ ๐๐๐๐๐๐ ๐๐๐๐ 7๏ธโฃ โโโกโโโฃ โฃโโงโฃ
โฆ using UTF8 characters! ๐ ๐
library(utf8ify)
<- " format text "
text cat(paste0(
utf8_number_box(1), utf8_text_bold(text),
utf8_number_box(2), utf8_text_bold2(text),
utf8_number_box(3), utf8_text_italic(text),
utf8_number_box(4), utf8_text_bolditalic(text),
utf8_number_box(5), utf8_text_cursive(text),
utf8_number_box(6), utf8_text_gothic(text),
utf8_number_box(7), utf8_text_circle(text),
"\n... using UTF8 characters!\n",
utf8_collection()$fav$sunglasses,
utf8_collection()$fav$rocket
))
Or use utf8_collection()
to access one of the
preselected UTF8 characters (organised as lists)โฆ ๐๐
fav: โก โฌ ๐บ ๐ก โ๏ธ ๐ โ โ ๐ง ๐ ๐ฅ ๐ ๐ ๐ โค๏ธ ๐ ๐ ๐ฐ ๐ฏ ๐ ๐ฉ โ ๐ฎ ๐ ๐ ๐ฌ โญ ๐ ๐ฏ ๐ ๐ค ๐ ๐ ๐คญ ๐ ๐ค animal: ๐ ๐ ๐ ๐ ๐ ๐ฌ ๐ ๐ ๐ฆ ๐ ๐ ๐ ๐ ๐ ๐ celebrate: ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ clock: ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ eat: ๐ ๐ฐ ๐ ๐ช ๐ ๐ ๐ ๐ ๐ฝ ๐ฟ drink: ๐บ ๐ป ๐พ โ ๐ธ ๐ท list: โก โ โ๏ธ โ โ ๐น ๐ธ โซ ๐ต ๐ข ๐ ๐ด โ office: ๐ ๐ ๐ ๐ฅ ๐ ๐ป ๐ ๐ ๐ ๐จ ๐ ๐ โ ๐ person: ๐ฉ ๐จ ๐ง ๐ฆ ๐ซ ๐ฌ ๐ญ ๐ช ๐ต ๐ด smiley: ๐ ๐ ๐ ๐ฎ ๐ ๐ค ๐คญ ๐ค sport: ๐ ๐ฅ ๐ด ๐ ๐ ๐ ๐ ๐ ๐พ ๐ travel: โ ๐ฒ ๐ ๐ ๐งณ ๐ ๐ โต ๐ด ๐ข ๐ ๐
<- utf8_collection()
u cat(u$fav$thumbs_up, u$smiley$happy)
for (i in seq(1, length(u))) {
cat(paste0(
"\n", names(u[i]), ":\n",
paste(unlist(u[i]), collapse = " ")
)) }