HTML Entity for Increment (∆)

What You'll Learn
How to display the Increment symbol (∆) in HTML using hexadecimal, decimal, and CSS escape methods. In math and science it is often called Delta—for difference or change (e.g. ∆x, ∆t)—and appears in calculus and physics as the Laplace operator.
This character is U+2206 (INCREMENT) in the Mathematical Operators block (U+2200–U+22FF). Use ∆, ∆, or CSS \2206. There is no named HTML entity—use numeric codes or CSS.
⚡ Quick Reference — Increment
U+2206Mathematical Operators
∆Hexadecimal reference
∆Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2206
Hex code ∆
HTML code ∆
Named entity (none)
CSS code \2206
Meaning Increment / Delta (difference, change)
CSS note \2206 or \02206 in content propertyComplete HTML Example
This example demonstrates ∆ using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2206";
}
</style>
</head>
<body>
<p>Increment using Hexadecimal: ∆</p>
<p>Increment using Decimal: ∆</p>
<p id="point">Increment using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Increment symbol (∆) is supported in all modern browsers when using numeric HTML entities or CSS escapes:
👀 Live Preview
See ∆ rendered live in scientific notation:
🧠 How It Works
Hexadecimal Code
∆ uses Unicode hexadecimal 2206 to display ∆ in HTML markup.
Decimal HTML Code
∆ uses decimal Unicode value 8710 for the same character.
CSS Entity
\2206 (or \02206) is used in CSS, typically in the content property of pseudo-elements such as ::after.
Same visual result
All three methods produce ∆. Unicode U+2206 is INCREMENT in Mathematical Operators—often used as Delta for change. No named entity. Next: Indian Rupee Sign.
Use Cases
The Increment symbol (∆) commonly appears in:
Difference or change (∆x, ∆y, ∆t) in algebra, calculus, and discrete math.
Finite differences, increments, or the Laplace operator in equations.
Change in position, time, energy, or other physical quantities in formulas.
Change in concentration, ∆H (enthalpy), ∆S (entropy), and state functions.
APIs or tutorials referencing increment, delta, or change in variable names or formulas.
Math, physics, chemistry, and engineering course materials.
💡 Best Practices
Do
- Use
∆or∆in HTML (no named entity) - Pick U+2206 (increment operator) for math Delta; know when U+0394 (Greek letter) is required
- Keep one numeric method (hex or decimal) consistent per document
- Provide context (e.g. “∆x = change in x”) in mixed content
- Declare UTF-8 with
<meta charset="utf-8"> - Test rendering with math-friendly fonts across browsers
Don’t
- Expect a named HTML entity for U+2206
- Put CSS escape
\2206in HTML text nodes - Confuse U+2206 (increment) with U+0394 (Greek capital delta) when semantics matter
- Mix hex and decimal styles randomly in one file
- Assume every font renders U+2206 identically to U+0394
Key Takeaways
Two HTML numeric references plus CSS insert ∆
∆ ∆For CSS, use \2206 in the content property
Unicode U+2206 — INCREMENT (often called Delta)
No named entity—use hex or decimal
Next: Indian Rupee Sign
❓ Frequently Asked Questions
∆ (hex), ∆ (decimal), or \2206 in CSS content. There is no named HTML entity. All three methods render ∆.U+2206 (INCREMENT). Mathematical Operators block (U+2200–U+22FF). Hex 2206, decimal 8710. Used as Delta for difference or change and in the Laplace operator.∆ or ∆) go in markup. The CSS escape \2206 belongs in stylesheets, typically in the content property of pseudo-elements. Both render ∆.∆ or ∆) or CSS \2206—standard for many math operators in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
