Box Drawings Heavy Down And Right

Shortcodes

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

Unicode
U+250F
HTML Code
┏
HEX Code
┏
CSS Code
\250F
JS/JSON
\u250F
Unix/C/PHP/JAVA
0x250F
URL-encode
%E2%94%8F

Customize Box Drawings Heavy Down And Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>┏</span>
HTML Code:
<span>&#9487;</span>
HEX Code:
<span>&#x250F;</span>

Add with CSS

.box-drawings-heavy-down-and-right::before {
  content: '\\250F';
}

Set it in JavaScript

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