S In Triangle

Shortcodes

Copy useful codes for s in triangle symbol ⧌ to use in websites, apps, blogs, and docs.

Unicode
U+29CC
HTML Code
⧌
HEX Code
⧌
CSS Code
\29CC
JS/JSON
\u29CC
Unix/C/PHP/JAVA
0x29CC
URL-encode
%E2%A7%8C

Customize S In Triangle

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

  

How to use S In Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧌</span>
HTML Code:
<span>&#10700;</span>
HEX Code:
<span>&#x29CC;</span>

Add with CSS

.s-in-triangle::before {
  content: '\\29CC';
}

Set it in JavaScript

document.querySelector('.s-in-triangle').textContent = '⧌';
copied