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