| 記号名 | Commercial At |
| Unicodeバージョン | 1.1 |
| Unicode | U+0040 |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \0040 |
| 16進コード | 0x0040 |
| HTMLコード | @ |
| LaTeX | \@ |
| 記号 | @ |
| URLエンコード(UTF-8パーセント) | %40 |
| 読み上げ名 / スクリーンリーダー | At Sign |
| UTF-8 | 40 |
| UTF-16 | 0040 |
| UTF-32 | 00000040 |
1\documentclass{article}2\usepackage{pifont}3\@4\end{document}以下の方法でほとんどの最新デバイスでcommercial at記号を入力できます:
Shift + 2 on US keyboards, or Alt + 64 on the numeric keypad.
Shift + 2 on US layouts; Option-based placement varies by international layout.
Shift + 2 on many layouts, or AltGr + Q on several European layouts.
Tap the 123 key, then tap @ on the symbols keyboard.
Tap ?123, then tap @, or long-press related punctuation keys.
1span.at::before { content: "\0040"; }1<span>@</span>各プログラミング言語におけるCommercial At記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u0040' or String.fromCodePoint(0x0040) |
| Python | '\N{COMMERCIAL AT}' or chr(64) |
| Rust | '\u{0040}' |
| C / C++ | '@' or UTF-8 source |
| Go | string(rune(0x0040)) |
| Ruby | "\u0040" or "@" |