| 記号名 | Latin Small Letter Turned M |
| Unicodeバージョン | 1.1 |
| Unicode | U+026F |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \026F |
| 16進コード | 0x026F |
| HTMLコード | ɯ |
| LaTeX | \text{LATINSMALLLETTERTURNEDM} |
| 記号 | ɯ |
| URLエンコード(UTF-8パーセント) | %C9%AF |
| 読み上げ名 / スクリーンリーダー | Latin Small Letter Turned M |
| UTF-8 | C9 AF |
| UTF-16 | 026F |
| UTF-32 | 0000026F |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERTURNEDM}4\end{document}以下の方法でほとんどの最新デバイスでlatin small letter turned m記号を入力できます:
Alt + 623 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter turned m", or use Unicode Hex Input with 026F.
Ctrl + Shift + U, type 026f, 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.turned-m::before { content: "\026F"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ɯ</span>各プログラミング言語におけるLatin Small Letter Turned M記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u026F' or String.fromCodePoint(623) |
| Python | '\N{LATIN SMALL LETTER TURNED M}' or chr(623) |
| Rust | '\u{026F}' |
| C / C++ | UTF-8 source or wchar_t with U+026F |
| Go | string(rune(0x026F)) |
| Ruby | "\u{026F}" |