Vertical Ellipsis

Shortcodes

Copy useful codes for vertical ellipsis symbol ⋮ to use in websites, apps, blogs, and docs.

Unicode
U+22EE
HTML Code
⋮
HEX Code
⋮
CSS Code
\22EE
JS/JSON
\u22EE
Unix/C/PHP/JAVA
0x22EE
URL-encode
%E2%8B%AE

Customize Vertical Ellipsis

Customize ⋮, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Vertical Ellipsis Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋮</span>
HTML Code:
<span>&#8942;</span>
HEX Code:
<span>&#x22EE;</span>

Add with CSS

.vertical-ellipsis::before {
  content: '\\22EE';
}

Set it in JavaScript

document.querySelector('.vertical-ellipsis').textContent = '⋮';
copied