Greek Subscript Small Letter Rho

Shortcodes

Copy useful codes for greek subscript small letter rho symbol ᵨ to use in websites, apps, blogs, and docs.

Unicode
U+1D68
HTML Code
ᵨ
HEX Code
ᵨ
CSS Code
\1D68
JS/JSON
\u1D68
Unix/C/PHP/JAVA
0x1D68
URL-encode
%E1%B5%A8

Customize Greek Subscript Small Letter Rho

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵨ</span>
HTML Code:
<span>&#7528;</span>
HEX Code:
<span>&#x1D68;</span>

Add with CSS

.greek-subscript-small-letter-rho::before {
  content: '\\1D68';
}

Set it in JavaScript

document.querySelector('.greek-subscript-small-letter-rho').textContent = 'ᵨ';
copied