Not Asymptotically Equal To

Shortcodes

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

Unicode
U+2244
HTML Code
≄
HEX Code
≄
CSS Code
\2244
JS/JSON
\u2244
Unix/C/PHP/JAVA
0x2244
URL-encode
%E2%89%84

Customize Not Asymptotically Equal To

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

  

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

Insert in HTML

1. Direct symbol:
<span>≄</span>
HTML Code:
<span>&#8772;</span>
HEX Code:
<span>&#x2244;</span>

Add with CSS

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

Set it in JavaScript

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