HTML Entity for Versicle (℣)

What You'll Learn
How to display the Versicle symbol (℣) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2123 (VERSICLE) in the Letterlike Symbols block—a liturgical mark used before a versicle line in prayer books, hymnals, and religious publications.
Render it with ℣, ℣, or CSS escape \2123. There is no named HTML entity. The paired liturgical response symbol is ™ (U+2122, RESPONSE). Pair ℣ with accessible text or aria-label when used as a standalone marker.
⚡ Quick Reference — Versicle Entity
U+2123Letterlike Symbols
℣Hexadecimal reference
℣Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+2123
Hex code ℣
HTML code ℣
Named entity (none)
CSS code \2123
Meaning Versicle (liturgical mark)
Related U+2122 = ™ (response symbol)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the Versicle symbol (℣) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2123";
}
</style>
</head>
<body>
<p>Symbol (hex): ℣</p>
<p>Symbol (decimal): ℣</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Versicle symbol (℣) is supported in modern browsers when the font includes Letterlike Symbols glyphs:
👀 Live Preview
See the Versicle symbol rendered live in liturgical context:
🧠 How It Works
Hexadecimal Code
℣ uses the Unicode hexadecimal value 2123 to display the Versicle symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
℣ uses the decimal Unicode value 8483 to display the same character. A common method for Letterlike Symbols.
CSS Entity
\2123 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ℣. Unicode U+2123 sits in Letterlike Symbols (U+2100–U+214F). The paired response symbol is U+2122 (™).
Use Cases
The Versicle symbol (℣) is commonly used in:
Prayer books, breviaries, and formatted worship materials with versicle notation.
Church sites, parish pages, and faith-based platforms displaying liturgical content.
Bible studies, devotional pages, and religious documentation.
Scholarly religious publications and formatted liturgical material.
Prayer books and hymnals with versicle-and-response patterns.
Specialized fonts and formatted content requiring the versicle character.
Church bulletins, religious publishing, and liturgical web apps.
💡 Best Practices
Do
- Use
aria-label="Versicle"when the symbol stands alone - Place ℣ before the versicle line in liturgical formatting
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Letterlike Symbols
- Pair with ™ (response) where versicle-and-response patterns apply
Don’t
- Use the symbol outside clear liturgical or religious context
- Mix entity styles randomly in one file
- Use CSS escape
\2123inside HTML markup - Use HTML entities in JS (use
\u2123instead) - Expect a named HTML entity—none exists for ℣
Key Takeaways
Type ℣ directly, or use hex/decimal references
℣ ℣For CSS stylesheets, use the escape in the content property
\2123Unicode U+2123 — VERSICLE (Letterlike Symbols)
Paired response symbol: ™ (U+2122, RESPONSE)
Previous: Uranus (♅) Next: Vertical Bar
❓ Frequently Asked Questions
℣ (hex), ℣ (decimal), or \2123 in CSS content. There is no named HTML entity. In UTF-8 you can also type ℣ directly.U+2123 (VERSICLE). Letterlike Symbols block. Hex 2123, decimal 8483. Used in liturgical texts and religious notation. The paired response symbol is U+2122 (™).℣ or ℣) go directly in markup. The CSS escape \2123 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.℣ or ℣ in HTML, or \2123 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — liturgical symbols, letters, and more.
8 people found this page helpful
