Upside Down Small r

Unicode Name: LATIN SMALL LETTER TURNED R

ɹ

Shortcodes

Copy useful codes for upside down small r symbol ɹ to use in websites, apps, blogs, and docs.

Unicode
U+0279
HTML Code
ɹ
HEX Code
ɹ
CSS Code
\0279
JS/JSON
\u0279
Unix/C/PHP/JAVA
0x279
URL-encode
%C9%B9

Customize Upside Down Small r

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

ɹ
  

How to use Upside Down Small r Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ɹ</span>
HTML Code:
<span>&#633;</span>
HEX Code:
<span>&#x0279;</span>

Add with CSS

.upside-down-small-r::before {
  content: '\\0279';
}

Set it in JavaScript

document.querySelector('.upside-down-small-r').textContent = 'ɹ';
copied