HTML Entity for Vertical Four Dots (⁞)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+205E

What Is Vertical Four Dots?

Vertical four dots (⁞) is the Unicode character at U+205E in General Punctuation. Official name: VERTICAL FOUR DOTS — four dots stacked vertically, used for UI patterns and vertical continuation.

Remember
Character     ⁞
Unicode       U+205E
Hex entity    ⁞
Decimal       ⁞
CSS escape    \205E
Named entity  (none)
Not the same  ⋮ · … · |

Prefer ⁞ or ⁞ in HTML markup. You can also type ⁞ in UTF-8. There is no named entity. For the common three-dot “more” icon, use vertical ellipsis instead.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⁞HTML text (UTF-8)
Hex entity⁞HTML markup (preferred)
Decimal entity⁞HTML markup
CSS escape\205EStylesheet content
Named entity—Not defined in HTML5
Dot countFourNot three (⋮)

When to Use Which

SituationUse
Vertical four dots (⁞)⁞ or ⁞
Vertical ellipsis / kebab (⋮)⋮ (⋮)
Horizontal ellipsis (…)… (…)
Solid vertical bar / pipe (|)| (|)
“More options” button (three dots)Prefer ⋮ + aria-label
Generated text via ::before / ::aftercontent: "\205E"

Live Preview

Vertical four dots rendered alone, as a control, and next to related marks.

Large glyph ⁞
UI control
Compared ⁞  |  ⋮  |  …  |  |
Hint Compare: Four ⁞ | Three ⋮ | Horizontal … | Pipe |
With entities Hex: ⁞ | Decimal: ⁞

Complete HTML Example

One page that shows the symbol with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ⁞, plus an accessible button example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Vertical Four Dots (⁞)</title>
  <style>
    #point::after {
      content: "\205E";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x205E;</p>
  <p>Using HTML Code: &#8286;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ⁞</p>
  <button type="button" aria-label="More options">⁞</button>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+205E → &#x205E; in HTML. The browser turns it into ⁞.

2. Decimal: same code point as 8286 → &#8286;. Same result as hex.

3. CSS: use \205E in content (not an HTML entity). #point::after appends that ⁞ after the paragraph text.

4. Typed / UI: paste ⁞ in UTF-8. On a button, add aria-label="More options" so the control is announced clearly.

Pitfalls & Tips

Common mistakes when working with U+205E.

Named

No named entity

HTML5 has no named entity for U+205E. Use &#x205E; or &#8286; — do not invent a name.

vs ⋮

Not three dots

⋮ (&vellip;) is the usual kebab / “more” icon. ⁞ has four dots — different character and look.

vs …

Not a horizontal ellipsis

… (&hellip;) truncates horizontal text. ⁞ is stacked vertically.

vs |

Not a pipe

ASCII | is a solid line. Do not use it as a stand-in for four vertical dots.

Fonts

Glyph depends on font

Some fonts omit General Punctuation extras. Test your UI font, or use an SVG icon when brand consistency matters.

CSS vs HTML

Do not mix escapes

\205E belongs in CSS strings. &#x205E; / &#8286; belong in HTML.

A11y

Name the control

A bare ⁞ may be announced as “vertical four dots.” Add aria-label (or visible text) such as “More options.”

Browser Support

Vertical four dots (U+205E) and its entity forms (&#x205E;, &#8286;, CSS \\205E) are supported in all mainstream browsers. Visible glyphs depend on fonts that include General Punctuation.

✓ Universal support

Vertical Four Dots (&#x205E;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+205E Full support

Bottom line: Prefer &#x205E; or &#8286; in HTML. Use \\205E only inside CSS content. Do not confuse with ⋮ (three-dot ellipsis).

Key Takeaways

  • Unicode: vertical four dots is U+205E (decimal 8286) — glyph ⁞.
  • HTML: use &#x205E; or &#8286; — no named entity in HTML5.
  • CSS: use \205E inside content for generated text.
  • Meaning: ⁞ is four dots — not ⋮ (three), not … (horizontal), not |.

One line: U+205E → &#x205E; / &#8286; / CSS \205E.

Frequently Asked Questions

Use &#x205E; (hex), &#8286; (decimal), type ⁞ directly in UTF-8, or the CSS escape \205E in content. There is no named HTML entity for U+205E.
U+205E (VERTICAL FOUR DOTS). Hex 205E, decimal 8286. It belongs to General Punctuation (U+2000–U+206F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#8286; or &#x205E;.
No. ⁞ has four vertical dots. ⋮ is the vertical ellipsis with three dots (&vellip;).
Use it for four-dot vertical UI patterns or notation that specifically needs four dots — not as a substitute for the three-dot kebab icon ⋮.
HTML entities (&#8286; or &#x205E;) go in markup. The CSS escape \205E goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Vertical four dots (⁞) is Unicode U+205E (decimal 8286) — official name VERTICAL FOUR DOTS in General Punctuation (U+2000–U+206F). HTML5 has no named entity — use &#x205E; or &#8286;. It is four dots stacked vertically — not the three-dot vertical ellipsis ⋮ (&vellip;). Pair UI uses with an accessible name such as “More options.”

Next: Vertical Line Above

Learn the HTML entity for the vertical line above combining mark (U+030D).

Continue tutorial →

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