Fullwidth Latin Capital Letter R

Shortcodes

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

Unicode
U+FF32
HTML Code
R
HEX Code
R
CSS Code
\FF32
JS/JSON
\uFF32
Unix/C/PHP/JAVA
0xFF32
URL-encode
%EF%BC%B2

Customize Fullwidth Latin Capital Letter R

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

  

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

Insert in HTML

1. Direct symbol:
<span>R</span>
HTML Code:
<span>&#65330;</span>
HEX Code:
<span>&#xFF32;</span>

Add with CSS

.fullwidth-latin-capital-letter-r::before {
  content: '\\FF32';
}

Set it in JavaScript

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