<
Less than
Less than sign
Reserved
HTML Codes
Named Entity
<
Numeric Code
<
Usage Examples
HTML Example (Named Entity)
<p>This is the Less than: <</p>
Output: This is the Less than: <
HTML Example (Numeric Code)
<p>This is the Less than: <</p>
Output: This is the Less than: <
JavaScript Example
const char = "<"; console.log(char); // <
When to Use HTML Entities
These characters are reserved in HTML and must be escaped to display correctly. Always use entity codes when you want to display these characters as text.