Estimates

Shortcodes

Copy useful codes for estimates symbol ≙ to use in websites, apps, blogs, and docs.

Unicode
U+2259
HTML Code
≙
HEX Code
≙
CSS Code
\2259
JS/JSON
\u2259
Unix/C/PHP/JAVA
0x2259
URL-encode
%E2%89%99

Customize Estimates

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

  

How to use Estimates Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≙</span>
HTML Code:
<span>&#8793;</span>
HEX Code:
<span>&#x2259;</span>

Add with CSS

.estimates::before {
  content: '\\2259';
}

Set it in JavaScript

document.querySelector('.estimates').textContent = '≙';
copied