Box Drawings Light Arc Down And Left

Shortcodes

Copy useful codes for box drawings light arc down and left symbol ╮ to use in websites, apps, blogs, and docs.

Unicode
U+256E
HTML Code
╮
HEX Code
╮
CSS Code
\256E
JS/JSON
\u256E
Unix/C/PHP/JAVA
0x256E
URL-encode
%E2%95%AE

Customize Box Drawings Light Arc Down And Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>╮</span>
HTML Code:
<span>&#9582;</span>
HEX Code:
<span>&#x256E;</span>

Add with CSS

.box-drawings-light-arc-down-and-left::before {
  content: '\\256E';
}

Set it in JavaScript

document.querySelector('.box-drawings-light-arc-down-and-left').textContent = '╮';
copied