Box Drawings Heavy Triple Dash Vertical

Shortcodes

Copy useful codes for box drawings heavy triple dash vertical symbol ┇ to use in websites, apps, blogs, and docs.

Unicode
U+2507
HTML Code
┇
HEX Code
┇
CSS Code
\2507
JS/JSON
\u2507
Unix/C/PHP/JAVA
0x2507
URL-encode
%E2%94%87

Customize Box Drawings Heavy Triple Dash Vertical

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

  

How to use Box Drawings Heavy Triple Dash Vertical Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>┇</span>
HTML Code:
<span>&#9479;</span>
HEX Code:
<span>&#x2507;</span>

Add with CSS

.box-drawings-heavy-triple-dash-vertical::before {
  content: '\\2507';
}

Set it in JavaScript

document.querySelector('.box-drawings-heavy-triple-dash-vertical').textContent = '┇';
copied