HTML Entity for Measured Angle (∡)

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

What You'll Learn

How to display the measured angle (∡) in HTML using hexadecimal, decimal, the named entity ∡, and CSS escape methods. This character is U+2221 (MEASURED ANGLE) in the Mathematical Operators block (U+2200–U+22FF)—used in geometry and technical notation to denote a measured angle, distinct from the plain angle symbol (∠, U+2220).

Render it with ∡, ∡, ∡, or CSS escape \2221. For the standard angle symbol use ∠ (∠, U+2220).

⚡ Quick Reference — Measured Angle

Unicode U+2221

Mathematical Operators block

Hex Code ∡

Hexadecimal reference

HTML Code ∡

Decimal reference

Named Entity ∡

HTML5 named entity for U+2221

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2221
Hex code       ∡
HTML code      ∡
Named entity   ∡
CSS code       \2221
Related        U+2220 = angle (∠); U+2222 = spherical angle (∢)
1

Complete HTML Example

This example demonstrates the measured angle (∡) using hexadecimal code, decimal HTML code, the named entity ∡, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2221";
  }
 </style>
</head>
<body>
<p>Measured Angle using Hexadecimal: &#x2221;</p>
<p>Measured Angle using HTML Code: &#8737;</p>
<p>Measured Angle using HTML Entity: &angmsd;</p>
<p id="point">Measured Angle using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The measured angle entity 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 angle (∡) in mathematical and geometric contexts:

Inline formula m∡ABC = 90°
Large glyph
vs angle symbol ∠ angle   ∡ measured angle
In notation mPQR denotes the measure of ∠PQR
Numeric refs &#x2221; &#8737; &angmsd;

🧠 How It Works

1

Hexadecimal Code

&#x2221; uses the Unicode hexadecimal value 2221 to display the measured angle. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&angmsd; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the measured angle glyph: . Unicode U+2221 sits in the Mathematical Operators block (U+2200–U+22FF).

Use Cases

The measured angle (∡) commonly appears in:

📐 Geometry

Angle measure notation such as m∡ABC in textbooks and proofs.

🔧 Engineering

Technical diagrams, CAD documentation, and structural angle specs.

📚 Education

Math courses, interactive geometry tools, and online homework platforms.

🔬 Physics

Vector diagrams and angular measurement in scientific content.

📝 Research papers

Academic articles and preprints with formal mathematical notation.

📄 Reference guides

HTML entity tutorials and Unicode Mathematical Operators docs.

💡 Best Practices

Do

  • Use &angmsd; for readable source markup
  • Distinguish ∡ (measured) from ∠ (angle, &ang;)
  • Pair with MathML or accessible text for complex formulas
  • Pick one entity style (hex / decimal / named) per project
  • Test glyph rendering across browsers and math fonts

Don’t

  • Confuse ∡ with ∠ (angle) or ∢ (spherical angle)
  • Mix entity styles randomly in one file
  • Put CSS escape \2221 in HTML text nodes
  • Use HTML entities in JS (use \u2221)
  • Use padded Unicode notation like U+02221—the correct value is U+2221

Key Takeaways

1

Three HTML references all render ∡

&#x2221; &#8737; &angmsd;
2

For CSS stylesheets, use the escape in the content property

\2221
3

Unicode U+2221 — MEASURED ANGLE in Mathematical Operators

4

Prefer &angmsd; for readability—it’s the most self-descriptive named entity

5

Not the same as ∠ (&ang;)—verify the symbol your notation requires

❓ Frequently Asked Questions

Use &angmsd; (named), &#x2221; (hex), &#8737; (decimal), or \2221 in CSS content. All produce ∡.
U+2221 (MEASURED ANGLE). Mathematical Operators block (U+2200–U+22FF). Hex 2221, decimal 8737. Named entity: &angmsd;.
In geometry, mathematics, engineering diagrams, physics notation, educational content, and technical documentation where m∡ (angle measure) notation is required.
HTML entities (&angmsd;, &#8737;, or &#x2221;) go directly in markup. The CSS escape \2221 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. ∡ is U+2221 (MEASURED ANGLE). ∠ is U+2220 (ANGLE) with named entity &ang;. They denote different concepts in mathematical notation.

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