Fullwidth Latin Small Letter R

Shortcodes

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

Unicode
U+FF52
HTML Code
r
HEX Code
r
CSS Code
\FF52
JS/JSON
\uFF52
Unix/C/PHP/JAVA
0xFF52
URL-encode
%EF%BD%92

Customize Fullwidth Latin Small Letter R

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

  

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

Insert in HTML

1. Direct symbol:
<span>r</span>
HTML Code:
<span>&#65362;</span>
HEX Code:
<span>&#xFF52;</span>

Add with CSS

.fullwidth-latin-small-letter-r::before {
  content: '\\FF52';
}

Set it in JavaScript

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