HTML Entity for Measured By (≞)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+225E

What You'll Learn

How to display the measured by (≞) symbol in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+225E (MEASURED BY) in the Mathematical Operators block (U+2200–U+22FF)—a relation symbol used in mathematical and technical notation.

Render it with ≞, ≞, or CSS escape \225E. There is no named HTML entity for U+225E. For related angle symbols see Measured Angle (∡) and Angle (∠).

⚡ Quick Reference — Measured By

Unicode U+225E

Mathematical Operators block

Hex Code ≞

Hexadecimal reference

HTML Code ≞

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+225E
Hex code       ≞
HTML code      ≞
Named entity   (none)
CSS code       \225E
Related        U+2221 = measured angle (∡); U+2243 = asymptotically equal to (≃)
1

Complete HTML Example

This example demonstrates the measured by (≞) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\225E";
  }
 </style>
</head>
<body>
<p>Measured By using Hexadecimal: &#x225E;</p>
<p>Measured By using HTML Code: &#8798;</p>
<p id="point">Measured By using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The measured by symbol is universally supported in modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the measured by (≞) symbol in mathematical contexts:

Inline notation ∠ABC ≞ 45°
Large glyph
Relation symbol ≞ — MEASURED BY (U+225E)
vs equals = equals   ≞ measured by
Numeric refs &#x225E; &#8798;

🧠 How It Works

1

Hexadecimal Code

&#x225E; uses the Unicode hexadecimal value 225E to display the measured by symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8798; uses the decimal Unicode value 8798 to display the same character.

HTML markup
3

CSS Entity

\225E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+225E sits in the Mathematical Operators block (U+2200–U+22FF). No named HTML entity—use numeric codes in markup.

Use Cases

The measured by (≞) symbol commonly appears in:

📐 Mathematics

Formal notation for measured-by relations in proofs and textbooks.

🔧 Engineering

Technical specs, CAD annotations, and measurement documentation.

📚 Education

Online math courses, geometry apps, and interactive problem sets.

🔬 Physics

Scientific articles and lab notes with angular or dimensional notation.

📝 Research papers

Academic preprints and journals using Unicode math symbols.

📄 Reference guides

HTML entity tutorials and Mathematical Operators documentation.

💡 Best Practices

Do

  • Use &#x225E; or &#8798; consistently per project
  • Distinguish ≞ from = (equals) and ≃ (asymptotically equal)
  • Pair with MathML or accessible text for complex formulas
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Test glyph rendering across browsers and math fonts

Don’t

  • Confuse ≞ with ≃ (asymptotically equal) or ≈ (almost equal)
  • Mix entity styles randomly in one file
  • Put CSS escape \225E in HTML text nodes
  • Use HTML entities in JS (use \u225E)
  • Use padded Unicode notation like U+0225E—the correct value is U+225E

Key Takeaways

1

Two HTML references both render ≞

&#x225E; &#8798;
2

For CSS stylesheets, use the escape in the content property

\225E
3

Unicode U+225E — MEASURED BY in Mathematical Operators

4

No named HTML entity—use numeric codes or UTF-8 literal ≞

5

Related: ∡ (measured angle) and ∠ (angle)

❓ Frequently Asked Questions

Use &#x225E; (hex), &#8798; (decimal), or \225E in CSS content. All produce ≞. There is no named HTML entity for U+225E.
U+225E (MEASURED BY). Mathematical Operators block (U+2200–U+22FF). Hex 225E, decimal 8798.
In mathematics, geometry, physics, engineering notation, educational content, and technical documentation where the measured-by relation is required.
HTML references (&#8798; or &#x225E;) go directly in markup. The CSS escape \225E is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. U+225E has no named HTML entity. Use numeric references &#x225E; or &#8798;, or type ≞ directly in UTF-8 source files.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, geometry symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful