Latin Small Ligature Oe

œ

Shortcodes

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

Unicode
U+0153
HTML Code
œ
HTML Entity
œ
HEX Code
œ
CSS Code
\0153
JS/JSON
\u0153
Unix/C/PHP/JAVA
0x153
URL-encode
%C5%93

Customize Latin Small Ligature Oe

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

œ
  

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

Insert in HTML

1. Direct symbol:
<span>œ</span>
HTML Code:
<span>&#339;</span>
HTML Entity:
<span>&oelig;</span>
HEX Code:
<span>&#x0153;</span>

Add with CSS

.latin-small-ligature-oe::before {
  content: '\\0153';
}

Set it in JavaScript

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