HTML Entity for Greater Than With Dot (⋗)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+22D7

What You'll Learn

How to display the Greater Than With Dot (⋗) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22D7 (GREATER-THAN WITH DOT) in the Mathematical Operators block (U+2200–U+22FF).

Render it with ⋗, ⋗, ⋗, or CSS escape \22D7. It is a greater-than sign with a dot, used in order theory, formal logic, and technical notation. Not the same as plain Greater Than (>, U+003E).

⚡ Quick Reference — Greater Than With Dot

Unicode U+22D7

Mathematical Operators

Hex Code ⋗

Hexadecimal reference

HTML Code ⋗

Decimal reference

Named Entity ⋗

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22D7
Hex code       ⋗
HTML code      ⋗
Named entity   ⋗
CSS code       \22D7
Meaning        Greater-than with dot
Not to confuse U+003E = greater-than sign (>)
1

Complete HTML Example

This example demonstrates the Greater Than With Dot symbol (⋗) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22D7";
  }
 </style>
</head>
<body>
<p>Greater Than With Dot using Hexadecimal: &#x22D7;</p>
<p>Greater Than With Dot using Decimal: &#8919;</p>
<p>Greater Than With Dot using Named Entity: &gtdot;</p>
<p id="point">Greater Than With Dot using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Greater Than With Dot symbol (⋗) is supported in modern browsers with a math-capable font:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Greater Than With Dot symbol (⋗) in relation contexts:

Large glyph
Named entity &gtdot; renders as ⋗
Relation x ⋗ y   a ⋗ b
Related ⋗ vs plain >
Numeric refs &#x22D7; &#8919; &gtdot; \22D7

🧠 How It Works

1

Hexadecimal Code

&#x22D7; uses the Unicode hexadecimal value 22D7 to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8919; uses the decimal Unicode value 8919 to display the same character.

HTML markup
3

Named Entity

&gtdot; is the semantic named entity for ⋗—readable in source HTML and part of the HTML5 character set.

HTML markup
4

CSS Entity

\22D7 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+22D7 is in Mathematical Operators. Next: Greek Dialytika Tonos.

Use Cases

The Greater Than With Dot symbol (⋗) is commonly used in:

📐 Mathematics

Order theory and relations using the dotted greater-than (e.g. x ⋗ y).

🔢 Formal logic

Semigroup and algebra notation that specifies this operator.

📚 Textbooks

Academic papers and advanced math references.

📄 Technical docs

Specifications and Unicode operator documentation.

💻 Symbol libraries

Math rendering tools and entity cheat sheets.

📚 Entity references

HTML entity lists for Mathematical Operators.

💡 Best Practices

Do

  • Use &gtdot; for readable source markup
  • Use math fonts (Cambria Math, Noto Sans Math) for reliable rendering
  • Use ⋗ only when your notation requires the dotted form
  • Explain the relation in text for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Substitute ⋗ for plain &gt; without notation reason
  • Put CSS escape \22D7 in HTML text nodes
  • Confuse with bullet characters or middle dot (&middot;)
  • Rely on the symbol alone for screen reader users
  • Assume every system font renders Mathematical Operators clearly

Key Takeaways

1

Three HTML references plus CSS all render ⋗

&#x22D7; &#8919; &gtdot;
2

For CSS stylesheets, use the escape in the content property

\22D7
3

Unicode U+22D7 — GREATER-THAN WITH DOT

4

Prefer &gtdot; for readability in HTML source

❓ Frequently Asked Questions

Use &#x22D7; (hex), &#8919; (decimal), &gtdot; (named), or \22D7 in CSS content. All produce ⋗.
U+22D7 (GREATER-THAN WITH DOT). Mathematical Operators block (U+2200–U+22FF). Hex 22D7, decimal 8919. Named entity: &gtdot;.
In mathematical notation and order theory, formal logic and algebra, academic papers and textbooks, technical documentation that uses dotted relation symbols, and any content requiring the greater-than-with-dot character in formal notation.
&gtdot; is the named HTML entity for ⋗. It is part of the HTML5 named character set and the most readable option in source markup.
Plain greater-than (&gt;, U+003E) is the basic comparison symbol. ⋗ (U+22D7) includes a dot and is used in formal mathematics or logic for specific relations. Use ⋗ when your notation requires the dotted form.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, relations, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful