Triangle With Dot Above

Shortcodes

Copy useful codes for triangle with dot above symbol ⧊ to use in websites, apps, blogs, and docs.

Unicode
U+29CA
HTML Code
⧊
HEX Code
⧊
CSS Code
\29CA
JS/JSON
\u29CA
Unix/C/PHP/JAVA
0x29CA
URL-encode
%E2%A7%8A

Customize Triangle With Dot Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧊</span>
HTML Code:
<span>&#10698;</span>
HEX Code:
<span>&#x29CA;</span>

Add with CSS

.triangle-with-dot-above::before {
  content: '\\29CA';
}

Set it in JavaScript

document.querySelector('.triangle-with-dot-above').textContent = '⧊';
copied