| Symbol Name | Insertion Symbol |
| Unicode Version | 3.0 |
| Unicode | U+2380 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2380 |
| Hex Code | 0x2380 |
| HTML Code | ⎀ |
| LaTeX | \text{INSERTIONSYMBOL} |
| Symbol | ⎀ |
| URL encode (UTF-8 percent) | %E2%8E%80 |
| Spoken / screen reader name | 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}You can type the insertion symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |