| Nombre del símbolo | Insertion Symbol |
| Versión Unicode | 3.0 |
| Unicode | U+2380 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2380 |
| Código hexadecimal | 0x2380 |
| Código HTML | ⎀ |
| LaTeX | \text{INSERTIONSYMBOL} |
| Símbolo | ⎀ |
| Codificación URL (porcentaje UTF-8) | %E2%8E%80 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo insertion en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Insertion en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |