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