Greek Subscript Small Letter Chi

Shortcodes

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

Unicode
U+1D6A
HTML Code
ᵪ
HEX Code
ᵪ
CSS Code
\1D6A
JS/JSON
\u1D6A
Unix/C/PHP/JAVA
0x1D6A
URL-encode
%E1%B5%AA

Customize Greek Subscript Small Letter Chi

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᵪ</span>
HTML Code:
<span>&#7530;</span>
HEX Code:
<span>&#x1D6A;</span>

Add with CSS

.greek-subscript-small-letter-chi::before {
  content: '\\1D6A';
}

Set it in JavaScript

document.querySelector('.greek-subscript-small-letter-chi').textContent = 'ᵪ';
copied