Approximately Equal To Or The Image Of

Shortcodes

Copy useful codes for approximately equal to or the image of symbol ≒ to use in websites, apps, blogs, and docs.

Unicode
U+2252
HTML Code
≒
HEX Code
≒
CSS Code
\2252
JS/JSON
\u2252
Unix/C/PHP/JAVA
0x2252
URL-encode
%E2%89%92

Customize Approximately Equal To Or The Image Of

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

  

How to use Approximately Equal To Or The Image Of Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≒</span>
HTML Code:
<span>&#8786;</span>
HEX Code:
<span>&#x2252;</span>

Add with CSS

.approximately-equal-to-or-the-image-of::before {
  content: '\\2252';
}

Set it in JavaScript

document.querySelector('.approximately-equal-to-or-the-image-of').textContent = '≒';
copied