Measured By

Shortcodes

Copy and paste codes for Measured By symbol ≞ to use in your websites, apps, blogs, and more.

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

Customize Measured By Symbol

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

Insert ≞ Measured By using HTML

1. Copy-paste Measured By directly:
<span>≞</span>
2. HTML Decimal Code:
<span>&#8798;</span>
3. Hexadecimal Code:
<span>&#x225E;</span>
Preview:

Add Measured By symbol with CSS

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

Measured By JavaScript Code

1. Direct Symbol:
document.querySelector('.measured-by').textContent = '≞';
2. Unicode Escape for ≞:
document.querySelector('.measured-by').textContent = '\u225E';
Preview: