Box Drawings Heavy Right

Shortcodes

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

Unicode
U+257A
HTML Code
╺
HEX Code
╺
CSS Code
\257A
JS/JSON
\u257A
Unix/C/PHP/JAVA
0x257A
URL-encode
%E2%95%BA

Customize Box Drawings Heavy Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>╺</span>
HTML Code:
<span>&#9594;</span>
HEX Code:
<span>&#x257A;</span>

Add with CSS

.box-drawings-heavy-right::before {
  content: '\\257A';
}

Set it in JavaScript

document.querySelector('.box-drawings-heavy-right').textContent = '╺';
copied