Greek Capital Letter Rho

Ρ

Shortcodes

Copy useful codes for greek capital letter rho symbol Ρ to use in websites, apps, blogs, and docs.

Unicode
U+03A1
HTML Code
Ρ
HTML Entity
Ρ
HEX Code
Ρ
CSS Code
\03A1
JS/JSON
\u03A1
Unix/C/PHP/JAVA
0x03A1
URL-encode
%CE%A1

Customize Greek Capital Letter Rho

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

Ρ
  

How to use Greek Capital Letter Rho Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ρ</span>
HTML Code:
<span>&#929;</span>
HTML Entity:
<span>&Rho;</span>
HEX Code:
<span>&#x3A1;</span>

Add with CSS

.greek-capital-letter-rho::before {
  content: '\\03A1';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-rho').textContent = 'Ρ';
copied