Box Drawings Vertical Light And Right Heavy

Shortcodes

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

Unicode
U+251D
HTML Code
┝
HEX Code
┝
CSS Code
\251D
JS/JSON
\u251D
Unix/C/PHP/JAVA
0x251D
URL-encode
%E2%94%9D

Customize Box Drawings Vertical Light And Right Heavy

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

  

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

Insert in HTML

1. Direct symbol:
<span>┝</span>
HTML Code:
<span>&#9501;</span>
HEX Code:
<span>&#x251D;</span>

Add with CSS

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

Set it in JavaScript

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