| 記号名 | Dotted Cross |
| Unicodeバージョン | 4.1 |
| Unicode | U+205C |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \205C |
| 16進コード | 0x205C |
| HTMLコード | ⁜ |
| LaTeX | \text{DOTTEDCROSS} |
| 記号 | ⁜ |
| URLエンコード(UTF-8パーセント) | %E2%81%9C |
| 読み上げ名 / スクリーンリーダー | Dotted Cross |
| UTF-8 | E2 81 9C |
| UTF-16 | 205C |
| UTF-32 | 0000205C |
1\documentclass{article}2\usepackage{pifont}3\text{DOTTEDCROSS}4\end{document}以下の方法でほとんどの最新デバイスでdotted cross記号を入力できます:
Alt + 8284 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "dotted cross", or use Unicode Hex Input with 205C.
Ctrl + Shift + U, type 205c, 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 punctuation support.
1span.dotted-cross::before { content: "\205C"; }1<span>⁜</span>各プログラミング言語におけるDotted Cross記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u205C' or String.fromCodePoint(8284) |
| Python | '\N{DOTTED CROSS}' or chr(8284) |
| Rust | '\u{205C}' |
| C / C++ | UTF-8 source or wchar_t with U+205C |
| Go | string(rune(0x205C)) |
| Ruby | "\u{205C}" |