Box Drawings Light Vertical And Right

Shortcodes

Copy useful codes for box drawings light vertical and right symbol ├ to use in websites, apps, blogs, and docs.

Unicode
U+251C
Alt Code
195
HTML Code
├
HEX Code
├
CSS Code
\251C
JS/JSON
\u251C
Unix/C/PHP/JAVA
0x251C
URL-encode
%E2%94%9C

Customize Box Drawings Light Vertical And Right

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

  

How to use Box Drawings Light Vertical And Right Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>├</span>
HTML Code:
<span>&#9500;</span>
HEX Code:
<span>&#x251C;</span>

Add with CSS

.box-drawings-light-vertical-and-right::before {
  content: '\\251C';
}

Set it in JavaScript

document.querySelector('.box-drawings-light-vertical-and-right').textContent = '├';
copied