HTML Entity for Response (℟)

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
U+211FLetterlike Symbols (U+2100–U+214F)
℟Hexadecimal reference
℟Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing ℟ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\211F";
}
</style>
</head>
<body>
<p>Response (hex): ℟</p>
<p>Response (decimal): ℟</p>
<p id="point">Response (CSS): </p>
</body>
</html>🌐 Browser Support
The Response symbol (℟) is widely supported in all modern browsers:
👀 Live Preview
See the Response symbol (℟) in typographic contexts:
🧠 How It Works
Hexadecimal Code
℟ uses the Unicode hexadecimal value 211F to display the Response symbol.
Decimal HTML Code
℟ uses the decimal Unicode value 8479 for the same character.
CSS Entity
\211F is used in CSS stylesheets in the content property of pseudo-elements for icons or labels.
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:
Letterlike marks in correspondence and archival document reproductions.
Character pickers, entity documentation, and Letterlike Symbols guides.
Typography courses covering rare letterlike and specialized symbols.
Digitized texts that preserve historical response or correspondence marks.
Symbol tables, font testers, and HTML entity lookup utilities.
Pair ℟ with descriptive text; add aria-label when used as an icon.
💡 Best Practices
Do
- Use
℟or℟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
\211Fin HTML text nodes - Assume every font includes Letterlike Symbols—test rendering
- Use ℟ without context when the meaning is not clear to readers
Key Takeaways
Two HTML numeric references plus CSS for U+211F
℟ ℟For CSS stylesheets, use \211F in the content property
Unicode U+211F — RESPONSE (letterlike symbol)
Distinct from prescription take ℞ and script small l ℓ
Previous: Registered Trade Mark (®) Next: Retroflex Click
❓ Frequently Asked Questions
℟ (hex), ℟ (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.Explore More HTML Entities!
Discover 1500+ HTML character references — letterlike symbols, punctuation, math operators, and more.
8 people found this page helpful
