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)
\003EJavaScript Unicode (\uXXXX)
\u003EURL Percent Encoded
%3EReal-World Implementation Snippets
HTML5 Document
<p>Example: ></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 ">". If using numeric codes, you can use the decimal code ">" or hex code ">".