Character Escape Sequences

 JavaScript character escapes:


\^, \$, \\, \., \*, \+, \?, \(, \), \[, \], \{, \}, \|, \/


HTML character entities:


   non-breaking space         

< less than   &lt;   &#60; 

> greater than   &gt;   &#62; 

& ampersand   &amp;   &#38; 

" double quotation mark   &quot;   &#34; 

' single quotation mark   &apos;   &#39;

 

Comments