Modifier Letter Small J

ʲ

Shortcodes

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

Unicode
U+02B2
HTML Code
ʲ
HEX Code
ʲ
CSS Code
\02B2
JS/JSON
\u02B2
Unix/C/PHP/JAVA
0x2B2
URL-encode
%CA%B2

Customize Modifier Letter Small J

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

ʲ
  

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

Insert in HTML

1. Direct symbol:
<span>ʲ</span>
HTML Code:
<span>&#690;</span>
HEX Code:
<span>&#x02B2;</span>

Add with CSS

.modifier-letter-small-j::before {
  content: '\\02B2';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-j').textContent = 'ʲ';
copied