Box Drawings Light Vertical And Left

Shortcodes

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

Unicode
U+2524
Alt Code
180
HTML Code
┤
HEX Code
┤
CSS Code
\2524
JS/JSON
\u2524
Unix/C/PHP/JAVA
0x2524
URL-encode
%E2%94%A4

Customize Box Drawings Light Vertical And Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>┤</span>
HTML Code:
<span>&#9508;</span>
HEX Code:
<span>&#x2524;</span>

Add with CSS

.box-drawings-light-vertical-and-left::before {
  content: '\\2524';
}

Set it in JavaScript

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