HTML Entity for Surface Integral (∯)

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

What You'll Learn

How to display the Surface Integral symbol (∯) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+222F (SURFACE INTEGRAL) in the Mathematical Operators block (U+2200–U+22FF)—used for integrals over a surface in calculus, vector analysis, and physics.

Render it with ∯, ∯, the named entity ∯, or CSS escape \222F. Do not confuse ∯ (surface integral) with ∬ (double integral, ∬) or ∮ (contour integral, ∮).

⚡ Quick Reference — Surface Integral

Unicode U+222F

Mathematical Operators

Hex Code ∯

Hexadecimal reference

HTML Code ∯

Decimal reference

Named Entity ∯

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+222F
Hex code       ∯
HTML code      ∯
Named entity   ∯
CSS code       \222F
Block          Mathematical Operators (U+2200–U+22FF)
Related        U+222C = Double integral (∬)
1

Complete HTML Example

This example demonstrates the Surface Integral symbol (∯) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\222F";
  }
 </style>
</head>
<body>
<p>Using Named Entity: &Conint;</p>
<p>Using Hexadecimal: &#x222F;</p>
<p>Using HTML Code: &#8751;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Surface Integral entity is universally supported in all modern browsers:

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

👀 Live Preview

See the Surface Integral symbol (∯) rendered in different contexts:

Calculus S F · dS — integral over surface S
Large glyph
vs related ∯ surface   ∬ double   ∮ contour   ∫ single
Monospace &Conint; &#x222F; &#8751; \222F
Named entity &Conint; → ∯ (not &conint;)

🧠 How It Works

1

Named Entity

&Conint; is the semantic named entity for U+222F — the easiest to read in source HTML. Note the capital C (distinct from &conint; for contour integral).

HTML markup
2

Hexadecimal Code

&#x222F; uses the Unicode hexadecimal value 222F to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8751; uses the decimal Unicode value 8751 to display the same character. This is one of the most commonly used methods.

HTML markup
4

CSS Entity

\222F 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 glyph: . Unicode U+222F in the Mathematical Operators block (U+2200–U+22FF).

Use Cases

The Surface Integral symbol (∯) commonly appears in:

📐 Calculus

Surface integrals in multivariable calculus.

🔬 Vector Analysis

Flux integrals and vector field notation.

⚡ Physics

Electromagnetism, fluid dynamics, and field equations.

📚 Academic Content

Textbooks, lectures, and mathematical proofs.

📄 Scientific Docs

Research papers and technical documentation.

🎓 Education

Online courses and e-learning platforms.

💻 Math Software

Calculator and computational tool interfaces.

💡 Best Practices

Do

  • Prefer &Conint; for readable source markup
  • Pick one style (named / hex / decimal) per project
  • Add aria-label for standalone symbols in math content
  • Test the glyph across browsers and math fonts
  • Pair ∯ with subscripts for the integration surface (e.g. ∯S)

Don’t

  • Confuse ∯ (surface) with ∬ (double) or ∮ (contour)
  • Use &conint; when you mean surface integral — that is U+222E
  • Put CSS escape \222F inside HTML text nodes
  • Use HTML entities in JS (use \u222F instead)
  • Assume all fonts render ∯ clearly at small sizes

Key Takeaways

1

Three HTML references all render ∯

&Conint; &#x222F; &#8751;
2

For CSS stylesheets, use the escape in the content property

\222F
3

Unicode U+222F — SURFACE INTEGRAL

4

&Conint; (capital C) — not &conint; (contour)

5

Part of the integral family: ∫ ∬ ∮ ∯

❓ Frequently Asked Questions

Use &Conint; (named), &#x222F; (hex), &#8751; (decimal), or \222F in CSS content. All produce ∯.
U+222F (SURFACE INTEGRAL). Mathematical Operators block (U+2200–U+22FF). Hex 222F, decimal 8751.
In calculus equations, vector analysis, physics equations, scientific documentation, academic papers, mathematical proofs, and any content representing surface integrals.
&Conint; is more readable and semantic. Numeric codes (&#8751; or &#x222F;) work in all contexts. CSS escape \222F is for stylesheets. All render ∯.
The named entity is &Conint; (capital C). It maps to U+222F. Do not confuse with &conint;, which is the contour integral (U+222E, ∮).

Explore More HTML Entities!

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