^
Caret
Decimal: 94
Hex: 5E
Symbol
ASCII Values
Decimal
94
Hexadecimal
0x5E
Character
^
Usage Examples
JavaScript (from decimal)
String.fromCharCode(94); // "^"
JavaScript (to decimal)
"^".charCodeAt(0); // 94
Python
chr(94) # "^"
ord("^") # 94C/C++
char c = 94; // '^' int code = '^'; // 94
Symbol Characters
Symbol characters include punctuation marks, mathematical operators, and special characters used in programming and text formatting.