Skip to content

Commit edebd55

Browse files
Add control pictures (#153)
1 parent 0426b6a commit edebd55

2 files changed

Lines changed: 83 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,46 @@
6565
- Currency
6666
- `riyal`: ⃁
6767

68+
- Keyboard labels
69+
- `spacebar`: ␣
70+
71+
- Control (Printable symbols representing non-printable characters)
72+
- `nul`: ␀
73+
- `soh`: ␁
74+
- `stx`: ␂
75+
- `etx`: ␃
76+
- `eot`: ␄
77+
- `enq`: ␅
78+
- `ack`: ␆
79+
- `bel`: ␇
80+
- `bs`: ␈
81+
- `ht`: ␉
82+
- `lf`: ␊
83+
- `vt`: ␋
84+
- `ff`: ␌
85+
- `cr`: ␍
86+
- `so`: ␎
87+
- `si`: ␏
88+
- `dle`: ␐
89+
- `dc.one`: ␑
90+
- `dc.two`: ␒
91+
- `dc.three`: ␓
92+
- `dc.four`: ␔
93+
- `nak`: ␕
94+
- `syn`: ␖
95+
- `etb`: ␗
96+
- `can`: ␘
97+
- `em`: ␙
98+
- `sub`: ␚
99+
- `esc`: ␛
100+
- `fs`: ␜
101+
- `gs`: ␝
102+
- `rs`: ␞
103+
- `us`: ␟
104+
- `sp`: ␠
105+
- `del`: ␡
106+
- `nl`: ␤
107+
68108
### New in `emoji`
69109

70110
- bigfoot: 🫈

src/modules/sym.txt

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1254,6 +1254,9 @@ errorbar
12541254
.circle.stroked ⧲
12551255
.circle.filled ⧳
12561256

1257+
// Keyboard labels.
1258+
spacebar ␣
1259+
12571260
gender {
12581261
female ♀\vs{text}
12591262
.double ⚢
@@ -1268,3 +1271,43 @@ gender {
12681271
neuter ⚲
12691272
trans ⚧\vs{text}
12701273
}
1274+
1275+
// Printable characters representing control (non-printable) characters
1276+
control {
1277+
nul ␀ // NULL
1278+
soh ␁ // Start Of Heading
1279+
stx ␂ // Start of TeXt
1280+
etx ␃ // End of TeXt
1281+
eot ␄ // End Of Transmission
1282+
enq ␅ // ENQuiry
1283+
ack ␆ // ACKnowledge
1284+
bel ␇ // BELl
1285+
bs ␈ // BackSpace
1286+
ht ␉ // Horizontal Tabulation
1287+
lf ␊ // Line Feed
1288+
vt ␋ // Vertical Tabulation
1289+
ff ␌ // Form Feed
1290+
cr ␍ // Carriage Return
1291+
so ␎ // Shift Out
1292+
si ␏ // Shift In
1293+
dle ␐ // Data Link Escape
1294+
dc // Device Control
1295+
.one ␑
1296+
.two ␒
1297+
.three ␓
1298+
.four ␔
1299+
nak ␕ // Negative AcKnowledge
1300+
syn ␖ // SYNchronous idle
1301+
etb ␗ // End of Transmission Block
1302+
can ␘ // CANcel
1303+
em ␙ // End of Medium
1304+
sub ␚ // SUBstitute
1305+
esc ␛ // ESCape
1306+
fs ␜ // File Separator
1307+
gs ␝ // Group Separator
1308+
rs ␞ // Record Separator
1309+
us ␟ // Unit Separator
1310+
sp ␠ // SPace
1311+
del ␡ // DELete
1312+
nl ␤ // New Line
1313+
}

0 commit comments

Comments
 (0)