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