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