Latin Small Letter R With Cedilla

ŗ

Shortcodes

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

Unicode
U+0157
HTML Code
ŗ
HEX Code
ŗ
CSS Code
\0157
JS/JSON
\u0157
Unix/C/PHP/JAVA
0x157
URL-encode
%C5%97

Customize Latin Small Letter R With Cedilla

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

ŗ
  

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

Insert in HTML

1. Direct symbol:
<span>ŗ</span>
HTML Code:
<span>&#343;</span>
HEX Code:
<span>&#x0157;</span>

Add with CSS

.latin-small-letter-r-with-cedilla::before {
  content: '\\0157';
}

Set it in JavaScript

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