Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ikskuh/asciitable

A very basic tool that just prints the ascii table
https://github.com/ikskuh/asciitable

Last synced: about 1 month ago
JSON representation

A very basic tool that just prints the ascii table

Awesome Lists containing this project

README

        

# ASCII Table

A *very* simple tool that just prints out a ASCII table:

```
DEC HEX OCT CHR | DEC HEX OCT CHR | DEC HEX OCT CHR | DEC HEX OCT CHR
-----------------|------------------|------------------|-----------------
0 0 0 NUL | 32 20 40 ' ' | 64 40 100 '@' | 96 60 140 '`'
1 1 1 SOH | 33 21 41 '!' | 65 41 101 'A' | 97 61 141 'a'
2 2 2 STX | 34 22 42 '"' | 66 42 102 'B' | 98 62 142 'b'
3 3 3 ETX | 35 23 43 '#' | 67 43 103 'C' | 99 63 143 'c'
4 4 4 EOT | 36 24 44 '$' | 68 44 104 'D' | 100 64 144 'd'
5 5 5 ENQ | 37 25 45 '%' | 69 45 105 'E' | 101 65 145 'e'
6 6 6 ACK | 38 26 46 '&' | 70 46 106 'F' | 102 66 146 'f'
7 7 7 BEL | 39 27 47 ''' | 71 47 107 'G' | 103 67 147 'g'
8 8 10 BS | 40 28 50 '(' | 72 48 110 'H' | 104 68 150 'h'
9 9 11 TAB | 41 29 51 ')' | 73 49 111 'I' | 105 69 151 'i'
10 a 12 LF | 42 2a 52 '*' | 74 4a 112 'J' | 106 6a 152 'j'
11 b 13 VT | 43 2b 53 '+' | 75 4b 113 'K' | 107 6b 153 'k'
12 c 14 FF | 44 2c 54 ',' | 76 4c 114 'L' | 108 6c 154 'l'
13 d 15 CR | 45 2d 55 '-' | 77 4d 115 'M' | 109 6d 155 'm'
14 e 16 SO | 46 2e 56 '.' | 78 4e 116 'N' | 110 6e 156 'n'
15 f 17 SI | 47 2f 57 '/' | 79 4f 117 'O' | 111 6f 157 'o'
16 10 20 DLE | 48 30 60 '0' | 80 50 120 'P' | 112 70 160 'p'
17 11 21 DC1 | 49 31 61 '1' | 81 51 121 'Q' | 113 71 161 'q'
18 12 22 DC2 | 50 32 62 '2' | 82 52 122 'R' | 114 72 162 'r'
19 13 23 DC3 | 51 33 63 '3' | 83 53 123 'S' | 115 73 163 's'
20 14 24 DC4 | 52 34 64 '4' | 84 54 124 'T' | 116 74 164 't'
21 15 25 NAK | 53 35 65 '5' | 85 55 125 'U' | 117 75 165 'u'
22 16 26 SYN | 54 36 66 '6' | 86 56 126 'V' | 118 76 166 'v'
23 17 27 ETB | 55 37 67 '7' | 87 57 127 'W' | 119 77 167 'w'
24 18 30 CAN | 56 38 70 '8' | 88 58 130 'X' | 120 78 170 'x'
25 19 31 EM | 57 39 71 '9' | 89 59 131 'Y' | 121 79 171 'y'
26 1a 32 SUB | 58 3a 72 ':' | 90 5a 132 'Z' | 122 7a 172 'z'
27 1b 33 ESC | 59 3b 73 ';' | 91 5b 133 '[' | 123 7b 173 '{'
28 1c 34 FS | 60 3c 74 '<' | 92 5c 134 '\' | 124 7c 174 '|'
29 1d 35 GS | 61 3d 75 '=' | 93 5d 135 ']' | 125 7d 175 '}'
30 1e 36 RS | 62 3e 76 '>' | 94 5e 136 '^' | 126 7e 176 '~'
31 1f 37 US | 63 3f 77 '?' | 95 5f 137 '_' | 127 7f 177 DEL
```

## Build Instructions

Install the latest Zig master, then invoke `zig build`.

Copy `zig-out/bin/ascii` to everywhere you want.