Heavy Vertical Bar

Shortcodes

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

Unicode
U+275A
HTML Code
❚
HEX Code
❚
CSS Code
\275A
JS/JSON
\u275A
Unix/C/PHP/JAVA
0x275A
URL-encode
%E2%9D%9A

Customize Heavy Vertical Bar

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

  

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

Insert in HTML

1. Direct symbol:
<span>❚</span>
HTML Code:
<span>&#10074;</span>
HEX Code:
<span>&#x275A;</span>

Add with CSS

.heavy-vertical-bar::before {
  content: '\\275A';
}

Set it in JavaScript

document.querySelector('.heavy-vertical-bar').textContent = '❚';
copied