| 記号名 | Vulgar Fraction One Ninth |
| Unicodeバージョン | 5.2 |
| Unicode | U+2151 |
| Unicodeブロック | |
| 一般カテゴリ | Other Number (No) |
| CSSコード | \2151 |
| 16進コード | 0x2151 |
| HTMLコード | ⅑ |
| LaTeX | \frac{1}{9} |
| 記号 | ⅑ |
| URLエンコード(UTF-8パーセント) | %E2%85%91 |
| 読み上げ名 / スクリーンリーダー | Vulgar Fraction One Ninth |
| UTF-8 | E2 85 91 |
| UTF-16 | 2151 |
| UTF-32 | 00002151 |
1\documentclass{article}2\usepackage{pifont}3\frac{1}{9}4\end{document}以下の方法でほとんどの最新デバイスでvulgar fraction one ninth記号を入力できます:
Alt + 8529 on Windows (numeric keypad), or insert via Character Map.
Edit → Emoji & Symbols, search "vulgar fraction one ninth", or use Unicode Hex Input with 2151.
Ctrl + Shift + U, type 2151, then Enter (layout-dependent).
Paste from this page, use text replacement, or use a keyboard with fraction suggestions.
Paste from this page or use keyboard fraction suggestions where available.
1span.vulgar-fraction-one-ninth::before { content: "\2151"; }1<span>⅑</span>各プログラミング言語におけるVulgar Fraction One Ninth記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2151' or String.fromCodePoint(0x2151) |
| Python | '\N{VULGAR FRACTION ONE NINTH}' or chr(8529) |
| Rust | '\u{2151}' |
| C / C++ | UTF-8 source or wchar_t with U+2151 |
| Go | string(rune(0x2151)) |
| Ruby | "\u2151" |