Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,47 @@
- Currency
- `riyal`: ⃁

- Control (Printable symbols representing non-printable characters)

- `null` ␀
- `heading.start` ␁
- `text.start` ␂
- `text.end` ␃
- `transmission.end` ␄
- `transmission.block.end` ␗
- `enquiry` ␅
- `bell` ␇
- `backspace` ␇
- `tab.h` ␉
- `tab.v` ␋
- `line.feed` ␊
- `line.return` ␍
- `line.feed` ␌
- `shift.out` ␎
- `shift.in` ␏
- `escape` ␐
- `device.one` ␑
- `device.two` ␒
- `device.three` ␓
- `device.four` ␔
- `acknowledge` ␆
- `acknowledge.not` ␕
- `synchronous` ␖
- `cancel` ␘
- `medium.end` ␙
- `substitute` ␚
- `substitute.alt` ␦
- `escape` ␛
- `separator.file` ␜
- `separator.group` ␝
- `separator.record` ␞
- `separator.unit` ␟
- `space` ␠
- `delete` ␡
- `delete.alt` ␥
- `blank` ␢
- `blank.box` ␣

### New in `emoji`

- bigfoot: 🫈
Expand Down
53 changes: 53 additions & 0 deletions src/modules/sym.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1268,3 +1268,56 @@ gender {
neuter ⚲
trans ⚧\vs{text}
}

// Printable characters representing control (non-printable) characters
control {
null ␀
heading
.start ␁
text
.start ␂
.end ␃
transmission
.end ␄
.block.end ␗
enquiry ␅
bell ␇
backspace ␇
tab
.h ␉
.v ␋
line
.feed ␊
.return ␍
.new ␤
form
.feed ␌
shift
.out ␎
.in ␏
escape ␐
device
.one ␑
.two ␒
.three ␓
.four ␔
acknowledge ␆
.not ␕
synchronous ␖
cancel ␘
medium
.end ␙
substitute ␚
.alt ␦
escape ␛
separator
.file ␜
.group ␝
.record ␞
.unit ␟
space ␠
delete ␡
.alt ␥
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can leave this one out of this PR as this is a symbol used on keyboards rather than a control picture.

blank ␢
.box ␣
Comment on lines +1321 to +1322
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Those two definitely belong outside of the control submodule imo.

}
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please make sure the file ends with a proper line ending.

Loading