| 記号名 | Symbol For File Separator |
| Unicodeバージョン | 1.1 |
| Unicode | U+241C |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \241C |
| 16進コード | 0x241C |
| HTMLコード | ␜ |
| LaTeX | \text{SYMBOLFORFILESEPARATOR} |
| 記号 | ␜ |
| URLエンコード(UTF-8パーセント) | %E2%90%9C |
| 読み上げ名 / スクリーンリーダー | Symbol For File Separator |
| UTF-8 | E2 90 9C |
| UTF-16 | 241C |
| UTF-32 | 0000241C |
1\documentclass{article}2\usepackage{pifont}3\text{SYMBOLFORFILESEPARATOR}4\end{document}以下の方法でほとんどの最新デバイスでsymbol for file separator記号を入力できます:
Alt + 9244 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "symbol for file separator", or use Unicode Hex Input with 241C.
Ctrl + Shift + U, type 241c, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with technical symbol support.
1span.symbol-for-file-separator::before { content: "\241C"; }1<span>␜</span>各プログラミング言語におけるSymbol For File Separator記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u241C' or String.fromCodePoint(9244) |
| Python | '\N{SYMBOL FOR FILE SEPARATOR}' or chr(9244) |
| Rust | '\u{241C}' |
| C / C++ | UTF-8 source or wchar_t with U+241C |
| Go | string(rune(0x241C)) |
| Ruby | "\u{241C}" |