HTML Entity for Versicle (℣)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2123

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

Unicode U+2123

Letterlike Symbols

Hex Code ℣

Hexadecimal reference

HTML Code ℣

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the Versicle symbol (℣) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2123";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2123;</p>
<p>Symbol (decimal): &#8483;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Versicle symbol (℣) is supported in modern browsers when the font includes Letterlike Symbols glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Versicle symbol rendered live in liturgical context:

Inline text℣ O Lord, open thou our lips.
Large glyph
Versicle & response℣ And our mouth shall show forth thy praise. ™ Glory be to the Father…
Unicode nameVERSICLE (liturgical mark)
Numeric refs&#x2123; &#8483; \2123

🧠 How It Works

1

Hexadecimal Code

&#x2123; uses the Unicode hexadecimal value 2123 to display the Versicle symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8483; uses the decimal Unicode value 8483 to display the same character. A common method for Letterlike Symbols.

HTML markup
3

CSS Entity

\2123 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

📖 Liturgical texts

Prayer books, breviaries, and formatted worship materials with versicle notation.

⛪ Religious websites

Church sites, parish pages, and faith-based platforms displaying liturgical content.

✝ Christian content

Bible studies, devotional pages, and religious documentation.

📄 Theological texts

Scholarly religious publications and formatted liturgical material.

🎵 Hymnals

Prayer books and hymnals with versicle-and-response patterns.

🔤 Religious typography

Specialized fonts and formatted content requiring the versicle character.

🌐 Faith-based publishing

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 \2123 inside HTML markup
  • Use HTML entities in JS (use \u2123 instead)
  • Expect a named HTML entity—none exists for ℣

Key Takeaways

1

Type ℣ directly, or use hex/decimal references

&#x2123; &#8483;
2

For CSS stylesheets, use the escape in the content property

\2123
3

Unicode U+2123 — VERSICLE (Letterlike Symbols)

4

Paired response symbol: ™ (U+2122, RESPONSE)

5

Previous: Uranus (♅)   Next: Vertical Bar

❓ Frequently Asked Questions

Use &#x2123; (hex), &#8483; (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 (™).
In liturgical texts, prayer books, religious websites, Christian content, hymnals, and theological documentation that uses versicle notation.
HTML entities (&#8483; or &#x2123;) 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.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Letterlike Symbols like ℣ use numeric codes (hexadecimal or decimal) because they belong to specialized Unicode blocks. Use &#8483; or &#x2123; in HTML, or \2123 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — liturgical symbols, letters, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful