Vertical Zigzag Line

Shortcodes

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

Unicode
U+299A
HTML Code
⦚
HEX Code
⦚
CSS Code
\299A
JS/JSON
\u299A
Unix/C/PHP/JAVA
0x299A
URL-encode
%E2%A6%9A

Customize Vertical Zigzag Line

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦚</span>
HTML Code:
<span>&#10650;</span>
HEX Code:
<span>&#x299A;</span>

Add with CSS

.vertical-zigzag-line::before {
  content: '\\299A';
}

Set it in JavaScript

document.querySelector('.vertical-zigzag-line').textContent = '⦚';
copied