Asymptotically Equal To

Shortcodes

Copy useful codes for asymptotically equal to symbol ≃ to use in websites, apps, blogs, and docs.

Unicode
U+2243
HTML Code
≃
HEX Code
≃
CSS Code
\2243
JS/JSON
\u2243
Unix/C/PHP/JAVA
0x2243
URL-encode
%E2%89%83

Customize Asymptotically Equal To

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

  

How to use Asymptotically Equal To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≃</span>
HTML Code:
<span>&#8771;</span>
HEX Code:
<span>&#x2243;</span>

Add with CSS

.asymptotically-equal-to::before {
  content: '\\2243';
}

Set it in JavaScript

document.querySelector('.asymptotically-equal-to').textContent = '≃';
copied