HTML Special Chars
>

Greater-Than Sign (>)

The greater-than sign closes HTML tags. Use > when displaying literal comparison operators in technical content or documentation.

One-Click Copyable Code Formats

HTML Named Entity
>
HTML Decimal Code
>
HTML Hex Code
>
CSS content (\XXXX)
\003E
JavaScript Unicode (\uXXXX)
\u003E
URL Percent Encoded
%3E

Real-World Implementation Snippets

HTML5 Document
<p>Example: &gt;</p>
CSS ::before / ::after
.badge::before { content: '\003E '; }
React JSX / TypeScript
<span>{"\u003E"}</span>
Frequently Asked Questions

Greater-Than Sign (>) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&gt;". If using numeric codes, you can use the decimal code "&#62;" or hex code "&#x3E;".