HTML Entity for Hyphen Bullet (⁃)

What You'll Learn
How to display the Hyphen Bullet (⁃) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2043 (HYPHEN BULLET) in the General Punctuation block (U+2000–U+206F). It looks like a hyphen and is designed for use as a list bullet.
Render it with ⁃, ⁃, ⁃, or CSS escape \2043. Prefer ⁃ in list markup or use the CSS escape in ::before or ::marker for consistent hyphen-style bullets.
⚡ Quick Reference — Hyphen Bullet
U+2043General Punctuation
⁃Hexadecimal reference
⁃Decimal reference
⁃⁃ — readable option
Name Value
──────────── ──────────
Unicode U+2043
Hex code ⁃
HTML code ⁃
Named entity ⁃
CSS code \2043
Meaning Hyphen-style list bullet
CSS note \2043 or \02043 in content propertyComplete HTML Example
This example demonstrates the Hyphen Bullet (⁃) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2043";
}
</style>
</head>
<body>
<p>Hyphen Bullet using Hexadecimal: ⁃</p>
<p>Hyphen Bullet using Decimal: ⁃</p>
<p>Hyphen Bullet using Named Entity: ⁃</p>
<p id="point">Hyphen Bullet using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Hyphen Bullet (⁃) is supported in all modern browsers; most fonts include General Punctuation (U+2000–U+206F):
👀 Live Preview
See the Hyphen Bullet (⁃) as a list marker and in typography:
⁃ Second item
🧠 How It Works
Hexadecimal Code
⁃ uses the Unicode hexadecimal value 2043 to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⁃ uses the decimal Unicode value 8259 to display the same character.
Named Entity
⁃ is the named entity for ⁃—easy to remember and clear in source HTML.
CSS Entity
\2043 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ⁃. Unicode U+2043 is in General Punctuation. Next: Hyphenation Point.
Use Cases
The Hyphen Bullet (⁃) is commonly used in:
Use as a list marker when you want a hyphen-style bullet instead of a dot.
Clean lists with ⁃ or CSS ::before / ::marker content.
Article lists, sidebars, and editorial content with hyphen bullets.
Subtle separators or bullets in menu items and nav lists.
Match a site-wide design that uses hyphen-style bullets.
Format notes, outlines, or step lists with a consistent bullet character.
💡 Best Practices
Do
- Use
⁃for readable list markup in HTML - Use CSS
content: "\2043"in::markeror::beforefor list bullets - Keep one method (named, hex, or decimal) consistent across the document
- Prefer
<ul>/<ol>with CSS markers for accessible list structure - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Put CSS escape
\2043in HTML text nodes - Use
⁃for compound words—use‐(U+2010) instead - Confuse hyphen bullet (⁃) with en dash (–) or em dash (—)
- Assume the keyboard hyphen (-) is the same as a list bullet
- Use ⁃ for non-list content without proper semantics
Key Takeaways
Three HTML references plus CSS all render ⁃
⁃ ⁃ ⁃For CSS stylesheets, use the escape in the content property
\2043Unicode U+2043 — HYPHEN BULLET
Prefer ⁃ for readability in HTML source
Next: Hyphenation Point
❓ Frequently Asked Questions
⁃ (hex), ⁃ (decimal), ⁃ (named), or \2043 in CSS content. All produce ⁃.U+2043 (HYPHEN BULLET). General Punctuation block (U+2000–U+206F). Hex 2043, decimal 8259. Named entity: ⁃. Used as a hyphen-style list bullet.⁃ (U+2043) is the hyphen bullet for list markers. A regular hyphen (- or ‐, U+2010) is for word hyphenation. Use ⁃ for bullets; use a hyphen when joining words.list-style-type: none and add the character via ::before with content: "\2043", or use ::marker with the escaped form. This styles hyphen bullets without repeating the entity in every list item.⁃ is used directly in HTML content. The CSS escape \2043 belongs in stylesheets, typically in the content property of pseudo-elements. Both render ⁃.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, dashes, symbols, and more.
8 people found this page helpful
