Double Vertical Bar

Shortcodes

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

Unicode
U+23F8
HTML Code
⏸
HEX Code
⏸
CSS Code
\23F8
JS/JSON
\u23F8
Unix/C/PHP/JAVA
0x23F8
URL-encode
%E2%8F%B8

Customize Double Vertical Bar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⏸</span>
HTML Code:
<span>&#9208;</span>
HEX Code:
<span>&#x23F8;</span>

Add with CSS

.double-vertical-bar::before {
  content: '\\23F8';
}

Set it in JavaScript

document.querySelector('.double-vertical-bar').textContent = '⏸';
copied