Geometric Proportion

Shortcodes

Copy useful codes for geometric proportion symbol ∺ to use in websites, apps, blogs, and docs.

Unicode
U+223A
HTML Code
∺
HEX Code
∺
CSS Code
\223A
JS/JSON
\u223A
Unix/C/PHP/JAVA
0x223A
URL-encode
%E2%88%BA

Customize Geometric Proportion

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

  

How to use Geometric Proportion Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∺</span>
HTML Code:
<span>&#8762;</span>
HEX Code:
<span>&#x223A;</span>

Add with CSS

.geometric-proportion::before {
  content: '\\223A';
}

Set it in JavaScript

document.querySelector('.geometric-proportion').textContent = '∺';
copied