Angle With S Inside

Shortcodes

Copy useful codes for angle with s inside symbol ⦞ to use in websites, apps, blogs, and docs.

Unicode
U+299E
HTML Code
⦞
HEX Code
⦞
CSS Code
\299E
JS/JSON
\u299E
Unix/C/PHP/JAVA
0x299E
URL-encode
%E2%A6%9E

Customize Angle With S Inside

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

  

How to use Angle With S Inside Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦞</span>
HTML Code:
<span>&#10654;</span>
HEX Code:
<span>&#x299E;</span>

Add with CSS

.angle-with-s-inside::before {
  content: '\\299E';
}

Set it in JavaScript

document.querySelector('.angle-with-s-inside').textContent = '⦞';
copied