|
6 | 6 | .EXAMPLE
|
7 | 7 | PS> ./list-ascii-table.ps1
|
8 | 8 |
|
9 |
| - Dec Oct Hex HTML Symbol Description |
10 |
| - --- --- --- ---- ------ ----------- |
11 |
| - 0 000 00 � NUL Null character |
| 9 | + Dec Oct Hex Binary HTML Symbol Description |
| 10 | + --- --- --- ------ ---- ------ ----------- |
| 11 | + 0 000 00 00000000 � NUL Null character |
12 | 12 | ...
|
13 | 13 | .LINK
|
14 | 14 | https://github.com/fleschutz/PowerShell
|
|
52 | 52 | " 30 036 1E 00011110  RS Record Separator"
|
53 | 53 | " 31 037 1F 00011111  US Unit Separator"
|
54 | 54 | " 32 040 20 00100000   space Space"
|
55 |
| -" 33 041 21 00100001 ! ! Exclamation mark" |
56 |
| -" 34 042 22 00100010 " `" Double quote" |
57 |
| -" 35 043 23 00100011 # # Number" |
58 |
| -" 36 044 24 00100100 $ $ Dollar sign" |
59 |
| -" 37 045 25 00100101 % % Percent" |
60 |
| -" 38 046 26 00100110 & & Ampersand" |
61 |
| -" 39 047 27 00100111 ' ' Single quote" |
| 55 | +" 33 041 21 00100001 ! ! Exclamation mark" |
| 56 | +" 34 042 22 00100010 " `" Double quote" |
| 57 | +" 35 043 23 00100011 # # Number" |
| 58 | +" 36 044 24 00100100 $ $ Dollar sign" |
| 59 | +" 37 045 25 00100101 % % Percent" |
| 60 | +" 38 046 26 00100110 & & Ampersand" |
| 61 | +" 39 047 27 00100111 &apos ' Single quote" |
| 62 | +" 40 050 28 00101000 &lparen; ( Open parenthesis (or open bracket)" |
| 63 | +" 41 051 29 00101001 &rparen; ) Close parenthesis (or close bracket)" |
| 64 | +" 42 052 2A 00101010 * * Asterisk" |
| 65 | +" 43 053 2B 00101011 + + Plus" |
| 66 | +" 44 054 2C 00101100 , , Comma" |
| 67 | +" 45 055 2D 00101101 - - Hyphen-minus" |
| 68 | +" 46 056 2E 00101110 . . Period, dot or full stop" |
| 69 | +" 47 057 2F 00101111 / / Slash or divide" |
| 70 | +" 48 060 30 00110000 0 0 Zero" |
| 71 | +" 49 061 31 00110001 1 1 One" |
| 72 | +" 50 062 32 00110010 2 2 Two" |
| 73 | +" 51 063 33 00110011 3 3 Three" |
| 74 | +" 52 064 34 00110100 4 4 Four" |
| 75 | +" 53 065 35 00110101 5 5 Five" |
| 76 | +" 54 066 36 00110110 6 6 Six" |
| 77 | +" 55 067 37 00110111 7 7 Seven" |
| 78 | +" 56 070 38 00111000 8 8 Eight" |
| 79 | +" 57 071 39 00111001 9 9 Nine" |
62 | 80 | exit 0 # success
|
0 commit comments