Box Drawings Heavy Down And Left

Shortcodes

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

Unicode
U+2513
HTML Code
┓
HEX Code
┓
CSS Code
\2513
JS/JSON
\u2513
Unix/C/PHP/JAVA
0x2513
URL-encode
%E2%94%93

Customize Box Drawings Heavy Down And Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>┓</span>
HTML Code:
<span>&#9491;</span>
HEX Code:
<span>&#x2513;</span>

Add with CSS

.box-drawings-heavy-down-and-left::before {
  content: '\\2513';
}

Set it in JavaScript

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