HTML Entity for Partial Differential (∂)

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

What You'll Learn

How to display the Partial Differential symbol (∂) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2202 (PARTIAL DIFFERENTIAL) in the Mathematical Operators block (U+2200–U+22FF)—the standard notation for partial derivatives in calculus, physics, and engineering (e.g. ∂f/∂x).

Render it with ∂, ∂, the named entity ∂, or CSS escape \2202. Do not confuse ∂ with U+222B (∫, integral, ∫) or with lowercase letter d for ordinary derivatives.

⚡ Quick Reference — Partial Differential

Unicode U+2202

Mathematical Operators (U+2200–U+22FF)

Hex Code ∂

Hexadecimal reference

HTML Code ∂

Decimal reference

Named Entity ∂

Standard HTML named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2202
Hex code       ∂
HTML code      ∂
Named entity   ∂
CSS code       \2202
Also called    Partial derivative symbol
Example        ∂f/∂x
Related        U+222B = integral (∫, ∫)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2202";
  }
 </style>
</head>
<body>
<p>Partial differential (hex): &#x2202;</p>
<p>Partial differential (decimal): &#8706;</p>
<p>Partial differential (named): &part;</p>
<p>Partial derivative: &part;f/&part;x</p>
<p id="point">Partial differential (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Partial Differential symbol (∂) is widely supported in all modern browsers:

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

👀 Live Preview

See the Partial Differential symbol (∂) in calculus and science contexts:

Single symbol
Partial derivative ∂f/∂x
Named entity &part; renders as ∂
Not the same as Integral ∫ (&int;)  |  Letter d
Numeric refs &#x2202; &#8706; &part; \2202

🧠 How It Works

1

Hexadecimal Code

&#x2202; uses the Unicode hexadecimal value 2202 to display the partial differential symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&part; is the standard HTML named entity for U+2202—readable and widely supported.

HTML markup
4

CSS Entity

\2202 is used in CSS stylesheets in the content property of pseudo-elements for decorative markers.

CSS stylesheet
=

Partial differential result

All four methods render . Unicode U+2202 in Mathematical Operators. Next: Partially Recycled Paper Symbol (♽).

Use Cases

The Partial Differential symbol (∂) is commonly used in:

📐 Calculus

Partial derivatives ∂f/∂x in multivariable calculus tutorials.

⚙ Physics

Wave equations, thermodynamics, and field notation on the web.

📚 Engineering

Technical docs, fluid dynamics, and optimization formulas.

💻 Data science

Gradient and loss-function notation in ML and statistics articles.

📋 Unicode references

Character pickers, entity documentation, and math symbol guides.

♿ Accessibility

Pair ∂ with MathML or alt text for complex equations when possible.

💡 Best Practices

Do

  • Use &part; when readability matters in HTML source
  • Use &#x2202; or &#8706; in numeric-only contexts
  • Set <meta charset="utf-8"> for reliable rendering
  • Use ∂ for partial derivatives, not ordinary d
  • Pick one reference style per project for consistency

Don’t

  • Confuse ∂ (partial differential) with ∫ (integral, &int;)
  • Use padded Unicode notation like U+02202—the correct value is U+2202
  • Use CSS escape \2202 in HTML text nodes
  • Substitute lowercase d or Greek delta for proper ∂ notation
  • Assume every font renders Mathematical Operators identically—test your typeface

Key Takeaways

1

Four ways to render U+2202 in HTML and CSS

&#x2202; &part;
2

For CSS stylesheets, use \2202 in the content property

3

Unicode U+2202 — PARTIAL DIFFERENTIAL (∂)

4

Standard for partial derivatives: &part;f/&part;x

❓ Frequently Asked Questions

Use &#x2202; (hex), &#8706; (decimal), &part; (named), or \2202 in CSS content. All four render ∂.
U+2202 (PARTIAL DIFFERENTIAL). Mathematical Operators block (U+2200–U+22FF). Hex 2202, decimal 8706, named &part;.
No. ∂ (U+2202) denotes partial differentiation. ∫ (U+222B) is INTEGRAL with entity &int; for integration. They are different calculus operators.
The official Unicode name is PARTIAL DIFFERENTIAL (U+2202). The URL slug partial-difference is kept for navigation continuity from older references; the character is the partial derivative operator ∂, not a “difference” operator.
Both work with UTF-8. Use &part; for explicit entity references in tutorials and portable markup; use the literal character when your editor and pipeline support UTF-8 reliably.

Explore More HTML Entities!

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