Latin Capital Ligature Oe

Œ

Shortcodes

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

Unicode
U+0152
HTML Code
Œ
HTML Entity
Œ
HEX Code
Œ
CSS Code
\0152
JS/JSON
\u0152
Unix/C/PHP/JAVA
0x152
URL-encode
%C5%92

Customize Latin Capital Ligature Oe

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

Œ
  

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

Insert in HTML

1. Direct symbol:
<span>Œ</span>
HTML Code:
<span>&#338;</span>
HTML Entity:
<span>&OElig;</span>
HEX Code:
<span>&#x0152;</span>

Add with CSS

.latin-capital-ligature-oe::before {
  content: '\\0152';
}

Set it in JavaScript

document.querySelector('.latin-capital-ligature-oe').textContent = 'Œ';
copied