Greater-than Sign

>

Shortcodes

Copy useful codes for greater-than sign > to use in websites, apps, blogs, and docs.

Unicode
U+003E
Alt Code
62
HTML Code
>
HTML Entity
>
HEX Code
>
CSS Code
\003E
JS/JSON
\u003E
Unix/C/PHP/JAVA
0x3E
URL-encode
%3E

Customize Greater-than Sign

Customize >, download it as SVG or PNG, or copy the generated HTML snippet.

>
  

How to use Greater-than Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>></span>
HTML Code:
<span>&#62;</span>
HTML Entity:
<span>&gt;</span>
HEX Code:
<span>&#x003E;</span>

Add with CSS

.greater-than-sign::before {
  content: '\\003E';
}

Set it in JavaScript

document.querySelector('.greater-than-sign').textContent = '>';
copied