| Nom du symbole | Caret Insertion Point |
| Version Unicode | 1.1 |
| Unicode | U+2041 |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| UTF-8 | E2 81 81 |
| UTF-16 | 2041 |
| UTF-32 | 00002041 |
1\documentclass{article}2\usepackage{pifont}3\text{CARETINSERTIONPOINT}4\end{document}Vous pouvez saisir le symbole caret insertion point sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8257 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "caret insertion point", or use Unicode Hex Input with 2041.
Ctrl + Shift + U, type 2041, 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.caret-insertion-point::before { content: "\2041"; }1<span>⁁</span>La représentation du symbole Caret Insertion Point dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2041' or String.fromCodePoint(8257) |
| Python | '\N{CARET INSERTION POINT}' or chr(8257) |
| Rust | '\u{2041}' |
| C / C++ | UTF-8 source or wchar_t with U+2041 |
| Go | string(rune(0x2041)) |
| Ruby | "\u{2041}" |
| Code CSS |
\2041 |
| Code hexadécimal | 0x2041 |
| Code HTML | ⁁ |
| LaTeX | \text{CARETINSERTIONPOINT} |
| Symbole | ⁁ |
| Encodage URL (pourcent UTF-8) | %E2%81%81 |
| Nom oral / lecteur d’écran | Caret Insertion Point |