🌐
Toptal
toptal.com › designers › htmlarrows › math › greater-than-sign
Greater-Than Sign HTML Symbol, Character and Entity Codes — HTML Arrows
HTML symbol, character and entity codes, ASCII, CSS and HEX values for Greater-Than Sign, plus a panoply of others.
🌐
Toptal
toptal.com › designers › htmlarrows › math › greater-than-or-equal-to
Greater-Than or Equal To HTML Symbol, Character and Entity Codes — HTML Arrows
HTML symbol, character and entity codes, ASCII, CSS and HEX values for Greater-Than or Equal To, plus a panoply of others.
🌐
EasyRetro
easyretro.io › html-symbols › arrows › greater-than-above-right-arrow
HTML Symbol reference for greater-than above right arrow
HTML Symbols > arrows > greater-than above right arrow · Check and copy alternative codes for the greater-than above right arrow symbol
🌐
W3Schools
w3schools.com › html › html_entities.asp
HTML Character Entities
HTML Tag List HTML Attributes HTML Global Attributes HTML Browser Support HTML Events HTML Colors HTML Canvas HTML Audio/Video HTML Doctypes HTML Character Sets HTML URL Encode HTML Lang Codes HTTP Messages HTTP Methods PX to EM Converter Keyboard Shortcuts ... Some characters are reserved in HTML. If you use the less than (<) or greater than (>) signs in your HTML text, the browser might mix them with tags.
🌐
Codecademy
codecademy.com › forum_questions › 52ad396880ff334025009e70
How can I write Greater than/Less than signs in a paragraph in html? | Codecademy
I just starting coding and i just wanted to know when I was doing html, I did (arrow p arrow) and then i wrote “It is >10 and 100<” then (/arrow p arrow) but it didn’t work. I did the doctype,head,body and all that. How would i write this? ... To include the ‘carats’ in our plain text, we need to write them as HTML entities. The left carat is, &lt;, and the right carat is, &gt;. The semi-colon is not an option. All HTML entities start with & and end with ;. ... ohh ok thanks for that.
🌐
freeCodeCamp
freecodecamp.org › news › html-symbols-html-icon-and-entity-code-list
HTML Symbols – HTML Icon and Entity Code List
May 19, 2022 - If you are using the entity names, make sure they are preceded by an ampersand (&) and followed by a semicolon (;). For example, &gt; for the greater than symbol so you get > to create that symbol. If you are using the HTML code to type in the entities, make sure they are preceded by an ampersand (&) and hash (#), and followed by a semicolon (;).
🌐
Cyber Definitions
cyberdefinitions.com › symbols › arrow-symbols › greater-than-above-rightwards-arrow.html
'greater-than-above-rightwards-arrow' | Symbol and Codes
The HTML Entity for greater-than-above-rightwards-arrow is ⥸. You can also use the HTML Code (&#10616, CSS Code (2978), Hex Code (&#x2978;), or Unicode (02978) to insert the symbol for greater-than-above-rightwards-arrow.
🌐
Toptal
toptal.com › designers › htmlarrows › arrows
HTML Arrow Symbols, Entities and Codes — Toptal Designers
Easily find HTML arrow symbols, entities, characters and codes with ASCII, HEX, CSS and Unicode values; including right arrow, left arrow, up and down arrows.
🌐
Wikipedia
en.wikipedia.org › wiki › Greater-than_sign
Greater-than sign - Wikipedia
November 27, 2025 - In some early e-mail systems, the greater-than sign was used to denote quotations. The sign is also used to denote quotations in Markdown. The 'greater-than sign' > is encoded in ASCII as character hex 3E, decimal 62. The Unicode code point is
Find elsewhere
🌐
Toptal
toptal.com › designers › htmlarrows › arrows › greater-than-above-right-arrow
Greater-Than Above Right Arrow HTML Symbol, Character and Entity Codes — HTML Arrows
HTML symbol, character and entity codes, ASCII, CSS and HEX values for Greater-Than Above Right Arrow, plus a panoply of others.
🌐
W3Schools
w3schools.com › charsets › ref_utf_arrows.asp
HTML Unicode Arrows
Some of the arrows above, also has an HTML entity code:
🌐
Quora
quora.com › How-do-I-enter-a-greater-than-sign-in-HTML-text
How to enter a greater than sign in HTML text - Quora
Answer (1 of 3): As Syed Riyaz Uddin explained you use the HTML Entity > to display a greater than sign. HTML entities such as this are used when we want to display characters that are reserved for other purposes. In this case the > is a reserved character that is normally interpreted as sign...
🌐
Toptal
toptal.com › designers › htmlarrows › math › less-than-or-greater-than
Less-Than or Greater-Than HTML Symbol, Character and Entity Codes — HTML Arrows
HTML symbol, character and entity codes, ASCII, CSS and HEX values for Less-Than or Greater-Than, plus a panoply of others.
🌐
Nist
hissa.nist.gov › ~black › codesQuikRef.html
HTML Codes for Special Characters
This is a list of special HTML codes for common symbols. They are organized into codes for special symbols, math, greek letters, business, and foreign letters. You may also find the HTML Quik Reference or the Table Sampler useful · W3C lists all HTML characters, but not as nicely as this page.
🌐
HTML Symbols
htmlsymbols.xyz › unicode › U+FF1E
> - Fullwidth greater-than sign (U+FF1E) - HTML Symbols
Detailed information about the Unicode character 'Fullwidth greater-than sign' with code point U+FF1E that can be used as a symbol or icon on your site.
🌐
HTML Code Generator
html-code-generator.com › html › special-characters
Symbol Codes: Character Entities For HTML And CSS
Easily find and copy HTML symbol codes for use in HTML and CSS, and. These character entities allow you to display special symbols, such as arrows, mathematical operators, and punctuation marks, directly on your webpage.
Top answer
1 of 2
2

I think background images are your only real pure-CSS option, since content isn't well-supported (or supported at all) on earlier browsers.

If you're okay with it not being a pure CSS solution, you can fake it with Javascript, but of course that violates the "using CSS only" part of your question :-) (and requires that your site visitors have Javascript enabled). For instance, using Prototype:

document.observe("dom:loaded", handleDividers);
function handleDividers() {
    $$('nearly any CSS3 selector').invoke('insert', {
        bottom: "&gt;"
    });
}

...puts a > at the end of any element matching the selector. You could do the same with jQuery, Closure, ... I think the quasi-equivalent jQuery would be:

$.ready(handleDividers);
function handleDividers() {
    $('nearly any CSS3 selector').append("&gt;");
}
2 of 2
2

I stumbled across this post while searching for a solution for the same issue. I found a pure CSS solution, and figured I would share it in case someone came across this as well.

I'm using this for breadcrumbs for a website. Currently we have spans with

    .breadcrumbs {

      overflow: hidden;

      background-color: #fcfafa;

      padding: 9px 15px;

      overflow: hidden;

      height: 32px

    }

    ul {

      list-style: none;

    }

    .breadcrumbs li {

      float: left;

    }

    .breadcrumbs a {

      float: left;

    }

    .breadcrumbs span {

      position: relative;

    }

    .breadcrumbs span {

      float: left;

      padding: 0 18px;

    }

    .breadcrumbs span:after,

    .breadcrumbs span:before {

      left: -0%;

      top: 50%;

      border: solid transparent;

      content: " ";

      height: 0;

      width: 0;

      position: absolute;

      pointer-events: none;

    }

    .breadcrumbs span:after {

      border-left-color: #fcfafa;

      border-width: 30px;

      margin-top: -30px;

    }

    .breadcrumbs span:before {

      border-color: rgba(194, 225, 245, 0);

      border-left-color: #f39200;

      border-width: 34px;

      margin-top: -34px;

    }
<div class="breadcrumbs">
  <ul>
    <li>
      <a>Frontpage</a>
      <span></span>
    </li>
    <li>
      <a>Category 1</a>
      <span></span>
    </li>
    <li>Category 2</li>
  </ul>
</div>

Example is quite crude. I've copied some code in which doesnt work exactly as intended when running here, as the text is displaced, but it illustrates how to create the "greater than" sign.

Code was created base on http://cssarrowplease.com/ and just slightly modified.

🌐
Toptal
toptal.com › designers › htmlarrows
HTML Symbols, Entities, Characters and Codes — HTML Arrows
Easily find HTML symbols, entities, characters and codes with ASCII, HEX, CSS and Unicode values for HTML arrow, ASCII arrow, and more in grid or table format.
🌐
W3Schools
w3schools.com › CHARSETS › ref_utf_math.asp
HTML Unicode Mathematical Operators
Currency Symbols Letterlike Symbols Number Forms Enclosed Alpha Enclosed Ideographic Box Drawings Geometric Shapes Misc Symbols Dingbats Ornamental Dingbats UTF-8 Arrows