>
Greater than
Greater than sign
Reserved
HTML Codes
Named Entity
>
Numeric Code
>
Usage Examples
HTML Example (Named Entity)
<p>This is the Greater than: ></p>
Output: This is the Greater than: >
HTML Example (Numeric Code)
<p>This is the Greater than: ></p>
Output: This is the Greater 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.