Box Drawings Heavy Up And Left

Shortcodes

Copy and paste codes for Box Drawings Heavy Up And Left symbol ┛ to use in your websites, apps, blogs, and more.

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

Customize Box Drawings Heavy Up And Left Symbol

Customize ┛ symbol as you like and download Box Drawings Heavy Up And Left as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Box Drawings Heavy Up And Left symbol in HTML, CSS, and JS?

Insert ┛ Box Drawings Heavy Up And Left using HTML

1. Copy-paste Box Drawings Heavy Up And Left directly:
<span>┛</span>
2. HTML Decimal Code:
<span>&#9499;</span>
3. Hexadecimal Code:
<span>&#x251B;</span>
Preview:

Add Box Drawings Heavy Up And Left symbol with CSS

.box-drawings-heavy-up-and-left::before {
    content: '\\251B';
}
Preview: Box Drawings Heavy Up And Left

Box Drawings Heavy Up And Left JavaScript Code

1. Direct Symbol:
document.querySelector('.box-drawings-heavy-up-and-left').textContent = '┛';
2. Unicode Escape for ┛:
document.querySelector('.box-drawings-heavy-up-and-left').textContent = '\u251B';
Preview: