Modifier Letter Small Chi

Shortcodes

Copy useful codes for modifier letter small chi symbol ᵡ to use in websites, apps, blogs, and docs.

Unicode
U+1D61
HTML Code
ᵡ
HEX Code
ᵡ
CSS Code
\1D61
JS/JSON
\u1D61
Unix/C/PHP/JAVA
0x1D61
URL-encode
%E1%B5%A1

Customize Modifier Letter Small Chi

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

  

How to use Modifier Letter Small Chi Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᵡ</span>
HTML Code:
<span>&#7521;</span>
HEX Code:
<span>&#x1D61;</span>

Add with CSS

.modifier-letter-small-chi::before {
  content: '\\1D61';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-chi').textContent = 'ᵡ';
copied