Five Dot Punctuation

Shortcodes

Copy useful codes for five dot punctuation symbol ⁙ to use in websites, apps, blogs, and docs.

Unicode
U+2059
HTML Code
⁙
HEX Code
⁙
CSS Code
\2059
JS/JSON
\u2059
Unix/C/PHP/JAVA
0x2059
URL-encode
%E2%81%99

Customize Five Dot Punctuation

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

  

How to use Five Dot Punctuation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁙</span>
HTML Code:
<span>&#8281;</span>
HEX Code:
<span>&#x2059;</span>

Add with CSS

.five-dot-punctuation::before {
  content: '\\2059';
}

Set it in JavaScript

document.querySelector('.five-dot-punctuation').textContent = '⁙';
copied