JSFiddle - React, Tailwind, and code Playground
HTML
<p>Example 1:</p>
<!-- Observe the URL in the new tab's address bar carefully. Note that the browser reads § as a character entity and replaces it with its character-->
<a href="intel.cgi/§=3" target=_blank>It displays a special character § in the URL</a>
<br><br>
<!-- Observe the URL in the new tab's address bar carefully. Note that by replacing & with its character entity, we are able to preserve the URL -->
<a href="intel.cgi/&sect;=3" target=_blank>Using &amp; displays the URL correctly</a>
<br><br>
<p>Example 2: Can you write the character entity for less than < as text?</p>
<!-- If you use it directly, the browser will replace the character entity with its character -->
<p><</p>
<!-- You can replace the & with its character entity to escape the character -->
<p>&lt;</p>