| 記号名 | Latin Small Ligature Oe |
| Unicodeバージョン | 1.1 |
| Unicode | U+0153 |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \0153 |
| 16進コード | 0x0153 |
| HTMLコード | œ |
| LaTeX | \text{LATINSMALLLIGATUREOE} |
| 記号 | œ |
| URLエンコード(UTF-8パーセント) | %C5%93 |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでlatin small ligature oe記号を入力できます:
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>各プログラミング言語におけるLatin Small Ligature Oe記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |