Left Wiggly Fence

Shortcodes

Copy useful codes for left wiggly fence symbol ⧘ to use in websites, apps, blogs, and docs.

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

Customize Left Wiggly Fence

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

  

How to use Left Wiggly Fence Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧘</span>
HTML Code:
<span>&#10712;</span>
HEX Code:
<span>&#x29D8;</span>

Add with CSS

.left-wiggly-fence::before {
  content: '\\29D8';
}

Set it in JavaScript

document.querySelector('.left-wiggly-fence').textContent = '⧘';
copied