Dotted Fence

Shortcodes

Copy and paste codes for Dotted Fence symbol ⦙ to use in your websites, apps, blogs, and more.

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

Customize Dotted Fence Symbol

Customize ⦙ symbol as you like and download Dotted Fence 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 Dotted Fence symbol in HTML, CSS, and JS?

Insert ⦙ Dotted Fence using HTML

1. Copy-paste Dotted Fence directly:
<span>⦙</span>
2. HTML Decimal Code:
<span>&#10649;</span>
3. Hexadecimal Code:
<span>&#x2999;</span>
Preview:

Add Dotted Fence symbol with CSS

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

Dotted Fence JavaScript Code

1. Direct Symbol:
document.querySelector('.dotted-fence').textContent = '⦙';
2. Unicode Escape for ⦙:
document.querySelector('.dotted-fence').textContent = '\u2999';
Preview: