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