Four Dot Mark

Shortcodes

Copy useful codes for four dot mark symbol ⁛ to use in websites, apps, blogs, and docs.

Unicode
U+205B
HTML Code
⁛
HEX Code
⁛
CSS Code
\205B
JS/JSON
\u205B
Unix/C/PHP/JAVA
0x205B
URL-encode
%E2%81%9B

Customize Four Dot Mark

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

  

How to use Four Dot Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁛</span>
HTML Code:
<span>&#8283;</span>
HEX Code:
<span>&#x205B;</span>

Add with CSS

.four-dot-mark::before {
  content: '\\205B';
}

Set it in JavaScript

document.querySelector('.four-dot-mark').textContent = '⁛';
copied