Mathematical Bold Small R

๐ซ

Shortcodes

Copy useful codes for mathematical bold small r symbol ๐ซ to use in websites, apps, blogs, and docs.

Unicode
U+1D42B
HTML Code
𝐫
HEX Code
𝐫
CSS Code
\1D42B
JS/JSON
\u1D42B
Unix/C/PHP/JAVA
0x1D42B
URL-encode
%F0%9D%90%AB

Customize Mathematical Bold Small R

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

๐ซ
  

How to use Mathematical Bold Small R Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ซ</span>
HTML Code:
<span>&#119851;</span>
HEX Code:
<span>&#x1D42B;</span>

Add with CSS

.mathematical-bold-small-r::before {
  content: '\\1D42B';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-small-r').textContent = '๐ซ';
copied