Triangle With Underbar

Shortcodes

Copy useful codes for triangle with underbar symbol ⧋ to use in websites, apps, blogs, and docs.

Unicode
U+29CB
HTML Code
⧋
HEX Code
⧋
CSS Code
\29CB
JS/JSON
\u29CB
Unix/C/PHP/JAVA
0x29CB
URL-encode
%E2%A7%8B

Customize Triangle With Underbar

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

  

How to use Triangle With Underbar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧋</span>
HTML Code:
<span>&#10699;</span>
HEX Code:
<span>&#x29CB;</span>

Add with CSS

.triangle-with-underbar::before {
  content: '\\29CB';
}

Set it in JavaScript

document.querySelector('.triangle-with-underbar').textContent = '⧋';
copied