Text to HTML entities

HTML entities, specifically using the hexadecimal representation of ASCII characters. By converting text to HTML entities, it helps protect sensitive information such as email addresses from being easily harvested by bots.

The table below presents the ASCII characters, their corresponding characters, and the HTML entity representation in hexadecimal form. The HTML entity representation is displayed as &#x<hexadecimal_value>;.

ASCII Char HTML Entity
32 (space) &#x20;
33 ! &#x21;
34 " &#x22;
35 # &#x23;
36 $ &#x24;
37 % &#x25;
38 & &#x26;
39 ' &#x27;
40 ( &#x28;
41 ) &#x29;
42 * &#x2A;
43 + &#x2B;
44 , &#x2C;
45 - &#x2D;
46 . &#x2E;
47 / &#x2F;
48 0 &#x30;
49 1 &#x31;
50 2 &#x32;
51 3 &#x33;
52 4 &#x34;
53 5 &#x35;
54 6 &#x36;
55 7 &#x37;
56 8 &#x38;
57 9 &#x39;
58 : &#x3A;
59 ; &#x3B;
60 < &#x3C;
61 = &#x3D;
62 > &#x3E;
63 ? &#x3F;
64 @ &#x40;
65 A &#x41;
66 B &#x42;
67 C &#x43;
68 D &#x44;
69 E &#x45;
70 F &#x46;
71 G &#x47;
72 H &#x48;
73 I &#x49;
74 J &#x4A;
75 K &#x4B;
76 L &#x4C;
77 M &#x4D;
78 N &#x4E;
79 O &#x4F;
80 P &#x50;
81 Q &#x51;
82 R &#x52;
83 S &#x53;
84 T &#x54;
85 U &#x55;
86 V &#x56;
87 W &#x57;
88 X &#x58;
89 Y &#x59;
90 Z &#x5A;
91 [ &#x5B;
92 \ &#x5C;
93 ] &#x5D;
94 ^ &#x5E;
95 _ &#x5F;
96 ` &#x60;
97 a &#x61;
98 b &#x62;
99 c &#x63;
100 d &#x64;
101 e &#x65;
102 f &#x66;
103 g &#x67;
104 h &#x68;
105 i &#x69;
106 j &#x6A;
107 k &#x6B;
108 l &#x6C;
109 m &#x6D;
110 n &#x6E;
111 o &#x6F;
112 p &#x70;
113 q &#x71;
114 r &#x72;
115 s &#x73;
116 t &#x74;
117 u &#x75;
118 v &#x76;
119 w &#x77;
120 x &#x78;
121 y &#x79;
122 z &#x7A;
123 { &#x7B;
124 | &#x7C;
125 } &#x7D;
126 ~ &#x7E;