2021-11-09 06:49:16 +03:00
|
|
|
#!/bin/zsh
|
2021-08-11 19:11:59 +03:00
|
|
|
|
|
|
|
echo -e "\u270c Victory hand, text presentation by default"
|
|
|
|
echo -e "\u270c\ufe0e Victory hand, explicit text presentation"
|
|
|
|
echo -e "\u270c\ufe0f Victory hand, explicit emoji presentation"
|
|
|
|
|
|
|
|
echo -e "\u270a Raised fist, emoji presentation by default"
|
2021-11-26 00:34:32 +03:00
|
|
|
echo -e "\u270a\ufe0e Raised fist, explicit text presentation (invalid; no effect)"
|
2021-08-11 19:11:59 +03:00
|
|
|
echo -e "\u270a\ufe0f Raised fist, explicit emoji presentation"
|
2021-11-25 18:53:07 +03:00
|
|
|
|
|
|
|
echo -e "\u2716 Multiply, text presentation by default"
|
|
|
|
echo -e "\u2716\ufe0e Multiply, explicit text presentation"
|
|
|
|
echo -e "\u2716\ufe0f Multiply, explicit emoji presentation"
|
|
|
|
|