Right Wiggly Fence

Shortcodes

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

Unicode
U+29D9
HTML Code
⧙
HEX Code
⧙
CSS Code
\29D9
JS/JSON
\u29D9
Unix/C/PHP/JAVA
0x29D9
URL-encode
%E2%A7%99

Customize Right Wiggly Fence

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧙</span>
HTML Code:
<span>&#10713;</span>
HEX Code:
<span>&#x29D9;</span>

Add with CSS

.right-wiggly-fence::before {
  content: '\\29D9';
}

Set it in JavaScript

document.querySelector('.right-wiggly-fence').textContent = '⧙';
copied