Latin Subscript Small Letter R

Shortcodes

Copy useful codes for latin subscript small letter r symbol ᵣ to use in websites, apps, blogs, and docs.

Unicode
U+1D63
HTML Code
ᵣ
HEX Code
ᵣ
CSS Code
\1D63
JS/JSON
\u1D63
Unix/C/PHP/JAVA
0x1D63
URL-encode
%E1%B5%A3

Customize Latin Subscript Small Letter R

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

  

How to use Latin Subscript Small Letter R Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᵣ</span>
HTML Code:
<span>&#7523;</span>
HEX Code:
<span>&#x1D63;</span>

Add with CSS

.latin-subscript-small-letter-r::before {
  content: '\\1D63';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-r').textContent = 'ᵣ';
copied