^

ASCII Character: Caret

ASCII Code 94 · Unicode U+005E · Hex 0x5E

caret circumflex

About the Caret Character

ASCII code 94 (0x5E) represents the Caret character "^". The "Caret" character (^) with ASCII code 94 is a punctuation or special symbol in the printable ASCII range. Punctuation characters serve important roles in both natural language writing and programming syntax. The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 94
Hexadecimal 0x5E
Octal 136
Binary 01011110
Unicode U+005E
Unicode Name CIRCUMFLEX ACCENT
HTML Numeric ^
HTML Entity ^
URL Escape %5E
UTF-8 (Hex) 5E
Quoted-Printable ^

Source Code Examples

JavaScript
// Character literal
let char = '^';
// Using char code
let char2 = String.fromCharCode(94);
// Unicode escape
let char3 = '\x5E';
Python
# Character literal
char = '^'
# Using chr()
char = chr(94)
# Using ord() to get code
code = ord('^')  # Returns 94
HTML
<!-- Direct character -->
^
<!-- HTML entity (numeric) -->
&#94;
<!-- Hex entity -->
&#x5E;
C#
// Character literal
char c = '^';
// Using cast
char c2 = (char)94;
// To get code from char
int code = (int)'^';  // Returns 94

Navigate

Copied!