📕 Tobaud code
The Tobaud code represents each lowercase letter of the alphabet using 5-bit natural numbers. In addition, it allows digits 0 to 4 and the space character.
| Decimal | Binary | Value |
|---|---|---|
| 0 | 00000 | ␠ |
| 1 | 00001 | a |
| 2 | 00010 | b |
| 3 | 00011 | c |
| 4 | 00100 | d |
| 5 | 00101 | e |
| 6 | 00110 | f |
| 7 | 00111 | g |
| 8 | 01000 | h |
| 9 | 01001 | i |
| 10 | 01010 | j |
| 11 | 01011 | k |
| 12 | 01100 | l |
| 13 | 01101 | m |
| 14 | 01110 | n |
| 15 | 01111 | o |
| 16 | 10000 | p |
| 17 | 10001 | q |
| 18 | 10010 | r |
| 19 | 10011 | s |
| 20 | 10100 | t |
| 21 | 10101 | u |
| 22 | 10110 | v |
| 23 | 10111 | w |
| 24 | 11000 | x |
| 25 | 11001 | y |
| 26 | 11010 | z |
| 27 | 11011 | 0 |
| 28 | 11100 | 1 |
| 29 | 11101 | 2 |
| 30 | 11110 | 3 |
| 31 | 11111 | 4 |