Left Double Wiggly Fence

Shortcodes

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

Unicode
U+29DA
HTML Code
⧚
HEX Code
⧚
CSS Code
\29DA
JS/JSON
\u29DA
Unix/C/PHP/JAVA
0x29DA
URL-encode
%E2%A7%9A

Customize Left Double Wiggly Fence

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧚</span>
HTML Code:
<span>&#10714;</span>
HEX Code:
<span>&#x29DA;</span>

Add with CSS

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

Set it in JavaScript

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