Dotted Fence

Shortcodes

Copy useful codes for dotted fence symbol ⦙ to use in websites, apps, blogs, and docs.

Unicode
U+2999
HTML Code
⦙
HEX Code
⦙
CSS Code
\2999
JS/JSON
\u2999
Unix/C/PHP/JAVA
0x2999
URL-encode
%E2%A6%99

Customize Dotted Fence

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

  

How to use Dotted Fence Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦙</span>
HTML Code:
<span>&#10649;</span>
HEX Code:
<span>&#x2999;</span>

Add with CSS

.dotted-fence::before {
  content: '\\2999';
}

Set it in JavaScript

document.querySelector('.dotted-fence').textContent = '⦙';
copied