DevKits

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

Decimal94
Hexadecimal0x5E
Octal0136
Binary01011110
HTML numeric entity^
URL encoding%5E
UTF-8 bytes0x5E

Code snippets

JavaScript

String.fromCharCode(94); // "^"
94.toString(16); // "5e"

Python

chr(94)           # '^'
ord(chr(94))      # 94
hex(94)           # '0x5e'

HTML

&#94;   <!-- numeric entity (no named entity for this character) -->

Nearby codes