Latin Small Letter R

r

Shortcodes

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

Unicode
U+0072
Alt Code
114
HTML Code
r
HEX Code
r
CSS Code
\0072
JS/JSON
\u0072
Unix/C/PHP/JAVA
0x72
URL-encode
r

Customize Latin Small Letter R

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

r
  

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

Insert in HTML

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

Add with CSS

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

Set it in JavaScript

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