Latin Letter Small Capital J

Shortcodes

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

Unicode
U+1D0A
HTML Code
ᴊ
HEX Code
ᴊ
CSS Code
\1D0A
JS/JSON
\u1D0A
Unix/C/PHP/JAVA
0x1D0A
URL-encode
%E1%B4%8A

Customize Latin Letter Small Capital J

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴊ</span>
HTML Code:
<span>&#7434;</span>
HEX Code:
<span>&#x1D0A;</span>

Add with CSS

.latin-letter-small-capital-j::before {
  content: '\\1D0A';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-j').textContent = 'ᴊ';
copied