Index | -Table(3)- Special char | Section 8




Special Table (Construction Jan 27 - Feb 12, 2001)
 0-255


Copy and paste into MS-DOS Editor:

To copy and paste any characters: Use NOTEPAD and the other ASCII table,
save the file and THEN open it using the EDIT command; (select the file,
choose Start Menu: "Send to MS-DOS Editor" but this will only works if a
Short Cut exist in your "\Windows\SendTo\" folder).                     


Dec Char

Dec Char

Dec Char

Dec Char

Dec Char

Dec Char

Dec Char

Dec Char

 


 


 


 


 


 


 


 

 

 Table (add 2, 4, 6,...)

    CHOICE /C'''0123456 Choose 3 to create an errorlevel of 7

    That is nothing special. It's easy to see that we will get an errorlevel
    of 7 if 3 is pressed but
    if we wanted to set a variable to 5 (in the case of errorlevel 7 above),
    then we can't write:
                                if errorlevel 7 set var= 7 -2

    The following are mathematically equivalent:

    for %%v in ( 6   7   8 ) do if errorlevel   %%v    set var= %%v -2
    for %%v in (6-2 7-2 8-2) do if errorlevel (%%v +2) set var= %%v
    for %%v in ( 4   5   6 ) do if errorlevel (%%v +2) set var= %%v
    for %%v in (  4  5  6  ) do if errorlevel   ? %%v  set var= %%v
    for %%v in ( 0 4 5 6 9 ) do if errorlevel   }%%v   set var=%%v

    The table below simply displays a solution for any calculation that you
    want to compute. Based on zero and ONLY one digit in %%v. It's possible
    to add +2, 4 or 6,... and for each calculation exists two solutions but
    not all of the permutations are permitted! For example (R 10 Column 5),
    "If ErrorLevel (0 +110)". 59 = ASCII(;) and 187 = 59 +128, which is the
    ASCII value that you should examine/test.

    Scoop in DOS:
    Because/if you are reading this stuff before June 2001, and since only
    20 permutations had ever been used, then you should be able to impress
    someone but you may do that before the above date. After this date the
    whole world would knew about it!
    I.E. An international magazine are currently working on this DOS/scoop.

    for %%v in ( 0 9 ) do if errorlevel }%%v  %[ASCII 125]%  set var=%%v
    for %%v in ( 0 9 ) do if errorlevel ý%%v  %[ASCII 253]%  set var=%%v
    :-) 

 
R 0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25

 Col 1     
+02  }   ý 
 12  ~  254
 22 127 255
 32  00 128
 42  01 129
 52  02 130
 62  03 131
 72  04 132
 82  05 133
 92  06 134
102  07 135
112  08 136
122  09 137
132  10 138
142  11 139
152  12 140
162  13 141
172  14 142
182  15 143
192  16 144
202  17 145
212  18 146
222  19 147
232  20 148
242  21 149
252  22 150

 Col 2     
+04  J  202
 14  K  203
 24  L  204
 34  M  205
 44  N  206
 54  O  207
 64  P  208
 74  Q  209
 84  R  210
 94  S  211
104  T  212
114  U  213
124  V  214
134  W  215
144  X  216
154  Y  217
164  Z  218
174  [  219
184  \  220
194  ]  221
204  ^  222
214  _  223
224  `  224
234  a  225
244  b  226
254  c  227

 Col 3     
+06  23 151
 16  24 152
 26  25 153
 36  26 154
 46  27 155
 56  28 156
 66  29 157
 76  30 158
 86  31 159
 96  32 160
106  !  161
116  "  162
126  #  163
136  $  164
146  %  165
156  &  166
166  '  167
176  (  168
186  )  169
196  *  170
206  +  171
216  44 172
226  -  173
236  .  174
246  /  175
     0  176

 Col 4     
+08  d  228
 18  e  229
 28  f  230
 38  g  231
 48  h  232
 58  i  233
 68  j  234
 78  k  235
 88  l  236
 98  m  237
108  n  238
118  o  239
128  p  240
138  q  241
148  r  242
158  s  243
168  t  244
178  u  245
188  v  246
198  w  247
208  x  248
218  y  249
228  z  250
238  {  251
248 124 252
 

 Col 5     
+10  1  177
 20  2  178
 30  3  179
 40  4  180
 50  5  181
 60  6  182
 70  7  183
 80  8  184
 90  9  185
100  :  186
110  59 187
120  60 188
130  61 189
140  62 190
150  ?  191
160  @  192
170  A  193
180  B  194
190  C  195
200  D  196
210  E  197
220  F  198
230  G  199
240  H  200
250  I  201
 

-Top-

Special char | Section 8