Approximately

Unicode Name: Approximately Equal To

Shortcodes

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

Unicode
U+2245
HTML Code
≅
HEX Code
≅
CSS Code
\2245
JS/JSON
\u2245
Unix/C/PHP/JAVA
0x2245
URL-encode
%E2%89%85
copied

Customize Approximately Symbol

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

Insert ≅ Approximately using HTML

1. Copy-paste Approximately directly:
<span>≅</span>
2. HTML Decimal Code:
<span>&#8773;</span>
3. Hexadecimal Code:
<span>&#x2245;</span>
Preview:

Add Approximately symbol with CSS

.approximately::before {
    content: '\\2245';
}
Preview: Approximately

Approximately JavaScript Code

1. Direct Symbol:
document.querySelector('.approximately').textContent = '≅';
2. Unicode Escape for ≅:
document.querySelector('.approximately').textContent = '\u2245';
Preview: