Latin Small Letter R

r

Shortcodes

Copy and paste codes for Latin Small Letter R symbol r to use in your websites, apps, blogs, and more.

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

Customize r Symbol

Customize r symbol as you like and download Latin Small Letter R as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
r
 

How to type Latin Small Letter R symbol r ?

Using Latin Small Letter R Alt Code:

You can type the Latin Small Letter R symbol r using your keyboard by using the Alt Code for Latin Small Letter R. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the Alt code 114 using the Numpad.
  3. Release the Alt key.

This will make the r appear on your screen.

Alternative Methods:

  • You can try inserting Latin Small Letter R symbol using these system tools:
    • Mac Character Viewer (Control + Command + Space)
    • Windows Emoji/Symbol Picker (Win + .)
    • Windows Character Map (charmap.exe)
  • Note: These tools may not include all Unicode symbols
  • Copy and paste the r symbol directly from this website.
  • Use provided codes for Latin Small Letter R symbol where they are supported.

How to add Latin Small Letter R symbol in HTML, CSS, and JS?

HTML Methods:

1. Direct Symbol:
<span>r</span>
2. HTML Decimal Code:
<span>&#114;</span>
3. Hexadecimal Code:
<span>&#x0072;</span>
Preview: r

CSS Method:

.symbol::before {
    content: '\\072';
}
Preview: Symbol

JavaScript Methods:

1. Direct Symbol:
document.querySelector('.symbol').textContent = 'r';
2. Unicode Escape:
document.querySelector('.symbol').textContent = '\u0072';
Preview: r