Box Drawings Light Quadruple Dash Vertical

Shortcodes

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

Unicode
U+250A
HTML Code
┊
HEX Code
┊
CSS Code
\250A
JS/JSON
\u250A
Unix/C/PHP/JAVA
0x250A
URL-encode
%E2%94%8A

Customize Box Drawings Light Quadruple Dash Vertical

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

  

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

Insert in HTML

1. Direct symbol:
<span>┊</span>
HTML Code:
<span>&#9482;</span>
HEX Code:
<span>&#x250A;</span>

Add with CSS

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

Set it in JavaScript

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