Estimates

Shortcodes

Copy and paste codes for Estimates symbol ≙ to use in your websites, apps, blogs, and more.

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

Customize Estimates Symbol

Customize ≙ symbol as you like and download Estimates as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Estimates symbol in HTML, CSS, and JS?

Insert ≙ Estimates using HTML

1. Copy-paste Estimates directly:
<span>≙</span>
2. HTML Decimal Code:
<span>&#8793;</span>
3. Hexadecimal Code:
<span>&#x2259;</span>
Preview:

Add Estimates symbol with CSS

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

Estimates JavaScript Code

1. Direct Symbol:
document.querySelector('.estimates').textContent = '≙';
2. Unicode Escape for ≙:
document.querySelector('.estimates').textContent = '\u2259';
Preview: