HTML Entity for Versicle (℣)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2123

What Is Versicle?

Versicle (℣) is the Unicode character at U+2123 in Letterlike Symbols. Official name: VERSICLE — a liturgical mark for the leader’s line in prayer and worship texts.

Remember
Character     ℣
Unicode       U+2123
Hex entity    ℣
Decimal       ℣
CSS escape    \2123
Named entity  (none)
Not the same  ℟ · V · †

Prefer ℣ or ℣ in HTML markup. You can also type ℣ in UTF-8. There is no named entity. Pair it with response (℟) when showing a versicle-and-response exchange.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character℣HTML text (UTF-8)
Hex entity℣HTML markup (preferred)
Decimal entity℣HTML markup
CSS escape\2123Stylesheet content
Named entity—Not defined in HTML5
MeaningLeader’s liturgical linePrayer / worship text

When to Use Which

SituationUse
Versicle / leader’s line (℣)℣ or ℣
Response / reply (℟)℟ (℟)
Plain capital VV (U+0056)
Dagger footnote mark (†)† (†)
Latin cross († style religious)✝ (✝)
Generated text via ::before / ::aftercontent: "\2123"

Live Preview

Versicle rendered alone, in a short liturgy line, and next to response.

Large glyph ℣
Liturgy line ℣ O Lord, open thou our lips.
Compared ℣  |  ℟  |  V  |  †
Hint Compare: Versicle ℣ | Response ℟ | Letter V | Dagger †
With entities Hex: ℣ | Decimal: ℣

Complete HTML Example

One page that shows the symbol with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ℣, plus a short liturgical example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Versicle Symbol (℣)</title>
  <style>
    #point::after {
      content: "\2123";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2123;</p>
  <p>Using HTML Code: &#8483;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ℣</p>
  <p>℣ O Lord, open thou our lips.</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2123 → &#x2123; in HTML. The browser turns it into ℣.

2. Decimal: same code point as 8483 → &#8483;. Same result as hex.

3. CSS: use \2123 in content (not an HTML entity). #point::after appends that ℣ after the paragraph text.

4. Typed / liturgy: paste ℣ in UTF-8, then follow it with the spoken line so the mark has context.

Pitfalls & Tips

Common mistakes when working with U+2123.

Named

No &versicle; name

HTML5 has no named entity for U+2123. Use &#x2123; or &#8483; — do not invent a name.

vs ℟

Not the response

℟ is response (U+211F) — the reply line. ℣ is versicle — the leader’s line. Use both correctly as a pair.

vs V

Not the letter V

ASCII V is a different character. Versicle is a specialized letterlike liturgical mark.

vs †

Not a dagger

† (&dagger;) is a footnote or reference mark. Do not use it as a stand-in for versicle.

Fonts

Glyph depends on font

Some fonts omit Letterlike Symbols. Prefer a font that covers U+2123 when liturgical markup must look correct.

CSS vs HTML

Do not mix escapes

\2123 belongs in CSS strings. &#x2123; / &#8483; belong in HTML.

A11y

Say “versicle”

Screen readers may announce a generic symbol. Add nearby text such as “Versicle:” or expand the spoken line so meaning is clear.

Browser Support

The versicle symbol (U+2123) and its entity forms (&#x2123;, &#8483;, CSS \\2123) are supported in all mainstream browsers. Visible letterlike glyphs depend on fonts that include Letterlike Symbols.

✓ Universal support

Versicle (&#x2123;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2123 Full support

Bottom line: Prefer &#x2123; or &#8483; in HTML. Use \\2123 only inside CSS content. Pair with ℟ (response) for liturgy exchanges.

Key Takeaways

  • Unicode: versicle is U+2123 (decimal 8483) — glyph ℣.
  • HTML: use &#x2123; or &#8483; — no named entity in HTML5.
  • CSS: use \2123 inside content for generated text.
  • Meaning: ℣ is versicle — not ℟ (response), not V, not † (dagger).

One line: U+2123 → &#x2123; / &#8483; / CSS \2123.

Frequently Asked Questions

Use &#x2123; (hex), &#8483; (decimal), type ℣ directly in UTF-8, or the CSS escape \2123 in content. There is no named HTML entity for U+2123.
U+2123 (VERSICLE). Hex 2123, decimal 8483. It belongs to Letterlike Symbols (U+2100–U+214F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#8483; or &#x2123;.
Use it in liturgical, prayer-book, or religious text to mark the leader’s versicle line — often paired with response ℟ for the reply.
Versicle (U+2123, ℣) marks the leader’s line. Response (U+211F, ℟) marks the congregation’s reply. They are related but different characters.
HTML entities (&#8483; or &#x2123;) go in markup. The CSS escape \2123 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Versicle (℣) is Unicode U+2123 (decimal 8483) — official name VERSICLE in Letterlike Symbols (U+2100–U+214F). HTML5 has no named entity — use &#x2123; or &#8483;. In liturgy it marks the leader’s line; the congregation’s reply uses response ℟ (U+211F). Pair the glyph with clear wording for accessibility.

Next: Vertical Bar

Learn the HTML entity for the vertical bar / pipe (U+007C).

Continue tutorial →

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