Latin Small Ligature Ij

ij

Shortcodes

Copy useful codes for latin small ligature ij symbol ij to use in websites, apps, blogs, and docs.

Unicode
U+0133
HTML Code
ij
HEX Code
ij
CSS Code
\0133
JS/JSON
\u0133
Unix/C/PHP/JAVA
0x133
URL-encode
%C4%B3

Customize Latin Small Ligature Ij

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

ij
  

How to use Latin Small Ligature Ij Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ij</span>
HTML Code:
<span>&#307;</span>
HEX Code:
<span>&#x0133;</span>

Add with CSS

.latin-small-ligature-ij::before {
  content: '\\0133';
}

Set it in JavaScript

document.querySelector('.latin-small-ligature-ij').textContent = 'ij';
copied