White Triangle Containing Small White Triangle

Shortcodes

Copy useful codes for white triangle containing small white triangle symbol ⟁ to use in websites, apps, blogs, and docs.

Unicode
U+27C1
HTML Code
⟁
HEX Code
⟁
CSS Code
\27C1
JS/JSON
\u27C1
Unix/C/PHP/JAVA
0x27C1
URL-encode
%E2%9F%81

Customize White Triangle Containing Small White Triangle

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

  

How to use White Triangle Containing Small White Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟁</span>
HTML Code:
<span>&#10177;</span>
HEX Code:
<span>&#x27C1;</span>

Add with CSS

.white-triangle-containing-small-white-triangle::before {
  content: '\\27C1';
}

Set it in JavaScript

document.querySelector('.white-triangle-containing-small-white-triangle').textContent = '⟁';
copied