HTML Entity for Response (℟)

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

What You'll Learn

How to display the Response symbol (℟) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+211F (RESPONSE) in the Letterlike Symbols block (U+2100–U+214F)—a rare letterlike mark used in historical correspondence and specialized typographic contexts.

Render it with ℟, ℟, or CSS escape \211F. There is no named HTML entity. Do not confuse ℟ with U+211E (℞, prescription take / Rx) or U+2113 (ℓ, script small l).

⚡ Quick Reference — Response Symbol

Unicode U+211F

Letterlike Symbols (U+2100–U+214F)

Hex Code ℟

Hexadecimal reference

HTML Code ℟

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+211F
Hex code       ℟
HTML code      ℟
Named entity   (none)
CSS code       \211F
Meaning        Response (letterlike symbol)
Related        U+211E = prescription take (℞)
               U+2113 = script small l (ℓ)
Block          Letterlike Symbols (U+2100–U+214F)
1

Complete HTML Example

A simple example showing ℟ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\211F";
  }
 </style>
</head>
<body>
<p>Response (hex): &#x211F;</p>
<p>Response (decimal): &#8479;</p>
<p id="point">Response (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Response symbol (℟) is widely supported in all modern browsers:

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

👀 Live Preview

See the Response symbol (℟) in typographic contexts:

Single symbol
Inline text ℟ Response mark in correspondence
Symbol reference U+211F ℟ — RESPONSE
Not the same as Prescription ℞  |  Script l ℓ
Numeric refs &#x211F; &#8479; \211F

🧠 How It Works

1

Hexadecimal Code

&#x211F; uses the Unicode hexadecimal value 211F to display the Response symbol.

HTML markup
2

Decimal HTML Code

&#8479; uses the decimal Unicode value 8479 for the same character.

HTML markup
3

CSS Entity

\211F is used in CSS stylesheets in the content property of pseudo-elements for icons or labels.

CSS stylesheet
=

Response symbol result

All three methods render . Unicode U+211F in Letterlike Symbols. Next: Retroflex Click.

Use Cases

The Response symbol (℟) is commonly used in:

📖 Historical typography

Letterlike marks in correspondence and archival document reproductions.

📝 Unicode references

Character pickers, entity documentation, and Letterlike Symbols guides.

🎓 Education

Typography courses covering rare letterlike and specialized symbols.

📄 Digital archives

Digitized texts that preserve historical response or correspondence marks.

💻 Developer tools

Symbol tables, font testers, and HTML entity lookup utilities.

♿ Accessibility

Pair ℟ with descriptive text; add aria-label when used as an icon.

💡 Best Practices

Do

  • Use &#x211F; or &#8479; for inline Response marks
  • Set <meta charset="utf-8"> for reliable rendering
  • Verify the symbol displays correctly in your chosen font
  • Use the correct character—℟ for RESPONSE, not ℞ (Rx)
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ℟ with prescription take ℞ or other letterlike symbols
  • Use padded Unicode notation like U+0211F—the correct value is U+211F
  • Use CSS escape \211F in HTML text nodes
  • Assume every font includes Letterlike Symbols—test rendering
  • Use ℟ without context when the meaning is not clear to readers

Key Takeaways

1

Two HTML numeric references plus CSS for U+211F

&#x211F; &#8479;
2

For CSS stylesheets, use \211F in the content property

3

Unicode U+211F — RESPONSE (letterlike symbol)

4

Distinct from prescription take ℞ and script small l ℓ

❓ Frequently Asked Questions

Use &#x211F; (hex), &#8479; (decimal), or \211F in CSS content. There is no named entity. All three render ℟.
U+211F (RESPONSE). Letterlike Symbols block (U+2100–U+214F). Hex 211F, decimal 8479.
No. ℟ (U+211F) is RESPONSE. ℞ (U+211E) is PRESCRIPTION TAKE, often used as Rx. They are different Unicode characters.
For letterlike symbol references, historical correspondence typography, Unicode documentation, and specialized content requiring the RESPONSE character.
Named HTML entities cover a subset of common characters. U+211F uses numeric hex or decimal codes or CSS escapes, which is standard for rare Letterlike Symbols.

Explore More HTML Entities!

Discover 1500+ HTML character references — letterlike symbols, punctuation, math operators, 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