Box Drawings Up Heavy And Left Light

Shortcodes

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

Unicode
U+251A
HTML Code
┚
HEX Code
┚
CSS Code
\251A
JS/JSON
\u251A
Unix/C/PHP/JAVA
0x251A
URL-encode
%E2%94%9A

Customize Box Drawings Up Heavy And Left Light

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

  

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

Insert in HTML

1. Direct symbol:
<span>┚</span>
HTML Code:
<span>&#9498;</span>
HEX Code:
<span>&#x251A;</span>

Add with CSS

.box-drawings-up-heavy-and-left-light::before {
  content: '\\251A';
}

Set it in JavaScript

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