Measured By

Shortcodes

Copy useful codes for measured by symbol ≞ to use in websites, apps, blogs, and docs.

Unicode
U+225E
HTML Code
≞
HEX Code
≞
CSS Code
\225E
JS/JSON
\u225E
Unix/C/PHP/JAVA
0x225E
URL-encode
%E2%89%9E

Customize Measured By

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

  

How to use Measured By Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≞</span>
HTML Code:
<span>&#8798;</span>
HEX Code:
<span>&#x225E;</span>

Add with CSS

.measured-by::before {
  content: '\\225E';
}

Set it in JavaScript

document.querySelector('.measured-by').textContent = '≞';
copied