Box Drawings Vertical Light And Left Heavy

Shortcodes

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

Unicode
U+2525
HTML Code
┥
HEX Code
┥
CSS Code
\2525
JS/JSON
\u2525
Unix/C/PHP/JAVA
0x2525
URL-encode
%E2%94%A5

Customize Box Drawings Vertical Light And Left Heavy

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

  

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

Insert in HTML

1. Direct symbol:
<span>┥</span>
HTML Code:
<span>&#9509;</span>
HEX Code:
<span>&#x2525;</span>

Add with CSS

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

Set it in JavaScript

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