Latin Small Letter J With Circumflex

ĵ

Shortcodes

Copy useful codes for latin small letter j with circumflex symbol ĵ to use in websites, apps, blogs, and docs.

Unicode
U+0135
HTML Code
ĵ
HEX Code
ĵ
CSS Code
\0135
JS/JSON
\u0135
Unix/C/PHP/JAVA
0x135
URL-encode
%C4%B5

Customize Latin Small Letter J With Circumflex

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

ĵ
  

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

Insert in HTML

1. Direct symbol:
<span>ĵ</span>
HTML Code:
<span>&#309;</span>
HEX Code:
<span>&#x0135;</span>

Add with CSS

.latin-small-letter-j-with-circumflex::before {
  content: '\\0135';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-j-with-circumflex').textContent = 'ĵ';
copied