Latin Capital Ligature Ij

IJ

Shortcodes

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

Unicode
U+0132
HTML Code
IJ
HEX Code
IJ
CSS Code
\0132
JS/JSON
\u0132
Unix/C/PHP/JAVA
0x132
URL-encode
%C4%B2

Customize Latin Capital Ligature Ij

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

IJ
  

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

Insert in HTML

1. Direct symbol:
<span>IJ</span>
HTML Code:
<span>&#306;</span>
HEX Code:
<span>&#x0132;</span>

Add with CSS

.latin-capital-ligature-ij::before {
  content: '\\0132';
}

Set it in JavaScript

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