| Nom du symbole | Latin Small Ligature Oe |
| Version Unicode | 1.1 |
| Unicode | U+0153 |
| Bloc Unicode | |
| Catégorie générale | Lowercase Letter (Ll) |
| Code CSS | \0153 |
| Code hexadécimal | 0x0153 |
| Code HTML | œ |
| LaTeX | \text{LATINSMALLLIGATUREOE} |
| Symbole | œ |
| Encodage URL (pourcent UTF-8) | %C5%93 |
| Nom oral / lecteur d’écran | Latin Small Ligature Oe |
| UTF-8 | C5 93 |
| UTF-16 | 0153 |
| UTF-32 | 00000153 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLIGATUREOE}4\end{document}Vous pouvez saisir le symbole latin small ligature oe sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 339 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small ligature oe", or use Unicode Hex Input with 0153.
Ctrl + Shift + U, type 0153, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-small-ligature-oe::before { content: "\0153"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>œ</span>La représentation du symbole Latin Small Ligature Oe dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u0153' or String.fromCodePoint(339) |
| Python | '\N{LATIN SMALL LIGATURE OE}' or chr(339) |
| Rust | '\u{0153}' |
| C / C++ | UTF-8 source or wchar_t with U+0153 |
| Go | string(rune(0x0153)) |
| Ruby | "\u{0153}" |