HTML Entity for Partial Differential (∂)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+2202

What Is the Partial Differential Entity?

Partial differential (∂) is the Mathematical Operators character at Unicode U+2202 (PARTIAL DIFFERENTIAL). In calculus, ∂f/∂x denotes a partial derivative. HTML5 provides ∂ and ∂.

Remember
Character     ∂
Unicode       U+2202
Named entity  ∂  (also ∂)
Hex entity    ∂
Decimal       ∂
CSS escape    \2202

All of these produce the same glyph: ∂. Prefer ∂ for readable HTML; paste ∂ in UTF-8 when convenient.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity∂HTML markup (also ∂)
Hex entity∂HTML markup
Decimal entity∂HTML markup
Direct character∂HTML text (UTF-8 default)
CSS escape\2202Stylesheet content

When to Use Which

SituationUse
Readable calculus in HTML∂ or ∂
UTF-8 math textType or paste ∂
Numeric entity required∂ or ∂
Generated text via ::before / ::aftercontent: "\2202"
Ordinary derivative (not partial)Latin d (e.g. dy/dx)

Live Preview

Partial differential rendered in common contexts.

Glyph ∂
Large glyph ∂
In a formula ∂f/∂x
With entities Named: ∂ | Hex: ∂ | Decimal: ∂
Related symbols d (ordinary) · Δ (Δ) · ∇ (∇)

Complete HTML Example

One page that shows partial differential with named, hex, decimal, direct, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + Direct + CSS

Five ways to produce ∂ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Partial Differential (∂) in HTML</title>
  <style>
    #point::after {
      content: "\2202";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &part;</p>
  <p>Using Hex Code: &#x2202;</p>
  <p>Using Decimal: &#8706;</p>
  <p>Using Direct Character: ∂</p>
  <p id="point">Using CSS Entity: </p>
  <p>Partial derivative: &part;f/&part;x</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &part; (or &PartialD;) is the clearest HTML form for U+2202.

2. Hex: U+2202 → &#x2202; in HTML. Reliable numeric form.

3. Decimal: same code point as 8706 → &#8706;. Same glyph.

4. Direct: paste ∂ in a UTF-8 file with <meta charset="UTF-8">.

5. CSS: use \2202 in content (not an HTML entity). #point::after appends that ∂ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with this calculus entity.

Name

Differential, not “difference”

Unicode name is PARTIAL DIFFERENTIAL. The page URL uses “difference,” but the glyph is the calculus operator ∂.

Not d

Ordinary vs partial

Use Latin d for dy/dx. Use &part; for ∂f/∂x.

Aliases

&part; = &PartialD;

Both named forms map to U+2202. Pick one and stay consistent.

CSS vs HTML

Do not mix escapes

\2202 belongs in CSS. &part; / &#x2202; / &#8706; belong in HTML.

Semicolon

End references

Always finish with ; — write &part;, not &part.

UTF-8

Declare charset

If you paste ∂ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Partial differential (U+2202) and its entity forms (&part;, &#x2202;, &#8706;, CSS \\2202) are supported in all mainstream browsers. Glyph availability depends on the font.

✓ Universal support

Partial Differential (&#x2202;)

Prefer &part;, or encode with hex, decimal, or CSS escape — same glyph everywhere.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2202 / entities Full support

Bottom line: Prefer &part; (or &PartialD;) in HTML. Use &#x2202; / &#8706; when a numeric form is required, and \\2202 only inside CSS content.

Key Takeaways

  • Unicode: partial differential is U+2202 (decimal 8706), Mathematical Operators.
  • HTML: prefer &part; (alias &PartialD;), or &#x2202; / &#8706;.
  • CSS: use \2202 inside content for generated text.
  • Use: ∂f/∂x — not the same as Latin d or Δ.

One line: U+2202 → &part; / &#x2202; / &#8706; / CSS \2202.

Frequently Asked Questions

Use &part; or &PartialD; (named), &#x2202; (hex), &#8706; (decimal), type ∂ in UTF-8, or the CSS escape \2202 in content. All render ∂.
U+2202 (PARTIAL DIFFERENTIAL). Hex 2202, decimal 8706. It belongs to Mathematical Operators and is used for partial derivatives in calculus.
Yes. HTML5 defines &part; and &PartialD; (aliases for the same character). You can also use &#8706; or &#x2202;.
Use it in calculus and physics for ∂f/∂x style notation. Prefer &part; for readable source. For ordinary English, write “partial derivative” in words.
HTML entities (&part;, &#8706;, or &#x2202;) go in markup. The CSS escape \2202 is used in stylesheets (usually in the content property of ::before/::after). Both render ∂.
Latin d is for ordinary derivatives (dy/dx). Δ (U+0394, &Delta;) is often change or Laplacian-related. ∂ (U+2202, &part;) is specifically the partial differential operator.

Did you know?

Partial differential (∂) is Unicode U+2202 (decimal 8706) — PARTIAL DIFFERENTIAL in Mathematical Operators. HTML5 provides &part; (also &PartialD;). Write &part;f/&part;x for a partial derivative. The URL slug says “difference,” but the character is the calculus differential symbol.

Next: Partially Recycled Paper Symbol

Learn the HTML entity for the partially recycled paper symbol — the next character in this entity sequence.

Next tutorial →

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