Wiggly Vertical Line

Shortcodes

Copy useful codes for wiggly vertical line symbol ⸾ to use in websites, apps, blogs, and docs.

Unicode
U+2E3E
HTML Code
⸾
HEX Code
⸾
CSS Code
\2E3E
JS/JSON
\u2E3E
Unix/C/PHP/JAVA
0x2E3E
URL-encode
%E2%B8%BE

Customize Wiggly Vertical Line

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

  

How to use Wiggly Vertical Line Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸾</span>
HTML Code:
<span>&#11838;</span>
HEX Code:
<span>&#x2E3E;</span>

Add with CSS

.wiggly-vertical-line::before {
  content: '\\2E3E';
}

Set it in JavaScript

document.querySelector('.wiggly-vertical-line').textContent = '⸾';
copied