HTML Entity for Two Asterisks Aligned Vertically (⁑)

What You'll Learn
How to display Two Asterisks Aligned Vertically (⁑) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2051 (TWO ASTERISKS ALIGNED VERTICALLY) in the General Punctuation block (U+2000–U+206F)—a typographic symbol used in annotations, decorative content, creative typography, and special formatting.
Render it with ⁑, ⁑, or CSS escape \2051. There is no named HTML entity for this symbol. Compare ⁂ (asterism, U+2042) or ∗ (asterisk operator, U+2217) for related typographic characters.
⚡ Quick Reference — Two Asterisks Aligned Vertically
U+2051General Punctuation block
⁑Hexadecimal reference
⁑Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2051
Hex code ⁑
HTML code ⁑
Named entity (none)
CSS code \2051
Related U+2042 = Asterism (⁂); U+2217 = Asterisk operator (∗)Complete HTML Example
This example demonstrates Two Asterisks Aligned Vertically (⁑) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2051";
}
</style>
</head>
<body>
<p>Two Asterisks Aligned Vertically using Hexadecimal: ⁑</p>
<p>Two Asterisks Aligned Vertically using HTML Code: ⁑</p>
<p id="point">Two Asterisks Aligned Vertically using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2051 is supported in modern browsers when rendered with a font that includes General Punctuation characters:
👀 Live Preview
See Two Asterisks Aligned Vertically (⁑) in typographic and decorative contexts:
🧠 How It Works
Hexadecimal Code
⁑ uses the Unicode hexadecimal value 2051 to display Two Asterisks Aligned Vertically. The x prefix indicates hexadecimal format.
Decimal HTML Code
⁑ uses the decimal Unicode value 8273 to display the same character.
CSS Entity
\2051 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ⁑. Unicode U+2051 in the General Punctuation block (U+2000–U+206F). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.
Use Cases
Two Asterisks Aligned Vertically (⁑) is commonly used in:
Artistic text, creative typography, and distinctive layout projects.
Footnotes, editorial marks, and reference callouts.
Graphic design, logos, and ornamental typography.
Formatted documents, layouts, and typographic compositions.
Design work and visual embellishments in web content.
Typography tutorials and special-character reference guides.
💡 Best Practices
Do
- Use
⁑or⁑consistently in markup - Use fonts that support General Punctuation (system UI, Segoe UI, Cambria)
- Add
aria-labelwith clear meaning (e.g. “footnote marker” or “decorative asterisks”) - Pair ⁑ with visible text in annotations and typographic contexts
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Expect a named entity—none exists for U+2051
- Confuse ⁑ (two asterisks aligned vertically) with ⁂ (asterism U+2042) or * (asterisk U+002A)
- Put CSS escape
\2051in HTML text nodes - Rely on the symbol alone in accessibility-critical interfaces
- Assume all decorative fonts include General Punctuation characters
Key Takeaways
Two HTML numeric references render ⁑
⁑ ⁑For CSS stylesheets, use the escape in the content property
\2051Unicode U+2051 — TWO ASTERISKS ALIGNED VERTICALLY
General Punctuation block (U+2000–U+206F)
Three methods, one glyph — no named HTML entity
❓ Frequently Asked Questions
⁑ (hex), ⁑ (decimal), or \2051 in CSS content. There is no named entity. All produce ⁑.U+2051 (TWO ASTERISKS ALIGNED VERTICALLY). General Punctuation block (U+2000–U+206F). Hex 2051, decimal 8273. A typographic symbol used in annotations, decorative content, and special formatting.⁑ or ⁑) go in markup. The CSS escape \2051 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.⁑ or ⁑ in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, stars, math operators, and more.
8 people found this page helpful
