HTML Entity for Vertical Four Dots (⁞)

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

What You'll Learn

How to display the Vertical Four Dots symbol (⁞) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+205E (VERTICAL FOUR DOTS) in the General Punctuation block—a four-dot vertical pattern used in UI design, menu indicators, and vertical continuation notation.

Render it with ⁞, ⁞, or CSS escape \205E. There is no named HTML entity. Do not confuse ⁞ with vertical ellipsis ⋮ (⋮, three dots) or horizontal four dots ⁛ (U+205B).

⚡ Quick Reference — Vertical Four Dots Entity

Unicode U+205E

General Punctuation

Hex Code ⁞

Hexadecimal reference

HTML Code ⁞

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+205E
Hex code       ⁞
HTML code      ⁞
Named entity   (none)
CSS code       \205E
Meaning        Vertical four dots
Related        U+22EE = ⋮ (vertical ellipsis, ⋮)
               U+205B = ⁛ (dotted cross)
Block          General Punctuation (U+2000–U+206F)
1

Complete HTML Example

A simple example showing the Vertical Four Dots (⁞) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\205E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x205E;</p>
<p>Symbol (decimal): &#8286;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Vertical Four Dots (⁞) is supported in modern browsers when the font includes General Punctuation glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Vertical Four Dots rendered live in different contexts:

Menu button More options
Large glyph
Not the same as vertical ellipsis (&vellip;, 3 dots)
Unicode nameVERTICAL FOUR DOTS
Numeric refs&#x205E; &#8286; \205E

🧠 How It Works

1

Hexadecimal Code

&#x205E; uses the Unicode hexadecimal value 205E to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8286; uses the decimal Unicode value 8286 to display the same character. A common method for General Punctuation characters.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+205E sits in General Punctuation. Do not confuse with (U+22EE, &vellip;, three dots).

Use Cases

The Vertical Four Dots (⁞) is commonly used in:

📋 Menu icons

Alternative “more options” indicator with a four-dot vertical pattern.

🖥 UI elements

Toolbars, cards, and interfaces showing overflow or additional actions.

📱 Web & mobile design

Responsive layouts and app UIs using a compact vertical dot pattern.

📐 Vertical continuation

Lists, tables, and content showing omitted vertical items with four dots.

🧭 Navigation

Dropdown triggers and navigation menus with hidden actions.

📄 Documentation

Tables and docs indicating collapsed or expandable vertical content.

🎨 Design systems

Component libraries using ⁞ as a distinct options symbol.

💡 Best Practices

Do

  • Add aria-label="More options" on interactive menu buttons
  • Use numeric references when escaping is required
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support General Punctuation characters
  • Distinguish ⁞ from (vertical ellipsis)

Don’t

  • Use ⁞ when you need three-dot ellipsis ⋮ (&vellip;)
  • Rely on the symbol alone without an accessible label
  • Mix entity styles randomly in one file
  • Use CSS escape \205E inside HTML markup
  • Expect a named HTML entity—none exists for ⁞

Key Takeaways

1

Type ⁞ directly, or use hex/decimal references

&#x205E; &#8286;
2

For CSS stylesheets, use the escape in the content property

\205E
3

Unicode U+205E — VERTICAL FOUR DOTS (General Punctuation)

4

Not the same as (U+22EE, &vellip;)

❓ Frequently Asked Questions

Use &#x205E; (hex), &#8286; (decimal), or \205E in CSS content. There is no named HTML entity. In UTF-8 you can also type ⁞ directly.
U+205E (VERTICAL FOUR DOTS). General Punctuation block. Hex 205E, decimal 8286. Related three-dot form is U+22EE (, &vellip;).
In menu icons, UI overflow indicators, navigation patterns, vertical continuation in lists or tables, and design elements requiring a four-dot vertical pattern.
HTML entities (&#8286; or &#x205E;) go directly in markup. The CSS escape \205E is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. General Punctuation characters like ⁞ use numeric codes (hexadecimal or decimal). Use &#8286; or &#x205E; in HTML, or \205E in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, UI symbols, 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