ASCII 94
Circumflex Accent (^)
Printable ASCII
Caret / circumflex. Bitwise XOR. Regex anchor for the start of a line/string. Exponentiation in some languages.
All encodings at a glance
| Decimal | 94 |
| Hexadecimal | 0x5E |
| Octal | 0136 |
| Binary | 01011110 |
| HTML numeric entity | ^ |
| URL encoding | %5E |
| UTF-8 bytes | 0x5E |
Code snippets
JavaScript
String.fromCharCode(94); // "^"
94.toString(16); // "5e"Python
chr(94) # '^'
ord(chr(94)) # 94
hex(94) # '0x5e'HTML
^ <!-- numeric entity (no named entity for this character) -->