Right Triangle Above Left Triangle

Shortcodes

Copy useful codes for right triangle above left triangle symbol ⧎ to use in websites, apps, blogs, and docs.

Unicode
U+29CE
HTML Code
⧎
HEX Code
⧎
CSS Code
\29CE
JS/JSON
\u29CE
Unix/C/PHP/JAVA
0x29CE
URL-encode
%E2%A7%8E

Customize Right Triangle Above Left Triangle

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

  

How to use Right Triangle Above Left Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧎</span>
HTML Code:
<span>&#10702;</span>
HEX Code:
<span>&#x29CE;</span>

Add with CSS

.right-triangle-above-left-triangle::before {
  content: '\\29CE';
}

Set it in JavaScript

document.querySelector('.right-triangle-above-left-triangle').textContent = '⧎';
copied