Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

At sign

From Wikipedia, the free encyclopedia
Typographical symbol (@)
Fortechnical reasons, ":@" and strings beginning with "@#" redirects here. For :@, seeList of emoticons. For@#!*, seePulley (band) § Discography. For@#%&*! Smilers, seeFucking Smilers.
@
At sign
In UnicodeU+0040@COMMERCIAL AT (@)
Related
See alsoU+FF20FULLWIDTH COMMERCIAL AT
U+FE6BSMALL COMMERCIAL AT

Theat sign (@) is anaccounting andinvoice abbreviation meaning "at a rate of" (e.g. 7widgets @£2 per widget = £14),[1] now seen more widely inemail addresses andsocial media platformhandles. It is normally read aloud as "at" and is also commonly called theat symbol,commercial at, oraddress sign. Most languages have their own name for the symbol.

Although not included on thekeyboard layout of the earliest commercially successfultypewriters, it was on at least one 1889 model[2] and the very successfulUnderwood models from the "Underwood No. 5" in 1900 onward. It started to be used in email addresses in the 1970s, and is now routinely included on most types ofcomputer keyboards.

History

[edit]
@ symbol used as the initial "a" for the "amin" (amen) formula in the Bulgarian of the Manasses Chronicle,c. 1345.[3]
TheAragonese @ symbol used in the 1448"taula de Ariza" registry to denote a wheat shipment fromCastile to theKingdom of Aragon.[4]
@ used to signify French "à" ("at") from a 1674 protocol from aSwedish court (Arboga rådhusrätt och magistrat)

The earliest yet discovered symbol in this shape is found in aBulgarian translation of aGreek chronicle written byConstantinos Manasses in 1345. Held today in the Vatican Apostolic Library, it features the @ symbol in place of the capital letteralpha "Α" as aninitial in the word Amen; however, the reason behind it being used in this context is still unknown. The evolution of the symbol as used today is not recorded.

It has long been used inCatalan,Spanish andPortuguese as an abbreviation ofarroba, a unit of weight equivalent to 25 pounds, and derived from theArabic expression of "the quarter" (الربع pronouncedar-rubʿ).[5] A symbol resembling an @ is found in the Spanish "Taula de Ariza", a registry to denote a wheat shipment from Castile to Aragon, in 1448.[6] The historian Giorgio Stabile claims to have traced the @ symbol to the 16th century, in a mercantile document sent byFlorentine Francesco Lapi fromSeville toRome on May 4, 1536.[6] The document is about commerce withPizarro, in particular the price of an @ of wine inPeru. Currently, the wordarroba means both the at-symbol and a unit of weight. InVenetian, the symbol was interpreted to meanamphora (anfora), a unit of weight and volume based upon the capacity of the standard amphora jar since the 6th century. It could also mean “adi” (standard Italian “addì”, i. e. ‘on the day of’) as used on a health pass in Northern Italy in 1667.[7]

Name

[edit]

The name of the symbol arises from its original use in showing quantities and their price per unit – for example, "10 widgets @ £1.50 each". The precise origin of the symbol is uncertain.[8]

The absence of a single English word for the symbol has prompted some writers to use theFrencharobase,[9] to coin new words such asampersat[10] andasperand,[11] or the (visual) onomatopoeiastrudel,[12] but none of these have achieved wide use.

Modern use

[edit]

Commercial usage

[edit]

In contemporary English usage, @ is a commercial symbol, meaningat andat the rate of orat the price of. It has rarely been used in financial ledgers, and is not used in standardtypography.[13]

Trademark

[edit]

In 2012, "@" was registered as atrademark with the German Patent and Trade Mark Office.[14] A cancellation request was filed in 2013, and the cancellation was ultimately confirmed by the German Federal Patent Court in 2017.[15]

Email addresses

[edit]

A common contemporary use of @ is inemail addresses (using theSMTP system), as injdoe@example.com (the userjdoe locatedat the domainexample.com).Ray Tomlinson ofBBN Technologies is credited for having introduced this usage in 1971.[11][16] This idea of the symbol representinglocated at in the formuser@host is also seen in other tools and protocols; for example, theUnix shell commandssh jdoe@example.net tries to establish anssh connection to the computer with thehostnameexample.net using the usernamejdoe.

On web pages, organizations often obscure the email addresses of their members or employees by omitting the @. This practice, known asaddress munging, attempts to make the email addresses less vulnerable to spam programs that scan the internet for them.

Social media

[edit]
Further information:Mention (blogging)

On many social media platforms and forums,usernames or handles prefixed with an @ (in the form@johndoe) are interpreted asmentions of that user and may be treated specially.

On online forums withoutthreaded discussions, @ is commonly used to denote a reply; for instance:@Jane to respond to a comment Jane made earlier. Similarly, in some cases, @ is used for "attention" in email messages originally sent to someone else. For example, if an email was sent from Catherine to Steve, but in the body of the email, Catherine wants to make Keirsten aware of something, Catherine will start the line@Keirsten to signal to Keirsten that the following sentence concerns her.[citation needed] This also helps with mobile email users who might not see bold or color in email.

Inmicroblogging (such as onTwitter,GNU social- andActivityPub-based microblogs), an @ before the user name is used to send publicly readable replies (e.g.@otheruser: Message text here). The blog and client system interpret these as links to the user in question. When included as part of a person's or company's contact details, an @ symbol followed by a name is normally understood to refer to a Twitter handle. A similar use of the @ symbol was added to Facebook on September 15, 2009.[17] InInternet Relay Chat (IRC), it is shown before users' nicknames to denote they have operator status on a channel.

Sports usage

[edit]

InAmerican English the @ can be used to add information about a sporting event. Where opposing sports teams have their names separated by a "v" (forversus), theaway team can be written first – and the normal "v" replaced with @ to convey at which team's home field the game will be played.[18][better source needed] This usage is not followed inBritish English, since conventionally the home team is written first.[citation needed]

Computer languages

[edit]

@ is used in variousprogramming languages and othercomputer languages, although there is not a consistent theme to its usage. For example:

  • InActionScript, @ is used in XML parsing and traversal as a string prefix to identify attributes in contrast to child elements.[19]
  • InAda 2022, @ is thetarget name symbol, an abbreviation of theLHS of an assignment; it is used to avoid repetition of potentially long names in assignment statements.[20] For example:A_Very_Long_Variable_Name := A_Very_Long_Variable_Name + 1; is shortened toA_Very_Long_Variable_Name := @ + 1;, increasing readability.
  • InALGOL 68, the @ symbol isbrief form of theatkeyword; it is used to change the lower bound of an array. For example:arrayx[@88] refers to an array starting at index 88.[21]
  • In DyalogAPL, @ is used as a functional way to modify or replace dataat specific locations in an array.
  • In theASP.NET MVCRazor template markup syntax, the @ character denotes the start of code statement blocks or the start of text content.[22][23]
  • InAssembly language, @ is sometimes used as adereference operator.[24]
  • InCSS, @ is used in special statements outside of a CSS block.[25]
  • InC#, it denotes "verbatim strings", where no characters are escaped and two double-quote characters represent a single double-quote.[26] As a prefix it also allows keywords to be used asidentifiers,[27] a form ofstropping.
  • InD, it denotes function attributes: like:@safe,@nogc, user defined@('from_user') which can be evaluated at compile time (with__traits) or@property to declare properties, which are functions that can be syntactically treated as if they were fields or variables.[28]
  • InDIGITAL Command Language, the @ character was the command used to execute a command procedure. To run the command procedure VMSINSTAL.COM, one would type@VMSINSTAL at the command prompt.
  • In theDomain Name System (DNS), @ is used to represent the$ORIGIN, typically the "root" of the domain without a prefixed sub-domain. (Ex: wikipedia.org vs. www.wikipedia.org)
  • InForth, it is used to fetch values from the address on the top of the stack. The operator is pronounced as "fetch".
  • InHaskell, it is used in so-calledas-patterns. This notation can be used to give aliases topatterns, making them more readable.
  • inHTML, it can be encoded as@[29]
  • InJ, denotesfunction composition.
  • InJava, it has been used to denoteannotations, a kind of metadata, since version 5.0.[30]
  • InJulia, it denotes the invocation of a macro.[31]
  • InLiveCode, it is prefixed to a parameter to indicate that the parameter ispassed by reference.
  • In anLXDE autostart file (as used, for example, on theRaspberry Pi computer), @ is prefixed to a command to indicate that the command should be automatically re-executed if it crashes.[32]
  • In aMakefile, @ specifies to not output the command before it is executed.
  • InML, it denotes list concatenation.
  • Inmodal logic, specifically when representingpossible worlds, @ is sometimes used as a logical symbol to denote the actual world (the world we are "at").
  • InObjective-C, @ is prefixed to language-specific keywords such as @implementation and to form string literals.
  • In InterSystemsObjectScript, @ is the indirection operator, enabling dynamic runtime substitution of part or all of a command line, a command, or a command argument.[33]
  • InPascal, @ is the "address of" operator (it tells the location at which a variable is found).
  • InPerl, @ prefixesvariables which containarrays@array, including arrayslices@array[2..5,7,9] andhash slices@hash{'foo','bar','baz'} or@hash{qw(foo bar baz)}. This use is known as asigil.
  • InPHP, it is used just before anexpression to make theinterpreter suppress errors that would be generated from that expression.[34]
  • InPython 2.4 and up, it is used todecorate a function (wrap the function in another one at creation time). In Python 3.5 and up, it is also used as anoverloadablematrix multiplication operator.[35]
  • InR andS-PLUS, it is used to extract slots from S4 objects.[36]
  • InRazor, it is used forC# code blocks.[37]
  • InRuby, it functions as a sigil:@ prefixesinstance variables, and@@ prefixesclass variables.[38]
  • InRust, it is used to bind values matched by a pattern to a variable.[39]
  • InScala, it is used to denote annotations (as in Java), and also to bind names to subpatterns in pattern-matching expressions.[40]
  • InSwift,@ prefixes "annotations" that can be applied to classes or members. Annotations tell the compiler to apply special semantics to the declaration like keywords, without adding keywords to the language.
  • InT-SQL,@ prefixes variables and@@ prefixes "niladic" system functions.
  • In severalxBase-type programming languages, likeDBASE,FoxPro/Visual FoxPro andClipper, it is used to denote position on the screen. For example:@1,1 SAY"HELLO" to show the word "HELLO" in line 1, column 1.
  • In a WindowsBatch file, an@ at the start of a line suppresses theechoing of that command. In other words, is the same asECHO OFF applied to the current line only. Normally a Windows command is executed and takes effect from the next line onward, but@ is a rare example of a command that takes effect immediately. It is most commonly used in the form@echo off which not only switches off echoing but prevents the command line itself from being echoed.[42][43]
  • InWindows PowerShell, @ is used as array operator for array and hash table literals and for enclosing here-string literals.[44]

Gender neutrality in Spanish

[edit]
Protester with banner showing "La revolución está en nosotr@s"
Main article:Gender neutrality in Spanish

InSpanish, where many words end in "-o" when in the masculinegender and end "-a" in the feminine, @ is sometimes used as agender-neutral substitute for the default "o" ending.[45] For example, the wordamigos traditionally represents not only male friends, but also a mixed group, or where the genders are not known. The proponents of gender-inclusive language would replace it withamig@s in these latter two cases, and useamigos only when the group referred to is all-male andamigas only when the group is all female. TheReal Academia Española disapproves of this usage.[46]

Other uses and meanings

[edit]
This articleneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources. Unsourced material may be challenged and removed.
Find sources: "At sign" – news ·newspapers ·books ·scholar ·JSTOR
(November 2021) (Learn how and when to remove this message)
Bicameral @ letter as used in theKoalib language.
X-SAMPA uses an @ as a substitute forə, which it resembles in some fonts.

Names in other languages

[edit]

In many languages other than English, although most typewriters included the symbol, the use of @ was less common before email became widespread in the mid-1990s. Consequently, it is often perceived in those languages as denoting "the Internet", computerization, or modernization in general. Naming the symbol after animals is also common.

  • InAfrikaans, it is calledaapstert, meaning 'monkey tail', similarly to theDutch use of the word (aap is the word for 'monkey' or 'ape' inDutch,stert comes from the Dutchstaart).
  • InArabic, it isآتْ (at).
  • InArmenian, it isշնիկ (shnik), which means 'puppy'.
  • InAzerbaijani, it isət (at) which means 'meat', though most likely it is a phonetic transliteration ofat.
  • InBasque, it isa bildua ('wrapped A').
  • InBelarusian, it is calledсьлімак (sʹlimak, meaning 'helix' or 'snail').
  • InBosnian, it isludo a ('crazy A').
  • InBulgarian, it is calledкльомба (klyomba – 'a badly written letter'),маймунско а (maymunsko a – 'monkey A'),маймунка (maimunka – 'little monkey'), orбаница (banitsa – a pastry roll often made in a shape similar to the character)
  • InCatalan, it is calledarrova (a unit of measure) orensaïmada (aMallorcan pastry, because of the similar shape of this food).
  • InChinese:
  • InCroatian, it is most often referred to by the English wordat (pronouncedet), and less commonly and more formally, with the prepositionpri (with the addressee in thenominative case, notlocative as per usualrection ofpri), meaning 'at', 'chez' or 'by'. Informally, it is called amanki, coming from the local pronunciation of the English wordmonkey. Note that the Croatian words for monkey,majmun,opica,jopec,šimija are not used to denote the symbol, except seldom the latter words regionally.
  • InCzech it is calledzavináč, which means 'rollmops'; the same word is used inSlovak.
  • InDanish, it issnabel-a ('elephant's trunk A'). It is not used for prices, where in Danishà means 'at (per piece)'.
  • InDutch, it is calledapenstaart ('monkey's tail'). Thea is the first character of the Dutch wordaap which means 'monkey' or 'ape';apen is the plural ofaap. However, the use of the Englishat has become increasingly popular in Dutch.
  • InEsperanto, it is calledĉe-signo ('at' – for the email use, with an address like "zamenhof@esperanto.org" pronouncedzamenhof ĉe esperanto punkto org),po-signo ('each' – refers only to the mathematical use), orheliko (meaning 'snail').
  • InEstonian, it is calledätt, from the English wordat.
  • InFaroese, it iskurla,hjá ('at'),tranta, orsnápil-a ('[elephant's] trunk A').
  • InFinnish, it was originally calledtaksamerkki ("fee sign") oryksikköhinnan merkki ("unit price sign"), but these names are long obsolete and now rarely understood. Nowadays, it is officiallyät-merkki, according to the national standardization instituteSFS; frequently also spelledat-merkki. Other names includekissanhäntä ('cat's tail') andmiuku mauku ('miaow-meow') or short; “miu-mau”.
  • InFrench, it is now officially thearobase[54][55] (also spelledarrobase orarrobe), ora commercial (though this is most commonly used in French-speaking Canada, and should normally only be used when quoting prices; it should always be calledarobase or, better yet,arobas when in an email address). Its origin is the same as that of theSpanish word, which could be derived from theArabicar-roub (‏اَلرُّبْع‎). In France, it is also common (especially for younger generations) to say the English wordat when spelling out an email address.[citation needed] In everydayQuébec French, one often hearsa commercial when sounding out an e-mail address, while TV and radio hosts are more likely to usearobase.
  • InGeorgian, it isat, spelledეთ–ი (კომერციული ეთ–ი,ḳomerciuli et-i).
  • InGerman, it has sometimes been referred to asKlammeraffe (meaning 'spider monkey') orAffenschwanz (meaning 'monkeytail').Klammeraffe orAffenschwanz refer to the similarity of @ to the tail of a monkey.[56] More recently,[when?] it is commonly referred to asat, as in English.
  • InGreek, it is calledπαπάκι meaning 'duckling'.
  • InGreenlandic, an Inuit language, it is calledaajusaq meaning 'A-like' or 'something that looks like A'.
  • InHebrew, it is colloquially known asשְׁטְרוּדֶל (shtrúdel), due to the visual resemblance to a cross-section cut of astrudel cake. The normative term, invented by theAcademy of the Hebrew Language, isכְּרוּכִית (krukhít), which is another Hebrew word for 'strudel', but is rarely used.
  • InHindi, it isat, from the English word.
  • InHungarian, it is calledkukac (a playful synonym for 'worm' or 'maggot').
  • InIcelandic, it is referred to asatmerkið ("the at sign") orhjá, which is a direct translation of the English wordat.
  • InIndian English, speakers often sayat the rate of (with e-mail addresses quoted as "exampleat the rate of example.com").[citation needed]
  • InIndonesian, it is usuallyet. Variations exist – especially if verbal communication is very noisy – such asa bundar anda bulat (both meaning 'circled A'),a keong ('snail A'), and (most rarely)a monyet ('monkey A').
  • InIrish, it isag (meaning 'at') orcomhartha @/ag (meaning 'at sign').
  • InItalian, it ischiocciola ('snail') ora commerciale, sometimesat (pronounced more often[ˈɛt] and rarely[ˈat]) orad.
  • InJapanese, it is calledatto māku (アットマーク, from the English wordsat mark). The word iswasei-eigo, a loan word from the English language.
  • InKazakh, it is officially calledайқұлақ (aıqulaq, 'earlobe').
  • InKorean, it is calledgolbaeng-i (골뱅이, meaning 'whelk'), a dialectal form ofwhelk.
  • InKurdish, it isat oret (LatinHawar script),ئەت (Perso-ArabicSorani script) coming from the English wordat.
  • InLatvian, it is pronounced the same as in English, but, since in Latvian[æ] is written as "e" (not "a" as in English), it is sometimes written aset.
  • InLithuanian, it is pronouncedeta (equivalent to the Englishat).
  • InLuxembourgish it used to be calledAfeschwanz ('monkey tail'), but due to widespread use, it is now calledat, as in English.
  • InMacedonian, it is calledмајмунче (majmunče,[ˈmajmuntʃɛ], 'little monkey').
  • InMalaysia, it is calledalias when it is used in names anddi when it is used in email addresses,di being theMalay word for 'at'. It is also commonly used to abbreviateatau which means 'or', 'either'.
  • InMorse code, it is known as a "commat", consisting of the Morse code for the "A" and "C" which run together as one character: ▄ ▄▄▄ ▄▄▄ ▄ ▄▄▄ ▄ . The symbol was added in 2004 for use with email addresses,[57] the only official change to Morse code sinceWorld War I.
  • InNepali, the symbol is called "at the rate." Commonly, people will give their email addresses by including the phrase "at the rate".[citation needed]
  • InNorwegian, it is officially calledkrøllalfa ('curlyalpha' or 'alpha twirl'), and commonly asalfakrøll. Sometimessnabel-a, the Swedish/Danish name (which means 'trunk A', as in 'elephant's trunk'), is used. Commonly, people will call the symbol[æt] (as in English), particularly when giving their email addresses. The computer manufacturerNorsk Data used it as the command prompt, and it was often called "grisehale" (pig's tail).
  • InPersian, it isات,at, from the English word.
  • InPolish, it is commonly calledmałpa ('monkey'). Rarely, the English wordat is used.
  • InPortuguese, it is calledarroba (from the Arabicar-roub, ‏اَلرُّبْع‎). The wordarroba is also used for a weight measure in Portuguese. One arroba is equivalent to 32 old Portuguese pounds, approximately 14.7 kg (32 lb), and both the weight and the symbol are calledarroba. In Brazil,cattle are still priced by thearroba – now rounded to 15 kg (33 lb). This naming is because the at sign was used to represent this measure.
  • InRomanian, it is most commonly calledat, but also colloquially calledcoadă demaimuță ("monkey tail") ora-rond. The latter is commonly used, and it comes from the wordround (from its shape), but that is nothing like the mathematical symbolA-rond (rounded A). Others call itaron, orla (Romanian word for 'at').
@ on aDVK Soviet computer (c. 1984)
  • InRussian, it is commonly calledсоба[ч]ка (soba[ch]ka – '[little] dog').
  • InSerbian, it is calledлудо А (ludo A – 'crazy A'),мајмунче (majmunče – 'little monkey'), orмајмун (majmun – 'monkey').
  • InSlovak, it is calledzavináč ('rollmop', a pickled fish roll, as in Czech).
  • InSlovenian, it is calledafna (an informal word for 'monkey').
  • InSpanish-speaking countries, it is calledarroba (from the Arabicar-roub, which denotes a pre-metric unit of weight).
  • InSámi (North Sámi), it is calledbussáseaibi meaning 'cat's tail'.
  • InSwedish, it is calledsnabel-a ('elephant's trunk A') or simplyat, as in the English language. Less formally it is also known askanelbulle ('cinnamon roll') oralfakrull ('alpha curl').
  • InSwiss German, it is commonly calledAffenschwanz ('monkey-tail'). However, the use of the English wordat has become increasingly popular in Swiss German, as with Standard German.[citation needed]
  • InTagalog, the wordat means 'and', so the symbol is used like an ampersand in colloquial writing such as text messages (e.g.magluto @ kumain, 'cook and eat').
  • InThai, it is commonly calledat, as in English.
  • InTurkish, it is commonly calledet, a variant pronunciation of Englishat.[citation needed]
  • InUkrainian, it is commonly calledет (et – 'at') or Равлик (ravlyk), which means 'snail'.
  • InUrdu, it isاٹ (at).
  • InUzbek, it is commonly calledkuchukcha ('little dog').[58]
  • InVietnamese, it is calleda còng ('bent A') inthe north anda móc ('hooked A') inthe south.
  • InWelsh, it is sometimes known as amalwen ormalwoden (both meaning "snail").

Unicode

[edit]

See also

[edit]
  • ASCII
  • Circle-A – a symbol of Anarchism
  • Enclosed A (U+24B6CIRCLED LATIN CAPITAL LETTER A,U+24D0CIRCLED LATIN SMALL LETTER A)

References

[edit]
  1. ^See, for example, Browns Index to Photocomposition Typography (p. 37), Greenwood Publishing, 1983,ISBN 0946824002
  2. ^"The @-symbol, part 2 of 2"Archived 2014-12-25 at theWayback Machine,Shady Characters ⌂ The secret life of punctuationArchived 2014-12-21 at theWayback Machine
  3. ^"Vat.slav.2, f. 62r".Archived from the original on 2022-11-14. Retrieved2022-11-14 – viaVatican Library.
  4. ^"La arroba no es de Sevilla (ni de Italia)".purnas.com. Jorge Romance.Archived from the original on 2019-10-22. Retrieved2009-06-30.
  5. ^"arroba".Diccionario de la Real Academia Española.Archived from the original on 29 October 2012. Retrieved3 August 2012.
  6. ^abWillan, Philip (2000-07-31)."Merchant@Florence Wrote It First 500 Years Ago".The Guardian. London.Archived from the original on 2022-01-26. Retrieved2010-04-25.
  7. ^[1] Jürgen Beyer, ‘Gesundheitspässe und Impfatteste’,Gesellschaft für Schleswig-Holsteinische Geschichte. Mitteilungen 100 (2021), 21–29, reproduction on p. 26.
  8. ^"at sign".Britannica. Retrieved19 March 2025.
  9. ^Soar, Daniel (28 May 2009)."Short Cuts".London Review of Books.31 (10): 18. Archived fromthe original on 2012-07-23.
  10. ^Bowen, David (23 October 2011)."Bits and Bytes".The Independent. Archived fromthe original on 9 July 2018.… Tim Gowens offered the highly logical "ampersat" ...}
  11. ^abJemima Kiss (28 March 2010)."New York's Moma claims @ as a design classic".The Observer.Archived from the original on 5 March 2017. Retrieved14 December 2016.
  12. ^"strudel". FOLDOC.Archived from the original on 2014-11-29. Retrieved2014-11-21.
  13. ^Bringhurst, Robert (2002).The Elements of Typographic Style (version 2.5), p.272. Vancouver: Hartley & Marks.ISBN 0-88179-133-4.
  14. ^German Patent and Trademark Office, registration number302012038338Archived 2012-11-02 at theWayback Machine.
  15. ^Bundespatentgericht, decision of 22 February 2017, no. 26 W (pat) 44/14 (onlineArchived 2019-03-22 at theWayback Machine).
  16. ^Ray Tomlinson."The First Email".BBN Technologies.Archived from the original on 2006-05-06.
  17. ^"Tag Friends in Your Status and Posts – Facebook Blog". Archived fromthe original on 2009-10-26.
  18. ^For an example, see:http://www.nfl.com/schedulesArchived 2011-06-23 at theWayback Machine
  19. ^"Operators – Adobe ActionScript® 3 (AS3) API Reference".help.adobe.com.Archived from the original on 2023-05-12. Retrieved2023-05-12.
  20. ^"Ada Reference Manual (Ada 2022). Target Name Symbols".ada-auth.org. Retrieved2024-07-16.
  21. ^van Wijngaarden, A. (1981-08-16)."Revised Report of the Algorithmic Language Algol 68".ALGOL Bulletin (Sup 47): 121, 532.ISSN 0084-6198.Archived from the original on 2023-05-12. Retrieved2023-05-12.
  22. ^Phil Haack (6 January 2011)."Razor syntax quick reference".Archived from the original on 26 January 2022. Retrieved12 January 2013.
  23. ^"ASP.NET MVC 3: Razor's @: and <text> syntax".weblogs.asp.net. 16 December 2010.Archived from the original on 2020-07-26. Retrieved2020-04-30.
  24. ^"assembly – @ sign in assembler? – Stack Overflow".stackoverflow.com.Archived from the original on 2021-10-05. Retrieved2021-05-02.
  25. ^"At-rules".MDN Web Docs.Archived from the original on 2020-05-05. Retrieved2020-04-30.
  26. ^2.4.4.5 String literalsArchived 2012-08-05 at theWayback Machine,
  27. ^"2.4.2 Identifiers".Archived from the original on 2012-08-10. Retrieved2012-08-16.
  28. ^"Attributes – D Programming Language".dlang.org.Archived from the original on 2018-12-08. Retrieved2018-06-22.
  29. ^"Character Entity Reference Chart".World Wide Web Consortium (W3C).Archived from the original on 2021-02-27. Retrieved2022-02-08.
  30. ^"in java what does the @ symbol mean?".Stack Overflow.Archived from the original on 2020-07-26. Retrieved2020-04-30.
  31. ^"Metaprogramming · The Julia Language".docs.julialang.org.Archived from the original on 2023-06-23. Retrieved2023-08-23.
  32. ^"LXSession - LXDE.org".wiki.lxde.org.Archived from the original on 2020-07-14. Retrieved2020-04-30.
  33. ^"Indirection – InterSystems IRIS Documentation".docs.intersystems.com. Retrieved2025-01-31.
  34. ^"PHP: Error Control Operators – Manual".www.php.net.Archived from the original on 2020-05-08. Retrieved2020-04-30.
  35. ^"syntax – What does the "at" (@) symbol do in Python?".Stack Overflow.Archived from the original on 2020-04-24. Retrieved2020-04-30.
  36. ^"The S4 object system".adv-r.had.co.nz/.Archived from the original on 2022-12-06. Retrieved2023-08-18.
  37. ^"Usage of the @ (at) sign in ASP.NET".www.mikesdotnetting.com.Archived from the original on 2020-04-04. Retrieved2020-04-30.
  38. ^"syntax – What does @@variable mean in Ruby?".Stack Overflow.Archived from the original on 2020-07-26. Retrieved2020-05-05.
  39. ^"Patterns".The Rust Reference.Archived from the original on 18 June 2023. Retrieved21 July 2023.
  40. ^"Scala @ operator".Stack Overflow.Archived from the original on 2020-07-26. Retrieved2020-05-05.
  41. ^"Visual FoxPro Programming Language Online Help: SET UDFPARMS (Command), or MSDN Library 'How to: Pass Data to Parameters by Reference'". Microsoft, Inc. 18 June 2008.Archived from the original on 2012-10-22. Retrieved2011-02-19.
  42. ^"echo".docs.microsoft.com.Archived from the original on 2018-09-11. Retrieved2018-09-11.
  43. ^"Echo - Windows CMD - SS64.com".ss64.com.Archived from the original on 2018-09-11. Retrieved2018-09-11.
  44. ^"Windows PowerShell Language Specification Version 3.0".Microsoft Download Center.Archived from the original on 2022-01-26. Retrieved2013-10-29.
  45. ^Martell-Otero, Loida (Fall 2009). "Doctoral Studies as Llamamiento, or How We All Need to be 'Ugly Betty'".Perspectivas:84–106.
  46. ^"Diccionario panhispánico de dudas".«Diccionario panhispánico de dudas».Archived from the original on 2021-04-06. Retrieved2021-04-02.
  47. ^ab"When to Use the At Symbol (@) in Writing". 11 December 2019.Archived from the original on 10 November 2021. Retrieved10 November 2021.
  48. ^Chai, Yan; Guo, Ting; Jin, Changming; Haufler, Robert E.; Chibante, L. P. Felipe; Fure, Jan; Wang, Lihong; Alford, J. Michael; Smalley, Richard E. (1991). "Fullerenes wlth Metals Inside".Journal of Physical Chemistry.95 (20):7564–7568.doi:10.1021/j100173a002.
  49. ^"IGL immunoglobulin lambda locus [Homo sapiens (human)]". Retrieved10 November 2021.
  50. ^Constable, Peter, and Lorna A. Priest (January 17, 2019)SIL Corporate PUA Assignments 5.2aArchived 2010-02-23 at theWayback Machine.SIL InternationalArchived 2007-12-01 at theWayback Machine. pp. 59–60. Retrieved on July 20, 2020.
  51. ^Crystal, David (2008).Txtng: the gr8 db8. New York: Oxford University Press. pp. 131–137.ISBN 978-0-19-162340-0.Archived from the original on 2021-11-10. Retrieved2021-11-10.{{cite book}}: CS1 maint: publisher location (link)
  52. ^"crazyhouse".FICS Help.Free Internet Chess Server. 2008-02-28.Archived from the original on 2014-04-16. Retrieved2014-04-17.
  53. ^Alice Rawsthorn (March 21, 2010)."Why @ Is Held in Such High Design Esteem".The New York Times.Archived from the original on March 24, 2010. RetrievedApril 25, 2010.
  54. ^"At last, France has a name for the @ sign"Archived 2012-08-19 at theWayback Machine, December 9, 2002, iol.co.za
  55. ^Orthographe fixée par la Commission générale de terminologie et de néologie (Journal officiel du 8 décembre 2002)
  56. ^Paola Antonelli (March 22, 2010)."@ at MoMA". RetrievedApril 5, 2018.Germans, Poles, and South Africans call @ "monkey's tail" in each different language.
  57. ^"Morse '@'; character official as of May 3".The ARRL Letter.American Radio Relay League. April 30, 2004.Archived from the original on 2011-11-05. Retrieved2012-04-18.
  58. ^"@ belgisini nima uchun "kuchukcha" deb ataymiz?".Xabardor.uz (in Uzbek). 20 December 2019. Retrieved26 February 2024.

External links

[edit]
Look upcommercial-at orat sign in Wiktionary, the free dictionary.
Wikimedia Commons has media related toAt sign.
Commonpunctuation and othertypographical symbols
  •   ‘ ’   “ ”   ' '   " "   quotation mark 
  •   ‹ ›   « »   guillemet 
  •   ( )   [ ]   { }   ⟨ ⟩   bracket 
  •   ”   ditto mark 
Retrieved from "https://en.wikipedia.org/w/index.php?title=At_sign&oldid=1300816480"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp