Oblique Angle Opening Up

Shortcodes

Copy useful codes for oblique angle opening up symbol ⦦ to use in websites, apps, blogs, and docs.

Unicode
U+29A6
HTML Code
⦦
HEX Code
⦦
CSS Code
\29A6
JS/JSON
\u29A6
Unix/C/PHP/JAVA
0x29A6
URL-encode
%E2%A6%A6

Customize Oblique Angle Opening Up

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

  

How to use Oblique Angle Opening Up Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦦</span>
HTML Code:
<span>&#10662;</span>
HEX Code:
<span>&#x29A6;</span>

Add with CSS

.oblique-angle-opening-up::before {
  content: '\\29A6';
}

Set it in JavaScript

document.querySelector('.oblique-angle-opening-up').textContent = '⦦';
copied