Mathematical Fraktur Small R

๐”ฏ

Shortcodes

Copy useful codes for mathematical fraktur small r symbol ๐”ฏ to use in websites, apps, blogs, and docs.

Unicode
U+1D52F
HTML Code
𝔯
HEX Code
𝔯
CSS Code
\1D52F
JS/JSON
\u1D52F
Unix/C/PHP/JAVA
0x1D52F
URL-encode
%F0%9D%94%AF

Customize Mathematical Fraktur Small R

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

๐”ฏ
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ฏ</span>
HTML Code:
<span>&#120111;</span>
HEX Code:
<span>&#x1D52F;</span>

Add with CSS

.mathematical-fraktur-small-r::before {
  content: '\\1D52F';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-r').textContent = '๐”ฏ';
copied