Approaches The Limit

Shortcodes

Copy useful codes for approaches the limit symbol ≐ to use in websites, apps, blogs, and docs.

Unicode
U+2250
HTML Code
≐
HEX Code
≐
CSS Code
\2250
JS/JSON
\u2250
Unix/C/PHP/JAVA
0x2250
URL-encode
%E2%89%90

Customize Approaches The Limit

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

  

How to use Approaches The Limit Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≐</span>
HTML Code:
<span>&#8784;</span>
HEX Code:
<span>&#x2250;</span>

Add with CSS

.approaches-the-limit::before {
  content: '\\2250';
}

Set it in JavaScript

document.querySelector('.approaches-the-limit').textContent = '≐';
copied