HTML Entity for Asterism (⁂)

What You'll Learn
How to insert the asterism (⁂, Unicode U+2042) in HTML. This is a single typographic character—traditionally three asterisks forming a triangle—used as a section divider or decorative break in books, articles, and newsletters.
It lives in the General Punctuation block. There is no standard named HTML entity; use ⁂, ⁂, or \2042 in CSS content.
⚡ Quick Reference — Asterism Entity
U+2042General Punctuation
⁂Hexadecimal reference
⁂Decimal reference
—None (use numeric refs)
Name Value
──────────── ──────────
Unicode U+2042
Hex code ⁂
HTML code ⁂
Named entity (none)
CSS code \2042Complete HTML Example
Hexadecimal, decimal, and CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2042";
}
</style>
</head>
<body>
<p>Asterism using Hexa Decimal: ⁂</p>
<p>Asterism using HTML Code: ⁂</p>
<p id="point">Asterism using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Numeric references for U+2042 are supported in all modern browsers:
👀 Live Preview
Typographic divider contexts:
⁂
Scene two begins here.
🧠 How It Works
Hexadecimal Code
⁂ encodes U+2042 using hex digits 2042.
Decimal HTML Code
⁂ is decimal 825810 = 0x2042.
CSS Entity
\2042 appears in CSS content for decorative rules or pseudo-elements.
No named entity
HTML does not define a short name for U+2042. Use numeric references in markup.
Same visual result
All methods yield ⁂. Unicode U+2042 is ASTERISM in General Punctuation (U+2000–U+206F).
Use Cases
The asterism (⁂) fits editorial and long-form layouts:
Between chapters, scenes, or major article sections.
Digital publishing that mirrors print typography.
Newsletters, pull quotes, and decorative mid-column rules.
Stanza breaks where a classical dinkus-style mark is desired.
Visual pause before a conclusion or sponsored block.
Keep real <section> / heading hierarchy; treat ⁂ as decoration, not structure alone.
One Unicode point for a widely recognized divider motif.
💡 Best Practices
Do
- Pick hex or decimal and stay consistent within one template
- Test body and heading fonts for a clear ⁂ outline
- Pair the glyph with semantic sections or headings
- Use
\2042only in CSScontent, not pasted into HTML as a raw backslash sequence - Prefer one U+2042 over three separate
*when you want the classic dinkus
Don’t
- Rely on the asterism alone to convey document structure to assistive tech
- Assume every webfont includes a polished U+2042
- Confuse U+2042 with the reference mark ※ (U+203B) or similar ornaments
- Mix random spacer GIFs and Unicode dividers without a design system
- Use a named entity that does not exist (there isn’t one for this code point)
Key Takeaways
Two HTML numeric forms render ⁂
⁂ ⁂CSS: \2042 in content
\2042U+2042 is ASTERISM (General Punctuation)
No standard named HTML entity for this character
Keep headings and landmarks; use ⁂ as a visual divider
❓ Frequently Asked Questions
⁂ (hex), ⁂ (decimal), or \2042 in CSS content. No named entity.U+2042 (decimal 8258). Unicode name: ASTERISM.\2042 is for stylesheets. Same code point.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
