Geometrically Equivalent To

Shortcodes

Copy useful codes for geometrically equivalent to symbol ≎ to use in websites, apps, blogs, and docs.

Unicode
U+224E
HTML Code
≎
HEX Code
≎
CSS Code
\224E
JS/JSON
\u224E
Unix/C/PHP/JAVA
0x224E
URL-encode
%E2%89%8E

Customize Geometrically Equivalent To

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

  

How to use Geometrically Equivalent To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≎</span>
HTML Code:
<span>&#8782;</span>
HEX Code:
<span>&#x224E;</span>

Add with CSS

.geometrically-equivalent-to::before {
  content: '\\224E';
}

Set it in JavaScript

document.querySelector('.geometrically-equivalent-to').textContent = '≎';
copied