HTML Entity for Down Right Diagonal Ellipsis (⋱)

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
U+22F1Mathematical Operators
⋱Hexadecimal reference
⋱Decimal reference
⋱HTML5 named entity for U+22F1
Name Value
──────────── ──────────
Unicode U+22F1
Hex code ⋱
HTML code ⋱
Named entity ⋱
CSS code \22F1
Related U+22EE = Vertical ellipsis; U+27F1 = Quadruple down arrowComplete HTML Example
This example demonstrates the Down Right Diagonal Ellipsis (⋱) using hexadecimal code, decimal HTML code, the named entity ⋱, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22F1";
}
</style>
</head>
<body>
<p>Down Right Diagonal Ellipsis using Hexadecimal: ⋱</p>
<p>Down Right Diagonal Ellipsis using HTML Code: ⋱</p>
<p>Down Right Diagonal Ellipsis using HTML Entity: ⋱</p>
<p id="point">Down Right Diagonal Ellipsis using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+22F1 is widely supported in modern browsers when rendered with a font that includes Mathematical Operators:
👀 Live Preview
See the Down Right Diagonal Ellipsis (⋱) in math and typography contexts:
🧠 How It Works
Hexadecimal Code
⋱ uses the Unicode hexadecimal value 22F1 to display the Down Right Diagonal Ellipsis. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋱ uses the decimal Unicode value 8945 to display the same character.
Named HTML Entity
⋱ is the HTML5 named entity for U+22F1 (down right diagonal ellipsis). It is easy to read in source and resolves to ⋱.
CSS Entity
\22F1 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Continued or diagonal patterns in matrices, series, and equations.
Design layouts that need a down-right diagonal dot pattern.
Indicate omitted diagonal entries or continuation in specifications.
Show skipped cells or trailing diagonal elements in data tables.
Papers and textbooks that use diagonal ellipsis notation.
Math symbol pickers and design systems that include ⋱.
💡 Best Practices
Do
- Use
⋱for readable markup, or⋱/⋱ - Add
aria-labelwhen the symbol means continuation or omitted diagonal terms - Pair ⋱ with a legend in math or technical documents
- Use
\22F1in CSS::before/::afterfor diagonal ellipsis icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⋱(⋱, diagonal) with ⋮ (vertical ellipsis, U+22EE) - Confuse ⋱ with ⟱ (quadruple down arrow, U+27F1)
- Put CSS escape
\22F1in HTML text nodes - Rely on the symbol alone in accessibility-critical UIs
- Assume decorative fonts include all Mathematical Operators glyphs
Key Takeaways
Named entity available: ⋱
⋱ ⋱For CSS stylesheets, use the escape in the content property
\22F1Unicode U+22F1 — DOWN RIGHT DIAGONAL ELLIPSIS
Mathematical Operators block (U+2200–U+22FF)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⋱ (hex), ⋱ (decimal), ⋱ (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.⋱ is easier to read in source than ⋱ or ⋱, but all produce ⋱. The CSS escape \22F1 is used in stylesheets in the content property of pseudo-elements.⋱ 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.
8 people found this page helpful
