| 記号名 | Centre Line Symbol |
| Unicodeバージョン | 1.1 |
| Unicode | U+2104 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \2104 |
| 16進コード | 0x2104 |
| HTMLコード | ℄ |
| LaTeX | \textcenterline |
| 記号 | ℄ |
| URLエンコード(UTF-8パーセント) | %E2%84%84 |
| 読み上げ名 / スクリーンリーダー | Centre Line Symbol |
| UTF-8 | E2 84 84 |
| UTF-16 | 2104 |
| UTF-32 | 00002104 |
1\documentclass{article}2\usepackage{pifont}3\textcenterline4\end{document}以下の方法でほとんどの最新デバイスでcentre line記号を入力できます:
Alt + 8452 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "centre line", or use Unicode Hex Input.
Ctrl + Shift + U, type 2104, then Enter (layout-dependent).
Paste from this page or use a CAD text shortcut.
Paste from this page or use extended symbol panels where available.
1span.centerline::before { content: "\2104"; }1<span>℄</span>各プログラミング言語におけるCentre Line記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2104' or String.fromCodePoint(0x2104) |
| Python | '\N{CENTRE LINE SYMBOL}' or chr(8452) |
| Rust | '\u{2104}' |
| C / C++ | UTF-8 source or wchar_t with U+2104 |
| Go | string(rune(0x2104)) |
| Ruby | "\u2104" |