Latin Capital Letter R With Acute

Ŕ

Shortcodes

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

Unicode
U+0154
HTML Code
Ŕ
HEX Code
Ŕ
CSS Code
\0154
JS/JSON
\u0154
Unix/C/PHP/JAVA
0x154
URL-encode
%C5%94

Customize Latin Capital Letter R With Acute

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

Ŕ
  

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

Insert in HTML

1. Direct symbol:
<span>Ŕ</span>
HTML Code:
<span>&#340;</span>
HEX Code:
<span>&#x0154;</span>

Add with CSS

.latin-capital-letter-r-with-acute::before {
  content: '\\0154';
}

Set it in JavaScript

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