Box Drawings Light Arc Up And Left

Shortcodes

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

Unicode
U+256F
HTML Code
╯
HEX Code
╯
CSS Code
\256F
JS/JSON
\u256F
Unix/C/PHP/JAVA
0x256F
URL-encode
%E2%95%AF

Customize Box Drawings Light Arc Up And Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>╯</span>
HTML Code:
<span>&#9583;</span>
HEX Code:
<span>&#x256F;</span>

Add with CSS

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

Set it in JavaScript

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