^
Technical

Circumflex Accent ^

The circumflex accent (caret) is used in programming for bitwise XOR, exponentiation in some languages, and as the start-of-line anchor in regular expressions. In markdown, it creates superscript text. The standalone caret is a spacing character, distinct from the combining circumflex used in accented letters.

All Representations

Named Entity
^
Decimal Code
^
Hex Code
^
Unicode
U+005E

Rendered Output

^

^ renders as the character shown above

When to Use Circumflex Accent

Use the caret entity in technical documentation about regular expressions (where ^ anchors to the start of a line), bitwise operations, and exponentiation. In most HTML contexts, the caret can be typed directly, but the entity is useful in generated or template-processed content.

Try It — HTML Examples

Named entity in text
<p>Symbol: &Hat;</p>
Decimal reference
<p>Symbol: &#94;</p>
Hex reference
<p>Symbol: &#x5E;</p>
Inside an HTML attribute
<div title="The Circumflex Accent: &Hat;">Hover to see</div>

About the Circumflex Accent Entity

The Circumflex Accent character (^) is a standard HTML entity defined in the HTML specification. In HTML source code, it can be written using the named entity reference &Hat;, the decimal numeric character reference &#94;, or the hexadecimal numeric reference &#x5E;. The character is assigned Unicode code point U+005E in the Universal Character Set.

The circumflex accent (caret) is used in programming for bitwise XOR, exponentiation in some languages, and as the start-of-line anchor in regular expressions. In markdown, it creates superscript text. The standalone caret is a spacing character, distinct from the combining circumflex used in accented letters.

Technical character entities represent brackets, delimiters, and punctuation marks that frequently require escaping in HTML source code and programming contexts. Characters like curly braces, square brackets, pipes, and backslashes often carry special meaning in templating engines, regular expressions, or markup parsers, making their explicit HTML entity encoding important for preventing unintended interpretation by the browser or build tools.

When deciding how to encode the Circumflex Accent character in your HTML documents, the named entity &Hat; is generally the most readable choice for developers reviewing or maintaining source code. The decimal form &#94; and hexadecimal form &#x5E; are equally valid alternatives that work in contexts where named entities may not be supported, or when generating HTML output programmatically from server-side code. All three representations produce identical visual output in every modern web browser.

Use the caret entity in technical documentation about regular expressions (where ^ anchors to the start of a line), bitwise operations, and exponentiation. In most HTML contexts, the caret can be typed directly, but the entity is useful in generated or template-processed content.

Related Entities

Explore More HTML Entities

Browse our complete reference of 262 HTML entities with codes, examples, and usage tips.