Insert Arrow emojis
Examples
shape("yellow", "heart")
#> [1] "๐"
shape("yellow", c("heart", "circle", "square"))
#> [1] "๐" "๐ก" "๐จ"
shape(color = c("red", "orange", "yellow", "green", "blue",
"purple", "brown", "black", "white"),
type = "circle")
#> [1] "๐ด" "๐ " "๐ก" "๐ข" "๐ต" "๐ฃ" "๐ค" "โซ" "โช"
outer(
c("red", "orange", "yellow", "green", "blue",
"purple", "brown", "black", "white"),
c("heart", "circle", "square"),
shape
)
#> [,1] [,2] [,3]
#> [1,] "โค๏ธ" "๐ด" "๐ฅ"
#> [2,] "๐งก" "๐ " "๐ง"
#> [3,] "๐" "๐ก" "๐จ"
#> [4,] "๐" "๐ข" "๐ฉ"
#> [5,] "๐" "๐ต" "๐ฆ"
#> [6,] "๐" "๐ฃ" "๐ช"
#> [7,] "๐ค" "๐ค" "๐ซ"
#> [8,] "๐ค" "โซ" "โฌ"
#> [9,] "๐ค" "โช" "โฌ"