Box Drawings Light Arc Down And Right

Shortcodes

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

Unicode
U+256D
HTML Code
╭
HEX Code
╭
CSS Code
\256D
JS/JSON
\u256D
Unix/C/PHP/JAVA
0x256D
URL-encode
%E2%95%AD

Customize Box Drawings Light Arc Down And Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>╭</span>
HTML Code:
<span>&#9581;</span>
HEX Code:
<span>&#x256D;</span>

Add with CSS

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

Set it in JavaScript

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