HTML Entity for Spherical Angle (∢)

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

What You'll Learn

How to display the Spherical Angle (∢) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2222 (SPHERICAL ANGLE) in the Mathematical Operators block (U+2200–U+22FF)—the angle between two great circles on a sphere.

Render it with ∢, ∢, ∢, or CSS \2222. Distinct from the plane angle Angle (∠, ∠).

⚡ Quick Reference — Spherical Angle

Unicode U+2222

Mathematical Operators

Hex Code ∢

Hexadecimal reference

HTML Code ∢

Decimal reference

Named Entity ∢

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2222
Hex code       ∢
HTML code      ∢
Named entity   ∢
CSS code       \2222
Meaning        Spherical angle
Related        U+2220 = plane angle (∠, ∠)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ∢ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2222";
  }
 </style>
</head>
<body>
<p>Spherical angle (named): &angsph;</p>
<p>Spherical angle (hex): &#x2222;</p>
<p>Spherical angle (decimal): &#8738;</p>
<p id="point">Spherical angle (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Spherical Angle (∢) is supported in all modern browsers when fonts include Mathematical Operators glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the spherical angle symbol in mathematical contexts:

Single symbol
Geometry Spherical angle ∢ ABC on a sphere
Compare angles Plane ∠  |  Spherical ∢
Named entity &angsph; renders as ∢
Numeric refs &angsph; &#x2222; &#8738; \2222

🧠 How It Works

1

Named HTML Entity

&angsph; is the semantic named entity for the spherical angle—the most readable option in source HTML.

HTML markup
2

Hexadecimal Code

&#x2222; uses Unicode hexadecimal 2222 to display ∢ in HTML markup.

HTML markup
3

Decimal HTML Code

&#8738; uses decimal Unicode value 8738 for the same character.

HTML markup
4

CSS Entity

\2222 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+2222 in Mathematical Operators (U+2200–U+22FF).

Use Cases

The Spherical Angle (∢) commonly appears in:

📊 Mathematical notation

Equations and formulas for spherical geometry and great-circle angles.

📐 Geometry

Documentation on angles between arcs on a sphere.

📚 Academic papers

Research and scholarly content in mathematics and physics.

🏫 Educational content

Tutorials and textbooks on spherical trigonometry.

📄 Technical documentation

Scientific and engineering references with precise notation.

🛠 Formula editors

Web-based math tools and calculators showing angle symbols.

💡 Best Practices

Do

  • Use &angsph; for readable source markup
  • Distinguish ∢ (spherical) from ∠ (plane, &ang;)
  • Add context text when the symbol stands alone in educational content
  • Pick one entity style (named, hex, or decimal) per project
  • Test rendering with math-friendly fonts

Don’t

  • Confuse &angsph; (U+2222) with &ang; (U+2220)
  • Use padded Unicode notation like U+02222—the correct value is U+2222
  • Put CSS escape \2222 in HTML text nodes
  • Use ∢ for ordinary plane Euclidean angles
  • Mix entity styles randomly in one file

Key Takeaways

1

Four HTML/CSS references all render ∢

&angsph; &#x2222; &#8738;
2

For CSS stylesheets, use \2222 in the content property

3

Unicode U+2222 — SPHERICAL ANGLE (∢)

4

&ang; is plane angle (U+2220); &angsph; is spherical (U+2222)

5

Previous: Sparkle   Next: Square Below

❓ Frequently Asked Questions

Use &angsph; (named), &#x2222; (hex), &#8738; (decimal), or \2222 in CSS content. All four render ∢.
U+2222 (SPHERICAL ANGLE). Mathematical Operators (U+2200–U+22FF). Hex 2222, decimal 8738, named &angsph;.
&angsph; renders ∢ (U+2222, spherical angle on a sphere). &ang; renders ∠ (U+2220, ordinary plane angle). They are different characters.
For mathematical notation, spherical geometry, technical documentation, academic papers, educational content, and scientific publications that need the angle between two great circles on a sphere.
HTML references (&angsph;, &#8738;, or &#x2222;) go in markup. The CSS escape \2222 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.

Explore More HTML Entities!

Discover 1500+ HTML character references — math symbols, operators, 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