| Symbolname | Caret |
| Unicode-Version | 1.1 |
| Unicode | U+2038 |
| Unicode-Block | |
| Allgemeine Kategorie | Other Punctuation (Po) |
| CSS-Code | \2038 |
| Hexadezimalcode | 0x2038 |
| HTML-Code | ‸ |
| LaTeX | \text{CARET} |
| Symbol | ‸ |
| URL-Kodierung (UTF-8-Prozent) | %E2%80%B8 |
| Ansagename (Screenreader) | Caret |
| UTF-8 | E2 80 B8 |
| UTF-16 | 2038 |
| UTF-32 | 00002038 |
1\documentclass{article}2\usepackage{pifont}3\text{CARET}4\end{document}Sie können das Symbol caret auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 8248 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "caret", or use Unicode Hex Input with 2038.
Ctrl + Shift + U, type 2038, 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::before { content: "\2038"; }1<span>‸</span>Die Darstellung des Symbols Caret in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\u2038' or String.fromCodePoint(8248) |
| Python | '\N{CARET}' or chr(8248) |
| Rust | '\u{2038}' |
| C / C++ | UTF-8 source or wchar_t with U+2038 |
| Go | string(rune(0x2038)) |
| Ruby | "\u{2038}" |