HTML Entity for Down Right Diagonal Ellipsis (⋱)

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

What You'll Learn

How to display the Down Right Diagonal Ellipsis (⋱) in HTML using hexadecimal, decimal, the named entity ⋱, and CSS escape methods. This character is U+22F1 (DOWN RIGHT DIAGONAL ELLIPSIS) in the Mathematical Operators block (U+2200–U+22FF)—a diagonal ellipsis oriented down and to the right, used in mathematical notation, typography, and design.

Render it with ⋱, ⋱, ⋱, or CSS escape \22F1. For vertical ellipsis use ⋮ (U+22EE). For quadruple down arrows use ⟱ (U+27F1).

⚡ Quick Reference — Down Right Diagonal Ellipsis

Unicode U+22F1

Mathematical Operators

Hex Code ⋱

Hexadecimal reference

HTML Code ⋱

Decimal reference

Named Entity ⋱

HTML5 named entity for U+22F1

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22F1
Hex code       ⋱
HTML code      ⋱
Named entity   ⋱
CSS code       \22F1
Related        U+22EE = Vertical ellipsis; U+27F1 = Quadruple down arrow
1

Complete HTML Example

This example demonstrates the Down Right Diagonal Ellipsis (⋱) using hexadecimal code, decimal HTML code, the named entity ⋱, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22F1";
  }
 </style>
</head>
<body>
<p>Down Right Diagonal Ellipsis using Hexadecimal: &#x22F1;</p>
<p>Down Right Diagonal Ellipsis using HTML Code: &#8945;</p>
<p>Down Right Diagonal Ellipsis using HTML Entity: &dtdot;</p>
<p id="point">Down Right Diagonal Ellipsis using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22F1 is widely supported in modern browsers when rendered with a font that includes Mathematical Operators:

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

👀 Live Preview

See the Down Right Diagonal Ellipsis (⋱) in math and typography contexts:

Large glyph
Matrix pattern a11 ⋱ ann
Continuation terms ⋱ omitted
vs vertical ellipsis ⋱ diagonal   ⋮ vertical
Named entity &dtdot; → ⋱
All HTML refs &#x22F1; &#8945; &dtdot;

🧠 How It Works

1

Hexadecimal Code

&#x22F1; uses the Unicode hexadecimal value 22F1 to display the Down Right Diagonal Ellipsis. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&dtdot; is the HTML5 named entity for U+22F1 (down right diagonal ellipsis). It is easy to read in source and resolves to ⋱.

HTML markup
4

CSS Entity

\22F1 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: . Unicode U+22F1. Vertical ellipsis: ⋮ (U+22EE). Serve HTML as UTF-8.

Use Cases

The Down Right Diagonal Ellipsis (⋱) is commonly used in:

∑ Math notation

Continued or diagonal patterns in matrices, series, and equations.

📜 Typography

Design layouts that need a down-right diagonal dot pattern.

📄 Technical docs

Indicate omitted diagonal entries or continuation in specifications.

📊 Tables and grids

Show skipped cells or trailing diagonal elements in data tables.

📖 Academic content

Papers and textbooks that use diagonal ellipsis notation.

💻 Symbol libraries

Math symbol pickers and design systems that include ⋱.

💡 Best Practices

Do

  • Use &dtdot; for readable markup, or &#x22F1; / &#8945;
  • Add aria-label when the symbol means continuation or omitted diagonal terms
  • Pair ⋱ with a legend in math or technical documents
  • Use \22F1 in CSS ::before / ::after for diagonal ellipsis icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &dtdot; (⋱, diagonal) with ⋮ (vertical ellipsis, U+22EE)
  • Confuse ⋱ with ⟱ (quadruple down arrow, U+27F1)
  • Put CSS escape \22F1 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Mathematical Operators glyphs

Key Takeaways

1

Named entity available: &dtdot;

&#x22F1; &#8945;
2

For CSS stylesheets, use the escape in the content property

\22F1
3

Unicode U+22F1 — DOWN RIGHT DIAGONAL ELLIPSIS

4

Mathematical Operators block (U+2200–U+22FF)

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x22F1; (hex), &#8945; (decimal), &dtdot; (named entity), or \22F1 in CSS content. All produce ⋱.
U+22F1 (DOWN RIGHT DIAGONAL ELLIPSIS). Mathematical Operators (U+2200–U+22FF). Hex 22F1, decimal 8945. A diagonal ellipsis oriented down and to the right.
In mathematical notation for continued or diagonal patterns, typography and design, technical documentation, and content where a down-right diagonal ellipsis indicates continuation or omission.
&dtdot; is easier to read in source than &#8945; or &#x22F1;, but all produce ⋱. The CSS escape \22F1 is used in stylesheets in the content property of pseudo-elements.
&dtdot; is the named HTML entity for the Down Right Diagonal Ellipsis (⋱, U+22F1). The name suggests a dot pattern in a diagonal down-to-right direction. It is part of the HTML5 entity set for mathematical operators and renders as ⋱ when displayed.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math operators, 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