Box Drawings Heavy Quadruple Dash Vertical

Shortcodes

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

Unicode
U+250B
HTML Code
┋
HEX Code
┋
CSS Code
\250B
JS/JSON
\u250B
Unix/C/PHP/JAVA
0x250B
URL-encode
%E2%94%8B

Customize Box Drawings Heavy Quadruple Dash Vertical

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

  

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

Insert in HTML

1. Direct symbol:
<span>┋</span>
HTML Code:
<span>&#9483;</span>
HEX Code:
<span>&#x250B;</span>

Add with CSS

.box-drawings-heavy-quadruple-dash-vertical::before {
  content: '\\250B';
}

Set it in JavaScript

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