Latin Subscript Small Letter J

Shortcodes

Copy useful codes for latin subscript small letter j symbol ⱼ to use in websites, apps, blogs, and docs.

Unicode
U+2C7C
HTML Code
ⱼ
HEX Code
ⱼ
CSS Code
\2C7C
JS/JSON
\u2C7C
Unix/C/PHP/JAVA
0x2C7C
URL-encode
%E2%B1%BC

Customize Latin Subscript Small Letter J

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

  

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

Insert in HTML

1. Direct symbol:
<span>ⱼ</span>
HTML Code:
<span>&#11388;</span>
HEX Code:
<span>&#x2C7C;</span>

Add with CSS

.latin-subscript-small-letter-j::before {
  content: '\\2C7C';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-j').textContent = 'ⱼ';
copied