HTML Entity for Nabla (∇)

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

What You'll Learn

How to display the Nabla symbol (∇) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2207 (NABLA) in the Mathematical Operators block (U+2200–U+22FF)—the del operator used for gradients, divergence, curl, and Laplacian in vector calculus, physics, and engineering.

Render it with the named entity ∇, ∇, ∇, or CSS escape \2207. Also called the del or gradient operator in STEM notation on the web.

⚡ Quick Reference — Nabla

Unicode U+2207

Mathematical Operators

Hex Code ∇

Hexadecimal reference

HTML Code ∇

Decimal reference

Named Entity ∇

Most readable in math markup

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2207
Hex code       ∇
HTML code      ∇
Named entity   ∇
CSS code       \2207
Meaning        Del / nabla (vector differential operator)
Common uses    ∇f, ∇·F, ∇×F, ∇²
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2207";
  }
 </style>
</head>
<body>
<p>Nabla using Hexadecimal: &#x2207;</p>
<p>Nabla using HTML Code: &#8711;</p>
<p>Nabla using Named Entity: &nabla;</p>
<p id="point">Nabla using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2207 is widely supported wherever Unicode Mathematical Operators render correctly:

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

👀 Live Preview

See Nabla (∇) in vector calculus and physics contexts:

Gradient f = grad f
Divergence ∇·F
Curl ∇×F
Large glyph
Entity refs &nabla; &#x2207; &#8711; \2207

🧠 How It Works

1

Named Entity

&nabla; is the HTML named entity for Nabla—often preferred in readable vector calculus markup.

HTML markup
2

Hexadecimal Code

&#x2207; uses the Unicode hexadecimal value 2207. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2207 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: . Unicode U+2207 in Mathematical Operators. Also known as the del operator.

Use Cases

The Nabla symbol (∇) is commonly used in:

🔢 Vector calculus

Gradient, divergence, curl, and Laplacian notation.

⚡ Physics

Electromagnetism, fluid dynamics, and field equations.

🛠 Engineering

Heat transfer, stress analysis, and simulation docs.

📚 Academia

Multivariable calculus textbooks and lecture notes.

🎓 STEM education

Online courses and interactive math/physics content.

🌐 Reference guides

Unicode charts and HTML entity documentation.

💡 Best Practices

Do

  • Use &nabla; for readable del-operator markup
  • Pair with dot (·) and × for divergence and curl notation
  • Use fonts that cover Mathematical Operators (Cambria Math, etc.)
  • Add aria-label (e.g. “nabla” or “del operator”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Substitute an upside-down triangle drawing for ∇ in formal notation
  • Assume HTML entities perform vector calculus computation
  • Put CSS escape \2207 in HTML text nodes
  • Mix entity styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Three HTML references plus CSS all render ∇

&#x2207; &#8711; &nabla;
2

For CSS stylesheets, use the escape in the content property

\2207
3

Unicode U+2207 — NABLA (del operator)

4

&nabla; is the standard named entity

5

Common forms: ∇f, ∇·F, ∇×F, ∇²

❓ Frequently Asked Questions

Use &nabla; (named), &#x2207; (hex), &#8711; (decimal), or \2207 in CSS content. All produce ∇.
U+2207 (NABLA). Mathematical Operators block (U+2200–U+22FF). Hex 2207, decimal 8711. Named entity: &nabla;.
When documenting the del operator in vector calculus, physics, engineering, and STEM educational content on the web.
Nabla (∇) denotes the vector differential operator. Common forms include ∇f (gradient), ∇·F (divergence), ∇×F (curl), and ∇² (Laplacian).
HTML entities (&#8711;, &#x2207;, or &nabla;) go directly in markup. The CSS escape \2207 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

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