keecode logokeecode
Home / HTML Entities / Greater than
>

Greater than

Greater than sign

Reserved

HTML Codes

Named Entity

>

Numeric Code

>

Usage Examples

HTML Example (Named Entity)

<p>This is the Greater than: &gt;</p>

Output: This is the Greater than: >

HTML Example (Numeric Code)

<p>This is the Greater than: &#62;</p>

Output: This is the Greater than: >

JavaScript Example

const char = "&gt;";
console.log(char); // >