Vertical Four Dots

Shortcodes

Copy useful codes for vertical four dots symbol ⁞ to use in websites, apps, blogs, and docs.

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

Customize Vertical Four Dots

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

  

How to use Vertical Four Dots Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁞</span>
HTML Code:
<span>&#8286;</span>
HEX Code:
<span>&#x205E;</span>

Add with CSS

.vertical-four-dots::before {
  content: '\\205E';
}

Set it in JavaScript

document.querySelector('.vertical-four-dots').textContent = '⁞';
copied