Response

Shortcodes

Copy and paste codes for Response symbol ℟ to use in your websites, apps, blogs, and more.

Unicode
U+211F
HTML Code
℟
HEX Code
℟
CSS Code
\211F
JS/JSON
\u211F
Unix/C/PHP/JAVA
0x211F
URL-encode
%E2%84%9F
copied

Customize Response Symbol

Customize ℟ symbol as you like and download Response as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Response symbol in HTML, CSS, and JS?

Insert ℟ Response using HTML

1. Copy-paste Response directly:
<span>℟</span>
2. HTML Decimal Code:
<span>&#8479;</span>
3. Hexadecimal Code:
<span>&#x211F;</span>
Preview:

Add Response symbol with CSS

.response::before {
    content: '\\211F';
}
Preview: Response

Response JavaScript Code

1. Direct Symbol:
document.querySelector('.response').textContent = '℟';
2. Unicode Escape for ℟:
document.querySelector('.response').textContent = '\u211F';
Preview: