Inverted Lazy S

Shortcodes

Copy useful codes for inverted lazy s symbol ∾ to use in websites, apps, blogs, and docs.

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

Customize Inverted Lazy S

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

  

How to use Inverted Lazy S Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∾</span>
HTML Code:
<span>&#8766;</span>
HEX Code:
<span>&#x223E;</span>

Add with CSS

.inverted-lazy-s::before {
  content: '\\223E';
}

Set it in JavaScript

document.querySelector('.inverted-lazy-s').textContent = '∾';
copied