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