Response

Shortcodes

Copy useful codes for response symbol ℟ to use in websites, apps, blogs, and docs.

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

Customize Response

Customize ℟, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Response Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>℟</span>
HTML Code:
<span>&#8479;</span>
HEX Code:
<span>&#x211F;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.response').textContent = '℟';
copied