Char | Code | Name | Description |
| 32 | - | Normal space |
! | 33 | - | Exclamation |
" | 34 | quot | Double quote |
# | 35 | - | Hash |
$ | 36 | - | Dollar |
% | 37 | - | Percent |
& | 38 | amp | Ampersand |
' | 39 | - | Apostrophe |
( | 40 | - | Open bracket |
) | 41 | - | Close bracket |
* | 42 | - | Asterisk |
+ | 43 | - | Plus sign |
, | 44 | - | Comma |
- | 45 | - | Minus sign |
. | 46 | - | Period |
/ | 47 | - | Forward slash |
|
Char | Code | Name | Description |
0 | 48 | - | Digit 0 |
1 | 49 | - | Digit 1 |
2 | 50 | - | Digit 2 |
3 | 51 | - | Digit 3 |
4 | 52 | - | Digit 4 |
5 | 53 | - | Digit 5 |
6 | 54 | - | Digit 6 |
7 | 55 | - | Digit 7 |
8 | 56 | - | Digit 8 |
9 | 57 | - | Digit 9 |
: | 58 | - | Colon |
; | 59 | - | Semicolon |
< | 60 | lt | Less than |
= | 61 | - | Equals |
> | 62 | gt | Greater than |
? | 63 | - | Question mark |
|