Estimated Symbol

Shortcodes

Copy and paste codes for Estimated Symbol ℮ to use in your websites, apps, blogs, and more.

Unicode
U+212E
HTML Code
℮
HTML Entity
&ellips;
HEX Code
℮
CSS Code
\212E
JS/JSON
\u212E
Unix/C/PHP/JAVA
0x212E
URL-encode
%E2%84%AE
copied

Customize Estimated Symbol Symbol

Customize ℮ symbol as you like and download Estimated Symbol 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 Estimated Symbol in HTML, CSS, and JS?

Insert ℮ Estimated Symbol using HTML

1. Copy-paste Estimated Symbol directly:
<span>℮</span>
2. HTML Decimal Code:
<span>&#8494;</span>
3. HTML Entity:
<span>&ellips;</span>
4. Hexadecimal Code:
<span>&#x212E;</span>
Preview:

Add Estimated Symbol with CSS

.estimated-symbol::before {
    content: '\\212E';
}
Preview: Estimated Symbol

Estimated Symbol JavaScript Code

1. Direct Symbol:
document.querySelector('.estimated-symbol').textContent = '℮';
2. Unicode Escape for ℮:
document.querySelector('.estimated-symbol').textContent = '\u212E';
Preview: