Latin Small Letter Chi

Shortcodes

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

Unicode
U+AB53
HTML Code
ꭓ
HEX Code
ꭓ
CSS Code
AB53
JS/JSON
uAB53
Unix/C/PHP/JAVA
0xAB53
URL-encode
%EA%AD%93

Customize Latin Small Letter Chi

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

  

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

Insert in HTML

1. Direct symbol:
<span>ꭓ</span>
HTML Code:
<span>&#43859;</span>
HEX Code:
<span>&#xAB53;</span>

Add with CSS

.latin-small-letter-chi::before {
  content: 'AB53';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-chi').textContent = 'ꭓ';
copied