HTML Entity for Up Right Diagonal Ellipsis (⋰)

What You'll Learn
How to display the Up Right Diagonal Ellipsis (⋰) in HTML using hexadecimal, decimal, the named entity ⋰, and CSS escape methods. This character is U+22F0 (UP RIGHT DIAGONAL ELLIPSIS) in the Mathematical Operators block (U+2200–U+22FF)—three dots arranged diagonally up and to the right, indicating continuation or omission in matrix and set notation.
Render it with ⋰, ⋰, ⋰, or CSS escape \22F0. Compare ⋱ (U+22F1, down right diagonal ellipsis via ⋱) and ⋯ (U+22EF, midline horizontal ellipsis via &cdots;).
⚡ Quick Reference — Up Right Diagonal Ellipsis
U+22F0Mathematical Operators
⋰Hexadecimal reference
⋰Decimal reference
⋰HTML5 named entity
Name Value
──────────── ──────────
Unicode U+22F0
Hex code ⋰
HTML code ⋰
Named entity ⋰
CSS code \22F0
Official name UP RIGHT DIAGONAL ELLIPSIS
Related U+22F1 = Down right diagonal (⋱); U+22EF = Midline horizontal (&cdots;)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ⋰ with hex, decimal, named entity, and CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\22F0";
}
</style>
</head>
<body>
<p>Diagonal Up (hex): ⋰</p>
<p>Diagonal Up (decimal): ⋰</p>
<p>Diagonal Up (entity): ⋰</p>
<p id="point">Diagonal Up (CSS): </p>
</body>
</html>🌐 Browser Support
U+22F0 is widely supported in modern browsers when rendered with a font that includes Mathematical Operators:
👀 Live Preview
See the Up Right Diagonal Ellipsis (⋰) in mathematical and notation contexts:
🧠 How It Works
Hexadecimal Code
⋰ uses the Unicode hexadecimal value 22F0 to display the Up Right Diagonal Ellipsis. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋰ uses the decimal Unicode value 8944 to display the same character.
Named HTML Entity
⋰ is the HTML5 named entity for U+22F0 (up right diagonal ellipsis). It is easy to read in source and resolves to ⋰.
CSS Entity
\22F0 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⋰. Unicode U+22F0 in the Mathematical Operators block (U+2200–U+22FF). Diagonal dots indicating continuation up and to the right in matrices and sets.
Use Cases
The Up Right Diagonal Ellipsis (⋰) is commonly used in:
Equations and formulas with diagonal continuation patterns.
Set notation and proofs requiring diagonal ellipsis.
Matrix corners and array structures with omitted elements.
Research documents and scholarly publications with math notation.
Programming and math docs with structured continuation symbols.
Visual representations showing diagonal continuation or omission.
💡 Best Practices
Do
- Use
⋰for readable math markup when supported - Use
⋰or⋰consistently in documents - Pair with proper subscripts in matrix notation (e.g. a11 ⋰ ann)
- Use
\22F0in CSS::before/::afterfor generated content - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Use U+022F0—the correct value is U+22F0 with CSS
\22F0 - Confuse ⋰ (up-right, U+22F0) with ⋱ (down-right, U+22F1,
⋱) - Use three periods
...when diagonal ellipsis notation is required - Put CSS escape
\22F0in HTML text nodes - Assume all decorative fonts include Mathematical Operators glyphs
Key Takeaways
Named entity: ⋰
⋰ ⋰For CSS stylesheets, use \22F0 in content
Unicode U+22F0 — UP RIGHT DIAGONAL ELLIPSIS
Down-right pair: ⋱ via ⋱ (U+22F1)
Four methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
⋰ (hex), ⋰ (decimal), ⋰ (named entity), or \22F0 in CSS content. All produce ⋰.U+22F0 (UP RIGHT DIAGONAL ELLIPSIS). Mathematical Operators block (U+2200–U+22FF). Hex 22F0, decimal 8944.⋰ or ⋰) and named entity ⋰ are used in HTML content, while CSS escape \22F0 is used in stylesheets in the content property of pseudo-elements. All produce ⋰.⋰ (up right diagonal ellipsis). It is easier to remember than numeric codes and resolves to U+22F0 (⋰).Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, arrows, operators, and more.
8 people found this page helpful
