Medium Vertical Bar

Shortcodes

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

Unicode
U+2759
HTML Code
❙
HEX Code
❙
CSS Code
\2759
JS/JSON
\u2759
Unix/C/PHP/JAVA
0x2759
URL-encode
%E2%9D%99

Customize Medium Vertical Bar

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

  

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

Insert in HTML

1. Direct symbol:
<span>❙</span>
HTML Code:
<span>&#10073;</span>
HEX Code:
<span>&#x2759;</span>

Add with CSS

.medium-vertical-bar::before {
  content: '\\2759';
}

Set it in JavaScript

document.querySelector('.medium-vertical-bar').textContent = '❙';
copied