EN
JavaScript - safe ASCII characters in request parameters in URL
11 points
In this short article we would like to show how to print all safe ASCII characters that we are able to use in request parameters in URL.
Runnable code:
xxxxxxxxxx
1
console.log('[NO]\t[CHAR]\t[BINARY]\n\n');
2
3
for (let i = 0, n = 0; i < 256; ++i) {
4
var char = String.fromCharCode(i);
5
var safeChar = encodeURIComponent(char);
6
if (char === safeChar) {
7
n += 1;
8
console.log(n + '\t' + char + '\t' + i.toString(2));
9
}
10
}
Full list:
xxxxxxxxxx
1
[NO] [CHAR] [BINARY]
2
3
1 ! 100001
4
2 ' 100111
5
3 ( 101000
6
4 ) 101001
7
5 * 101010
8
6 - 101101
9
7 . 101110
10
8 0 110000
11
9 1 110001
12
10 2 110010
13
11 3 110011
14
12 4 110100
15
13 5 110101
16
14 6 110110
17
15 7 110111
18
16 8 111000
19
17 9 111001
20
18 A 1000001
21
19 B 1000010
22
20 C 1000011
23
21 D 1000100
24
22 E 1000101
25
23 F 1000110
26
24 G 1000111
27
25 H 1001000
28
26 I 1001001
29
27 J 1001010
30
28 K 1001011
31
29 L 1001100
32
30 M 1001101
33
31 N 1001110
34
32 O 1001111
35
33 P 1010000
36
34 Q 1010001
37
35 R 1010010
38
36 S 1010011
39
37 T 1010100
40
38 U 1010101
41
39 V 1010110
42
40 W 1010111
43
41 X 1011000
44
42 Y 1011001
45
43 Z 1011010
46
44 _ 1011111
47
45 a 1100001
48
46 b 1100010
49
47 c 1100011
50
48 d 1100100
51
49 e 1100101
52
50 f 1100110
53
51 g 1100111
54
52 h 1101000
55
53 i 1101001
56
54 j 1101010
57
55 k 1101011
58
56 l 1101100
59
57 m 1101101
60
58 n 1101110
61
59 o 1101111
62
60 p 1110000
63
61 q 1110001
64
62 r 1110010
65
63 s 1110011
66
64 t 1110100
67
65 u 1110101
68
66 v 1110110
69
67 w 1110111
70
68 x 1111000
71
69 y 1111001
72
70 z 1111010
73
71 ~ 1111110