-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscript_print_utf8.sh
More file actions
executable file
·27 lines (21 loc) · 928 Bytes
/
script_print_utf8.sh
File metadata and controls
executable file
·27 lines (21 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
UTF8CODE=("\u0ed1" "\u10fb" "\u1ffc" "\u2020" "\u2022" "\u2023" "\u2024"
"\u2026" "\u2030" "\u2031" "\u203c" "\u2047" "\u2074" "\u2075" "\u2076"
"\u2077" "\u2078" "\u2079" "\u20a4" "\u2126" "\u2190" "\u2191" "\u2192"
"\u2193" "\u2194" "\u21a2" "\u21a3" "\u21af" "\u21ba" "\u21c4" "\u21c5"
"\u221a" "\u221b" "\u221e" "\u2219" "\u222b" "\u2248" "\u224b" "\u2295"
"\u2300" "\u231a" "\u2328" "\u2375" "\u237a" "\u2600" "\u2602" "\u2603"
"\u2605" "\u2606" "\u260e" "\u260f" "\u2614" "\u2615" "\u2618" "\u2620"
"\u2622" "\u2623" "\u262d" "\u262e" "\u262f" "\u2638" "\u2639" "\u263a"
"\u263b" "\u2640" "\u2642" "\u2661" "\u2665" "\u266a" "\u266b" "\u266c"
"\u2690" "\u2694" "\u2702" "\u2704" "\u2708" "\u270d" "\u2713" "\u2714"
"\u271d" "\u2744" "\u03bb")
# Make font double size
F_VDOBLE="\033#6"
echo -e "\n"
for e in ${UTF8CODE[@]}; do
printf "${F_VDOBLE}${e} "
# echo -e "${F_VDOBLE}${e}"
done
echo -e "\n"
exit 0