Vertical Ellipsis

Shortcodes

Copy and paste codes for Vertical Ellipsis symbol ⋮ to use in your websites, apps, blogs, and more.

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

Customize Vertical Ellipsis Symbol

Customize ⋮ symbol as you like and download Vertical Ellipsis as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Vertical Ellipsis symbol in HTML, CSS, and JS?

Insert ⋮ Vertical Ellipsis using HTML

1. Copy-paste Vertical Ellipsis directly:
<span>⋮</span>
2. HTML Decimal Code:
<span>&#8942;</span>
3. Hexadecimal Code:
<span>&#x22EE;</span>
Preview:

Add Vertical Ellipsis symbol with CSS

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

Vertical Ellipsis JavaScript Code

1. Direct Symbol:
document.querySelector('.vertical-ellipsis').textContent = '⋮';
2. Unicode Escape for ⋮:
document.querySelector('.vertical-ellipsis').textContent = '\u22EE';
Preview: