Vertical Four Dots

Shortcodes

Copy and paste codes for Vertical Four Dots symbol ⁞ to use in your websites, apps, blogs, and more.

Unicode
U+205E
HTML Code
⁞
HEX Code
⁞
CSS Code
\205E
JS/JSON
\u205E
Unix/C/PHP/JAVA
0x205E
URL-encode
%E2%81%9E
copied

Customize Vertical Four Dots Symbol

Customize ⁞ symbol as you like and download Vertical Four Dots 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 Four Dots symbol in HTML, CSS, and JS?

Insert ⁞ Vertical Four Dots using HTML

1. Copy-paste Vertical Four Dots directly:
<span>⁞</span>
2. HTML Decimal Code:
<span>&#8286;</span>
3. Hexadecimal Code:
<span>&#x205E;</span>
Preview:

Add Vertical Four Dots symbol with CSS

.vertical-four-dots::before {
    content: '\\205E';
}
Preview: Vertical Four Dots

Vertical Four Dots JavaScript Code

1. Direct Symbol:
document.querySelector('.vertical-four-dots').textContent = '⁞';
2. Unicode Escape for ⁞:
document.querySelector('.vertical-four-dots').textContent = '\u205E';
Preview: