HTMLescaped
HTMLescaped is a term used to describe text that has been transformed so that it can be safely embedded in HTML. The process, often called HTML escaping, replaces characters with character entity references that have special meaning in HTML, preventing the text from being interpreted as markup.
Common escaped sequences include < for <, > for >, & for &, " for ", and ' for a
Escaping is context-sensitive. In ordinary text inside HTML body, the characters <, >, &, and quotes should be escaped.
HTML escaping helps prevent cross-site scripting by ensuring user-supplied content cannot be interpreted as HTML or
Many programming languages and frameworks include built-in escaping functions or libraries, such as Python's html.escape, PHP's