Box Drawings Heavy Up And Left

Shortcodes

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

Unicode
U+251B
HTML Code
┛
HEX Code
┛
CSS Code
\251B
JS/JSON
\u251B
Unix/C/PHP/JAVA
0x251B
URL-encode
%E2%94%9B

Customize Box Drawings Heavy Up And Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>┛</span>
HTML Code:
<span>&#9499;</span>
HEX Code:
<span>&#x251B;</span>

Add with CSS

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

Set it in JavaScript

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