| Nome del simbolo | Caret |
| Versione Unicode | 1.1 |
| Unicode | U+2038 |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \2038 |
| Codice esadecimale | 0x2038 |
| Codice HTML | ‸ |
| LaTeX | \text{CARET} |
| Simbolo | ‸ |
| Codifica URL (percentuale UTF-8) | %E2%80%B8 |
| Nome parlato / screen reader | Caret |
| UTF-8 | E2 80 B8 |
| UTF-16 | 2038 |
| UTF-32 | 00002038 |
1\documentclass{article}2\usepackage{pifont}3\text{CARET}4\end{document}Puoi digitare il simbolo caret sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Caret nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |