Inverted Lazy S

Shortcodes

Copy and paste codes for Inverted Lazy S symbol ∾ to use in your websites, apps, blogs, and more.

Unicode
U+223E
HTML Code
∾
HEX Code
∾
CSS Code
\223E
JS/JSON
\u223E
Unix/C/PHP/JAVA
0x223E
URL-encode
%E2%88%BE
copied

Customize Inverted Lazy S Symbol

Customize ∾ symbol as you like and download Inverted Lazy S as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Inverted Lazy S symbol in HTML, CSS, and JS?

Insert ∾ Inverted Lazy S using HTML

1. Copy-paste Inverted Lazy S directly:
<span>∾</span>
2. HTML Decimal Code:
<span>&#8766;</span>
3. Hexadecimal Code:
<span>&#x223E;</span>
Preview:

Add Inverted Lazy S symbol with CSS

.inverted-lazy-s::before {
    content: '\\223E';
}
Preview: Inverted Lazy S

Inverted Lazy S JavaScript Code

1. Direct Symbol:
document.querySelector('.inverted-lazy-s').textContent = '∾';
2. Unicode Escape for ∾:
document.querySelector('.inverted-lazy-s').textContent = '\u223E';
Preview: