Box Drawings Light Up And Left

Shortcodes

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

Unicode
U+2518
Alt Code
217
HTML Code
┘
HEX Code
┘
CSS Code
\2518
JS/JSON
\u2518
Unix/C/PHP/JAVA
0x2518
URL-encode
%E2%94%98

Customize Box Drawings Light Up And Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>┘</span>
HTML Code:
<span>&#9496;</span>
HEX Code:
<span>&#x2518;</span>

Add with CSS

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

Set it in JavaScript

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