Upside Down R

Unicode Name: LATIN LETTER SMALL CAPITAL TURNED R

Shortcodes

Copy and paste codes for Upside Down R symbol ᴚ to use in your websites, apps, blogs, and more.

Unicode
U+1D1A
HTML Code
ᴚ
HEX Code
ᴚ
CSS Code
\1D1A
JS/JSON
\u1D1A
Unix/C/PHP/JAVA
0x1D1A
URL-encode
%E1%B4%9A
copied

Customize Upside Down R Symbol

Customize ᴚ symbol as you like and download Upside Down 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.

                        
                    

How to add Upside Down R symbol in HTML, CSS, and JS?

Insert ᴚ Upside Down R using HTML

1. Copy-paste Upside Down R directly:
<span>ᴚ</span>
2. HTML Decimal Code:
<span>&#7450;</span>
3. Hexadecimal Code:
<span>&#x1D1A;</span>
Preview:

Add Upside Down R symbol with CSS

.upside-down-r::before {
    content: '\\1D1A';
}
Preview: Upside Down R

Upside Down R JavaScript Code

1. Direct Symbol:
document.querySelector('.upside-down-r').textContent = 'ᴚ';
2. Unicode Escape for ᴚ:
document.querySelector('.upside-down-r').textContent = '\u1D1A';
Preview: