| 記号名 | Vulgar Fraction Two Thirds |
| Unicodeバージョン | 1.1 |
| Unicode | U+2154 |
| Unicodeブロック | |
| 一般カテゴリ | Other Number (No) |
| CSSコード | \2154 |
| 16進コード | 0x2154 |
| HTMLコード | ⅔ |
| LaTeX | \frac{2}{3} |
| 記号 | ⅔ |
| URLエンコード(UTF-8パーセント) | %E2%85%94 |
| 読み上げ名 / スクリーンリーダー | Vulgar Fraction Two Thirds |
| UTF-8 | E2 85 94 |
| UTF-16 | 2154 |
| UTF-32 | 00002154 |
1\documentclass{article}2\usepackage{pifont}3\frac{2}{3}4\end{document}以下の方法でほとんどの最新デバイスでvulgar fraction two thirds記号を入力できます:
Alt + 8532 on Windows (numeric keypad), or insert via Character Map.
Edit → Emoji & Symbols, search "vulgar fraction two thirds", or use Unicode Hex Input with 2154.
Ctrl + Shift + U, type 2154, 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-two-thirds::before { content: "\2154"; }1<span>⅔</span>各プログラミング言語におけるVulgar Fraction Two Thirds記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2154' or String.fromCodePoint(0x2154) |
| Python | '\N{VULGAR FRACTION TWO THIRDS}' or chr(8532) |
| Rust | '\u{2154}' |
| C / C++ | UTF-8 source or wchar_t with U+2154 |
| Go | string(rune(0x2154)) |
| Ruby | "\u2154" |