HTML Entity for Bullet Operator (∙)

What You'll Learn
How to display the Bullet Operator (∙) in HTML using numeric references and CSS escapes. This character is U+2219 in the Mathematical Operators block (U+2200–U+22FF), approved in Unicode 1.1 (1993). In math it denotes the dot product or scalar multiplication; it appears as a small middle dot.
There is no named HTML entity for U+2219. Use ∙, ∙, or \2219 in CSS content. For the classic list bullet, use U+2022 (•) with • instead. Related: Middle Dot (·, U+00B7, ·).
⚡ Quick Reference — Bullet Operator
U+2219Mathematical Operators block
∙Hexadecimal reference
∙Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+2219
Hex code ∙
HTML code ∙
Named entity —
CSS code \2219Complete HTML Example
This example shows U+2219 using hexadecimal and decimal references plus a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2219";
}
</style>
</head>
<body>
<p>Bullet Operator using Hexa Decimal: ∙</p>
<p>Bullet Operator using HTML Code: ∙</p>
<p id="point">Bullet Operator using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2219 is widely supported in modern browsers when using a math-friendly font:
👀 Live Preview
See the Bullet Operator rendered live in different contexts:
•)🧠 How It Works
Hexadecimal Code
∙ uses the Unicode hexadecimal value 2219 to display the Bullet Operator. The x prefix indicates hexadecimal format.
Decimal HTML Code
∙ uses the decimal Unicode value 8729 to display the same character. Commonly used for Mathematical Operators symbols.
CSS Entity
\2219 is the CSS escape for U+2219, used in the content property of ::before or ::after (e.g. custom list markers).
Same visual result
All three methods produce the Bullet Operator glyph: ∙. Unicode U+2219 sits in the Mathematical Operators block (U+2200–U+22FF). For list bullets use • (U+2022 •).
Use Cases
The Bullet Operator (∙) commonly appears in the following scenarios:
Dot product in linear algebra, scalar multiplication, and algebraic expressions.
Physics and engineering docs showing inner products and vector operations.
Math tutorials, science content, and university coursework materials.
API specs, scientific papers, and formatted technical documentation.
Middle-dot style custom list markers via CSS ::before.
Navigation indicators and subtle dot separators in interface copy.
When used as list markers, pair with <ul>/<li> semantics.
💡 Best Practices
Do
- Use
∙or∙consistently in markup - Use
•(•) for standard unordered list bullets - Use math-friendly fonts for reliable operator rendering
- Apply
\2219in CSScontentfor custom markers - Declare
<meta charset="utf-8">in HTML documents
Don’t
- Confuse ∙ (U+2219, math operator) with • (U+2022, list bullet)
- Expect a named HTML entity—none exists for U+2219
- Use CSS escape
\2219inside HTML text nodes - Replace semantic
<ul>lists with bare dot characters - Mix entity styles randomly in one file
Key Takeaways
Two numeric references render ∙
∙ ∙CSS content escape
\2219U+2219 — Mathematical Operators block; no named entity
Primary use: dot product and scalar multiplication in math
For list bullets use • (U+2022 •) instead
❓ Frequently Asked Questions
∙ (hex), ∙ (decimal), or \2219 in CSS content. There is no named entity. For the classic list bullet, use • (U+2022).U+2219 (hex 2219, decimal 8729). Mathematical Operators block. Used for dot product in linear algebra and as a middle-dot style marker.• or semantic <ul>/<li>.\2219 belongs in stylesheets, typically in the content property of pseudo-elements. Both produce ∙.∙, ∙, or \2219 in CSS. The classic round list bullet is U+2022 with named entity •.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
