Light Vertical Bar

Shortcodes

Copy useful codes for light vertical bar symbol ❘ to use in websites, apps, blogs, and docs.

Unicode
U+2758
HTML Code
❘
HEX Code
❘
CSS Code
\2758
JS/JSON
\u2758
Unix/C/PHP/JAVA
0x2758
URL-encode
%E2%9D%98

Customize Light Vertical Bar

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

  

How to use Light Vertical Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❘</span>
HTML Code:
<span>&#10072;</span>
HEX Code:
<span>&#x2758;</span>

Add with CSS

.light-vertical-bar::before {
  content: '\\2758';
}

Set it in JavaScript

document.querySelector('.light-vertical-bar').textContent = '❘';
copied