Escape < > & " ' into HTML entities, or restore entities back
An HTML entity (HTML Entity) is used to display reserved or invisible characters on a web page. For example, to show a code snippet containing <div>, you must escape < and > as < and >, otherwise the browser parses them as tags.
Common entities include: & (&), < (<), > (>), " ("), ' ('), and decimal/hexadecimal forms like © (©). This tool handles all standard entities in both directions.
Input: <a href="#">link</a>
Encoded: <a href="#">link</a>
©) and numeric entities (like © or ©) are correctly restored on decode.