Geometric Proportion

Shortcodes

Copy and paste codes for Geometric Proportion symbol ∺ to use in your websites, apps, blogs, and more.

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

Customize Geometric Proportion Symbol

Customize ∺ symbol as you like and download Geometric Proportion 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 Geometric Proportion symbol in HTML, CSS, and JS?

Insert ∺ Geometric Proportion using HTML

1. Copy-paste Geometric Proportion directly:
<span>∺</span>
2. HTML Decimal Code:
<span>&#8762;</span>
3. Hexadecimal Code:
<span>&#x223A;</span>
Preview:

Add Geometric Proportion symbol with CSS

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

Geometric Proportion JavaScript Code

1. Direct Symbol:
document.querySelector('.geometric-proportion').textContent = '∺';
2. Unicode Escape for ∺:
document.querySelector('.geometric-proportion').textContent = '\u223A';
Preview: