Homothetic

Shortcodes

Copy useful codes for homothetic symbol ∻ to use in websites, apps, blogs, and docs.

Unicode
U+223B
HTML Code
∻
HEX Code
∻
CSS Code
\223B
JS/JSON
\u223B
Unix/C/PHP/JAVA
0x223B
URL-encode
%E2%88%BB

Customize Homothetic

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

  

How to use Homothetic Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∻</span>
HTML Code:
<span>&#8763;</span>
HEX Code:
<span>&#x223B;</span>

Add with CSS

.homothetic::before {
  content: '\\223B';
}

Set it in JavaScript

document.querySelector('.homothetic').textContent = '∻';
copied