Left Wiggly Fence

Shortcodes

Copy and paste codes for Left Wiggly Fence symbol ⧘ to use in your websites, apps, blogs, and more.

Unicode
U+29D8
HTML Code
⧘
HEX Code
⧘
CSS Code
\29D8
JS/JSON
\u29D8
Unix/C/PHP/JAVA
0x29D8
URL-encode
%E2%A7%98
copied

Customize Left Wiggly Fence Symbol

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

Insert ⧘ Left Wiggly Fence using HTML

1. Copy-paste Left Wiggly Fence directly:
<span>⧘</span>
2. HTML Decimal Code:
<span>&#10712;</span>
3. Hexadecimal Code:
<span>&#x29D8;</span>
Preview:

Add Left Wiggly Fence symbol with CSS

.left-wiggly-fence::before {
    content: '\\29D8';
}
Preview: Left Wiggly Fence

Left Wiggly Fence JavaScript Code

1. Direct Symbol:
document.querySelector('.left-wiggly-fence').textContent = '⧘';
2. Unicode Escape for ⧘:
document.querySelector('.left-wiggly-fence').textContent = '\u29D8';
Preview: