Latin Small Letter R With Acute

ŕ

Shortcodes

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

Unicode
U+0155
HTML Code
ŕ
HEX Code
ŕ
CSS Code
\0155
JS/JSON
\u0155
Unix/C/PHP/JAVA
0x155
URL-encode
%C5%95

Customize Latin Small Letter R With Acute

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

ŕ
  

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

Insert in HTML

1. Direct symbol:
<span>ŕ</span>
HTML Code:
<span>&#341;</span>
HEX Code:
<span>&#x0155;</span>

Add with CSS

.latin-small-letter-r-with-acute::before {
  content: '\\0155';
}

Set it in JavaScript

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