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