| 記号名 | Fraction Slash |
| Unicodeバージョン | 1.1 |
| Unicode | U+2044 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \2044 |
| 16進コード | 0x2044 |
| HTMLコード | ⁄ |
| LaTeX | / |
| 記号 | ⁄ |
| URLエンコード(UTF-8パーセント) | %E2%81%84 |
| 読み上げ名 / スクリーンリーダー | Fraction Slash |
| UTF-8 | E2 81 84 |
| UTF-16 | 2044 |
| UTF-32 | 00002044 |
1\documentclass{article}2\usepackage{pifont}3/4\end{document}以下の方法でほとんどの最新デバイスでfraction slash記号を入力できます:
Alt + 8260 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "fraction slash", or use Unicode Hex Input.
Ctrl + Shift + U, type 2044, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended symbol panels.
1span.frasl::before { content: "\2044"; }1<span>⁄</span>各プログラミング言語におけるFraction Slash記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2044' or String.fromCodePoint(0x2044) |
| Python | '\N{FRACTION SLASH}' or chr(8260) |
| Rust | '\u{2044}' |
| C / C++ | UTF-8 source or wchar_t with U+2044 |
| Go | string(rune(0x2044)) |
| Ruby | "\u2044" |