HTML Entity for Vertical Ellipsis (⋮)

What You'll Learn
How to display the Vertical Ellipsis symbol (⋮) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22EE (VERTICAL ELLIPSIS) in the Mathematical Operators block—widely used as a kebab menu icon, overflow button, and vertical continuation indicator in UI design.
Render it with ⋮, ⋮, the named entity ⋮, or CSS escape \22EE. Do not confuse ⋮ with horizontal ellipsis … (…) or midline horizontal ellipsis ⋯ (…).
⚡ Quick Reference — Vertical Ellipsis Entity
U+22EEMathematical Operators
⋮Hexadecimal reference
⋮Decimal reference
⋮Most readable option
Name Value
──────────── ──────────
Unicode U+22EE
Hex code ⋮
HTML code ⋮
Named entity ⋮
CSS code \22EE
Also called Kebab menu icon
Related U+22EF = ⋯ (midline horizontal ellipsis, …)
U+2026 = … (horizontal ellipsis, …)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing the Vertical Ellipsis (⋮) using hexadecimal code, decimal HTML code, named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22EE";
}
</style>
</head>
<body>
<p>Symbol (hex): ⋮</p>
<p>Symbol (decimal): ⋮</p>
<p>Symbol (named): ⋮</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Vertical Ellipsis (⋮) is supported in all modern browsers when the font includes Mathematical Operators glyphs:
👀 Live Preview
See the Vertical Ellipsis rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⋮ uses the Unicode hexadecimal value 22EE to display the Vertical Ellipsis. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋮ uses the decimal Unicode value 8942 to display the same character. One of the most commonly used methods.
CSS Entity
\22EE is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Named Entity
⋮ is the semantic named entity — the easiest to read in source HTML for the vertical ellipsis character.
Same visual result
All four methods produce the glyph: ⋮. Unicode U+22EE sits in Mathematical Operators. Do not confuse with horizontal … (…) or ⋯ (…).
Use Cases
The Vertical Ellipsis (⋮) is commonly used in:
Kebab menus and “more options” buttons in toolbars and cards.
Overflow actions, context menus, and compact action triggers.
Responsive layouts and app interfaces using a vertical three-dot pattern.
Mathematical notation and lists showing omitted vertical items.
Dropdown triggers and navigation menus with hidden actions.
Tables and docs indicating collapsed or expandable vertical content.
Component libraries using ⋮ as a standard options symbol.
💡 Best Practices
Do
- Use
⋮for readable source markup - Add
aria-label="More options"on menu buttons - Make the clickable area large enough for touch targets
- Pick one style (hex / decimal / named) per project
- Distinguish ⋮ from horizontal … and ⋯
Don’t
- Use ⋮ when you need horizontal ellipsis … (
…) - Rely on the symbol alone without an accessible label
- Mix entity styles randomly in one file
- Use CSS escape
\22EEinside HTML markup - Use HTML entities in JS (use
\u22EEinstead)
Key Takeaways
Three HTML references all render ⋮
⋮ ⋮ ⋮For CSS stylesheets, use the escape in the content property
\22EEUnicode U+22EE — VERTICAL ELLIPSIS (Mathematical Operators)
Prefer ⋮ for readability—common kebab menu icon
Previous: Vertical Bar (|) Next: Vertical Four Dots
❓ Frequently Asked Questions
⋮ (hex), ⋮ (decimal), ⋮ (named), or \22EE in CSS content. All produce ⋮.U+22EE (VERTICAL ELLIPSIS). Mathematical Operators block. Hex 22EE, decimal 8942. Commonly used as a kebab menu or more-options icon.⋮, ⋮, or ⋮) go directly in markup. The CSS escape \22EE is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.⋮ is the named HTML entity for ⋮. ⋮ and ⋮ are equivalent in modern browsers.Explore More HTML Entities!
Discover 1500+ HTML character references — UI symbols, punctuation, math operators, and more.
8 people found this page helpful
