| 記号名 | Vertical Four Dots |
| Unicodeバージョン | 4.1 |
| Unicode | U+205E |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \205E |
| 16進コード | 0x205E |
| HTMLコード | ⁞ |
| LaTeX | \text{VERTICALFOURDOTS} |
| 記号 | ⁞ |
| URLエンコード(UTF-8パーセント) | %E2%81%9E |
| 読み上げ名 / スクリーンリーダー | Vertical Four Dots |
| UTF-8 | E2 81 9E |
| UTF-16 | 205E |
| UTF-32 | 0000205E |
1\documentclass{article}2\usepackage{pifont}3\text{VERTICALFOURDOTS}4\end{document}以下の方法でほとんどの最新デバイスでvertical four dots記号を入力できます:
Alt + 8286 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "vertical four dots", or use Unicode Hex Input with 205E.
Ctrl + Shift + U, type 205e, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.vertical-four-dots::before { content: "\205E"; }1<span>⁞</span>各プログラミング言語におけるVertical Four Dots記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u205E' or String.fromCodePoint(8286) |
| Python | '\N{VERTICAL FOUR DOTS}' or chr(8286) |
| Rust | '\u{205E}' |
| C / C++ | UTF-8 source or wchar_t with U+205E |
| Go | string(rune(0x205E)) |
| Ruby | "\u{205E}" |