@
Technical

Commercial At @

The commercial at sign (@) is universally recognized as the separator in email addresses and as the mention/tag symbol in social media platforms. In programming, it serves various roles: decorators in Python, annotations in Java, and array operators in PHP. Its original meaning relates to pricing ('5 items @ $2 each').

All Representations

Named Entity
@
Decimal Code
@
Hex Code
@
Unicode
U+0040

Rendered Output

@

@ renders as the character shown above

When to Use Commercial At

Use the at sign entity when you want to display email addresses in HTML without them being automatically linked or harvested by spam bots. Entity encoding the @ character is a basic email obfuscation technique, though modern spam bots can decode entities.

Try It — HTML Examples

Named entity in text
<p>Symbol: &commat;</p>
Decimal reference
<p>Symbol: &#64;</p>
Hex reference
<p>Symbol: &#x40;</p>
Inside an HTML attribute
<div title="The Commercial At: &commat;">Hover to see</div>

About the Commercial At Entity

The Commercial At character (@) is a standard HTML entity defined in the HTML specification. In HTML source code, it can be written using the named entity reference &commat;, the decimal numeric character reference &#64;, or the hexadecimal numeric reference &#x40;. The character is assigned Unicode code point U+0040 in the Universal Character Set.

The commercial at sign (@) is universally recognized as the separator in email addresses and as the mention/tag symbol in social media platforms. In programming, it serves various roles: decorators in Python, annotations in Java, and array operators in PHP. Its original meaning relates to pricing ('5 items @ $2 each').

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 Commercial At character in your HTML documents, the named entity &commat; is generally the most readable choice for developers reviewing or maintaining source code. The decimal form &#64; and hexadecimal form &#x40; 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 at sign entity when you want to display email addresses in HTML without them being automatically linked or harvested by spam bots. Entity encoding the @ character is a basic email obfuscation technique, though modern spam bots can decode entities.

Related Entities

Explore More HTML Entities

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