Mathematical Double-struck Small R

๐•ฃ

Shortcodes

Copy useful codes for mathematical double-struck small r symbol ๐•ฃ to use in websites, apps, blogs, and docs.

Unicode
U+1D563
HTML Code
𝕣
HEX Code
𝕣
CSS Code
\1D563
JS/JSON
\u1D563
Unix/C/PHP/JAVA
0x1D563
URL-encode
%F0%9D%95%A3

Customize Mathematical Double-struck Small R

Customize ๐•ฃ, download it as SVG or PNG, or copy the generated HTML snippet.

๐•ฃ
  

How to use Mathematical Double-struck Small R Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐•ฃ</span>
HTML Code:
<span>&#120163;</span>
HEX Code:
<span>&#x1D563;</span>

Add with CSS

.mathematical-double-struck-small-r::before {
  content: '\\1D563';
}

Set it in JavaScript

document.querySelector('.mathematical-double-struck-small-r').textContent = '๐•ฃ';
copied