Script Capital R

Shortcodes

Copy useful codes for script capital r symbol ℛ to use in websites, apps, blogs, and docs.

Unicode
U+211B
HTML Code
ℛ
HEX Code
ℛ
CSS Code
\211B
JS/JSON
\u211B
Unix/C/PHP/JAVA
0x211B
URL-encode
%E2%84%9B

Customize Script Capital R

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

  

How to use Script Capital R Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ℛ</span>
HTML Code:
<span>&#8475;</span>
HEX Code:
<span>&#x211B;</span>

Add with CSS

.script-capital-r::before {
  content: '\\211B';
}

Set it in JavaScript

document.querySelector('.script-capital-r').textContent = 'ℛ';
copied