Oblique Angle Opening Down

Shortcodes

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

Unicode
U+29A7
HTML Code
⦧
HEX Code
⦧
CSS Code
\29A7
JS/JSON
\u29A7
Unix/C/PHP/JAVA
0x29A7
URL-encode
%E2%A6%A7

Customize Oblique Angle Opening Down

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦧</span>
HTML Code:
<span>&#10663;</span>
HEX Code:
<span>&#x29A7;</span>

Add with CSS

.oblique-angle-opening-down::before {
  content: '\\29A7';
}

Set it in JavaScript

document.querySelector('.oblique-angle-opening-down').textContent = '⦧';
copied