Triangle With Serifs At Bottom

Shortcodes

Copy useful codes for triangle with serifs at bottom symbol ⧍ to use in websites, apps, blogs, and docs.

Unicode
U+29CD
HTML Code
⧍
HEX Code
⧍
CSS Code
\29CD
JS/JSON
\u29CD
Unix/C/PHP/JAVA
0x29CD
URL-encode
%E2%A7%8D

Customize Triangle With Serifs At Bottom

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

  

How to use Triangle With Serifs At Bottom Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧍</span>
HTML Code:
<span>&#10701;</span>
HEX Code:
<span>&#x29CD;</span>

Add with CSS

.triangle-with-serifs-at-bottom::before {
  content: '\\29CD';
}

Set it in JavaScript

document.querySelector('.triangle-with-serifs-at-bottom').textContent = '⧍';
copied