| Symboolnaam | Caret Insertion Point |
| Unicode-versie | 1.1 |
| Unicode | U+2041 |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code |
| UTF-8 | E2 81 81 |
| UTF-16 | 2041 |
| UTF-32 | 00002041 |
1\documentclass{article}2\usepackage{pifont}3\text{CARETINSERTIONPOINT}4\end{document}Je kunt het caret insertion point-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Caret Insertion Point-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |
\2041 |
| Hexadecimale code | 0x2041 |
| HTML-code | ⁁ |
| LaTeX | \text{CARETINSERTIONPOINT} |
| Symbool | ⁁ |
| URL-codering (UTF-8 procent) | %E2%81%81 |
| Uitgesproken naam / schermlezer | Caret Insertion Point |