| * | |
|---|---|
Asterisk | |
| In Unicode | U+002A*ASTERISK (*, *) |
| Related | |
| See also | U+203B※ REFERENCE MARK (komejirushi) U+A673꙳ SLAVONIC ASTERISK |
The asterisk ( /ˈæstərɪsk/ ), *, is a typographical symbol that is a stylised image of star. [1] [a] An asterisk is usually five- or six-pointed in print and six- or eight-pointed when handwritten, though more complex forms exist. Its most common use is to call out a footnote. It is also often used to censor words considered offensive. It is often vocalized as star, especially by computer scientists and mathematicians (as, for example, in the A* search algorithm or C*-algebra ).
The English term asterisk is from Late Latin asteriscus, from Ancient Greek ἀστερίσκος, asteriskos, "little star". [1] [2]
The word asterisk is sometimes said as if it were pronounced astericks or asterix due to a process called metathesis. Because of this, some people have erroneously inferred that astericks is the plural of a singular asterick. A 2014 survey of the Usage Panel of The American Heritage Dictionary of the English Language found that 24% of panelists thought the asterix pronunciation was acceptable and 19% found asterick to be acceptable. However, only 7% and 6% of panelists preferred the pronunciation of asterix and asterick respectively. [1]
One hypothesis for the origin of the asterisk used to mark notes is that it stems from the 5,000-year-old Sumerian character dingir, 𒀭, [3] though this hypothesis seems to only be based on visual appearance. [4]
The asterisk was one of several symbols developed by scholars of Homeric poetry at the Library of Alexandria over 2,000 years ago. [5] Zenodotus, the first librarian at the Alexandrian Mouseion, used the obelus, a symbol placed in the margins to indicate a line found to be spurious. A later librarian, Aristophanes, continued the use of the obelus along with other textual notations like a small star for passages that did not make sense. [6] Aristophanes' student and successor, Aristarchus of Samothrace, introduced a formal system of textual criticism marks including the obelus, asteriskos, and several other Aristarchian symbols. [7] Aristarchus used the asteriskos to mark lines that were duplicated elsewhere, and the asterisk combined with the obelus to indicate lines considered to be spurious duplications. [8] Origen is known to have later used the asteriskos to mark missing Hebrew lines from his Hexapla. [9] In the Middle Ages, the asterisk (along with other symbols like the manicule) was used to emphasize a particular part of a text, often linking those parts of the text to a marginal comment. [10] The asterisk was frequently used to indicate footnotes in the era of print media. [11]
When toning down expletives, asterisks are often used to replace letters. For example, the word "badword" might become "ba***rd", "b*****d", "b******" or even "*******". [12] Vowels tend to be censored with an asterisk more than consonants, but the intelligibility of censored profanities with multiple syllables such as "b*dw*rd" and "b*****d" or "ba****d", or uncommon ones is higher if put in context with surrounding text. [13] In comics, an entire swear word may be replaced with a grawlix, a string of typographic symbols used to indicate undefined profanity. [14]
Asterisks are one method used to redact nonpublic information. [15] When a document containing classified information is published, the document may be redacted or "sanitized" by replacing the classified information with asterisks. For example, the Intelligence and Security Committee Russia report. [16]
In colloquial usage, an asterisk attached to a sporting record indicates that it is somehow tainted. This is because results that have been considered dubious or set aside are recorded in the record books with an asterisk rendering to a footnote explaining the reason or reasons for concern. [17] During the first decades of the 21st century, the asterisk came to denote a tainted accomplishment, initially due to its use in North American sports records. [18] This "tainted" usage soon spread to American politics. [19]
The usage of the term in sports arose during the 1961 baseball season in which Roger Maris of the New York Yankees was threatening to break Babe Ruth's 34-year-old single-season home run record. Ruth had amassed 60 home runs in a season with only 154 games, but Maris was playing the first season in the American League's newly expanded 162-game season. Baseball Commissioner Ford C. Frick, a friend of Ruth's during the legendary slugger's lifetime, held a press conference to announce his "ruling" that should Maris take longer than 154 games both records would be acknowledged by Major League Baseball, but that some "distinctive mark" [his term] [20] be placed next to Maris', which should be listed alongside Ruth's achievement in the "record books". The asterisk as such a mark was suggested at that time by New York Daily News sportswriter Dick Young, not Frick. [20] The reality, however, was that MLB had no direct control over any record books until many years later, and it all was merely a suggestion on Frick's part. Within a few years the controversy died down and all prominent baseball record keepers listed Maris as the single-season record holder for as long as he held the record. [20]
Nevertheless, the stigma of holding a tainted record remained with Maris for many years, and the concept of a real or figurative asterisk denoting less-than-accepted "official" records has become widely used in sports and other competitive endeavors. A 2001 TV movie about Maris's record-breaking season was called 61* (pronounced sixty-one asterisk) in reference to the controversy. [21]
Uproar over the integrity of baseball records and whether or not qualifications should be added to them arose again in the late 1990s, when a steroid-fueled power explosion led to the shattering of Maris' record. Even though it was obvious - and later admitted [22] - by Mark McGwire that he was heavily on steroids when he hit 70 home runs in 1998, ruling authorities did nothing - to the annoyance of many fans and sportswriters. Three years later self-confessed steroid-user Barry Bonds pushed that record out to 73, and fans once again began to call for an asterisk in the sport's record books.
Fans were especially critical and clamored louder for baseball to act during the 2007 season, as Bonds approached and later broke Hank Aaron's career home run record of 755. [23]
The Houston Astros' 2017 World Series win was marred after an investigation by MLB revealed the team's involvement in a sign-stealing scheme during that season. Fans, appalled by what they perceived to be overly lenient discipline against the Astros players, nicknamed the team the "Houston Asterisks". [24]
The asterisk has several uses in cricket:
In computer science, the asterisk is commonly used as a wildcard character, or to denote pointers, repetition, or multiplication.
Document 1, search terms such as Doc* and D*ment* would return this file. Due to being a wildcard, they could also return files like Document 2 and (only the latter) Dark Knight Monument.jpg. Document* would in fact return any file that begins with Document, and D*ment* any file that began with D and had 'ment' somewhere in its name.lck, then follow it with *luck or luck* (the placement of the * on the left or right is a matter of personal style) to correct the word's spelling, or if it's someone else that notices the mistake, they might also use *luck or luck*. [25] This also applies to typos that result in a different word from the intended one but are correctly spelled.*cough*. [26] [ better source needed ]| Markdown | Italicized text is the *cat's meow*. | I just love **bold text**. | This text is ***really important***. |
|---|---|---|---|
| HTML | Italicized text is the <em>cat's meow</em>. | I just love <strong>bold text</strong>. | This text is <em><strong>really important</strong></em>. |
| Rendered Output | Italicized text is the cat's meow. | I just love bold text. | This text is really important. |
Many programming languages and calculators use the asterisk as a symbol for multiplication. It also has a number of special meanings in specific languages, for instance:
*LIKE-THIS*.5**3 is 53 = 125.deffunction1(a,b,c,d):print(a,b,c,d)deffunction2(first,*args):# args will be a tuple# the name 'args' is convention: it may be any parameter nameprint(args)deffunction3(first,**kwargs):# kwargs will be a dict# the name 'kwargs' is convention: it may be any parameter nameprint(kwargs)function1(1,2,3,4)# prints 1 2 3 4function1(*[1,2,3,4])# prints 1 2 3 4function1(**{"a":5,"b":6,"c":7,"d":8})# prints 5 6 7 8function2(1,2,3,4)# prints (2, 3, 4), 1 is not part of argsfunction2(99)# prints (), unfilled *parameter will be ()function3(0,e=3,f=9)# prints {'e': 3, 'f': 9}, 0 is not part of kwargsfunction3(0)# prints {}, unfilled **parameter will be {}*X representing eX, and Y*X representing YX.SYSOUT=*, and as a self-reference in place of a procedure step name to refer to the same procedure step where it appears.In the B programming language and languages that borrow syntax from it, such as C, PHP, Java, or C#, comments in the source code (for information to people, ignored by the compiler) are marked by an asterisk combined with the slash:
/* This section displays message if user input was not valid (comment ignored by compiler) */CSS also uses this comment format:
body{/* This ought to make the text more readable for far-sighted people */font-size:24pt;}Some Pascal-like programming languages, such as Object Pascal, Modula-2, Modula-3, and Oberon, and other languages such as ML, Wolfram Language (Mathematica), AppleScript, OCaml, Standard ML, and Maple, use an asterisk combined with a parenthesis:
(* Do not change this variable - it is used later (comment ignored by compiler) *)Each computing language has its own way of handling comments; /* ... */ and similar notations are not universal.
The asterisk was a supported symbol on the IBM 026 Keypunch (introduced in 1949 and used to create punch cards with data for early computer systems). [28] It was also included in the FIELDATA character encoding [29] and the ASCII standard. [30] [31] [32]
In fluid mechanics an asterisk in superscript is sometimes used to mean a property at sonic speed. [33]
In linguistics, an asterisk may be used for a range of purposes depending on what is being discussed. The symbol is used to indicate reconstructed words of proto-languages (for which there are no records). For modern languages, it may be placed before posited problematic word forms, phrases or sentences to flag that they are hypothetical, ungrammatical, unpronounceable, etc.
Historical linguist August Schleicher is cited as first using the asterisk for linguistic purposes, specifically for unattested forms that are linguistic reconstructions. [35] : 208
Using the asterisk for descriptive and not just historical purposes arose in the 20th century. [36] : 334 By analogy with its use in historical linguistics, the asterisk was variously prepended to "hypothetical" or "unattested" elements in modern language. [36] : 332 Its usage also expanded to include "non-existent" or "impossible" forms. Leonard Bloomfield (1933) uses the asterisk with forms such as *cran, impossible to occur in isolation: cran- only occurs within the compound cranberry. [37] : 160 [36] : 331 Such usage for a "non-existent form" was also found in French, German and Italian works in the middle of the 20th century. [36] : 332–34
Asterisk usage in linguistics later came to include not just impossible forms, but "ungrammatical sentences", those that are "ill formed for the native speaker". [36] : 332 The expansion of asterisk usage to entire sentences is often credited to Noam Chomsky, but Chomsky in 1968 already describes this usage as "conventional". [36] : 330 Linguist Fred Householder claims some credit, [38] : 365 [36] : 331 but Giorgio Graffi argues that using an asterisk for this purpose predates his works. [36] : 336 [b]
The meaning of the asterisk usage in specific linguistic works may go unelucidated so can be unclear. [38] : 369 [c] Linguistics sometimes uses double asterisks (**), another symbol such as the question mark, or both symbols (e.g. ?*) to indicate degrees of unacceptability. [38] : 369
In historical linguistics, the asterisk marks words or phrases that are not directly recorded in texts or other media, and that are therefore reconstructed on the basis of other linguistic material by the comparative method. [39]
In the following example, the Proto-Germanic word *ainlif is a reconstructed form.
A double asterisk (**) sometimes indicates an intermediary or proximate reconstructed form (e.g. a single asterisk for reconstructed thirteenth century Chinese and a double asterisk for reconstructions of older Ancient Chinese [40] : 5 or a double asterisk for proto-Popolocan and a single asterisk for intermediary forms [41] : 322 ).
In other cases, the double asterisk denotes a form that would be expected according to a rule, but is not actually found. That is, it indicates a reconstructed form that is not found or used, and in place of which another form is found in actual usage:
In most areas of linguistics, but especially in syntax, an asterisk in front of a word or phrase indicates that the word or phrase is not used because it is ungrammatical. [36] : 332
An asterisk before a parenthesis indicates that the lack of the word or phrase inside is ungrammatical, while an asterisk after the opening bracket of the parenthesis indicates that the existence of the word or phrase inside is ungrammatical—e.g., the following indicates "go the station" would be ungrammatical:
Use of an asterisk to denote forms or sentences that are ungrammatical is often complemented by the use of the question mark (?) to indicate a word, phrase or sentence that is avoided, questionable or strange, but not necessarily outright ungrammatical. [d]
Other sources go further and use several symbols (e.g. the asterisk, question mark, and degree symbol °) to indicate gradations or a continuum of acceptability. [e]
Since a word marked with an asterisk could mean either "unattested" or "impossible", it is important in some contexts to distinguish these meanings. In general, authors retain asterisks for "unattested", and prefix x, **, †, or ? for the latter meaning. [f] An alternative is to append the asterisk (or another symbol, possibly to differentiate between even more cases) at the end.[ citation needed ]
In optimality theory, asterisks are used as "violation marks" in tableau cells to denote a violation of a constraint by an output form. [47]
In phonetic transcription using the International Phonetic Alphabet and similar systems, an asterisk was historically used to denote that the word it preceded was a proper noun. [48] [49] See this example from W. Perrett's 1921 transcription of Gottfried Keller's Das Fähnlein der sieben Aufrechten: [50]
This convention is no longer usual. [51]
The asterisk has many uses in mathematics. The following list highlights some common uses and is not exhaustive.
The asterisk is used in all branches of mathematics to designate a correspondence between two quantities denoted by the same letter – one with the asterisk and one without.
In fine mathematical typography, the Unicode character U+2217∗ASTERISK OPERATOR (in HTML, ∗; not to be confused with U+204E⁎LOW ASTERISK) is available. This character also appeared in the position of the regular asterisk in the PostScript symbol character set in the Symbol font included with Windows and Macintosh operating systems and with many printers.[ citation needed ] It should be used for a large asterisk that lines up with the other mathematical operators, sitting on the math centerline rather than on the text baseline. [53]
A Star of Life, a six-bar asterisk overlaid with the Rod of Asclepius (the symbol of health), may be used as an alternative to cross or crescent symbols on ambulances.
In many scientific publications, the asterisk is employed as a shorthand to denote the statistical significance of results when testing hypotheses. When the likelihood that a result occurred by chance alone is below a certain level, one or more asterisks are displayed. Popular significance levels are <0.05 (*), <0.01 (**), and <0.001 (***).
On a tone dialling telephone keypad, the star key is one of the two special keys (the other is the square key – almost invariably replaced by the number sign # (called 'pound sign' (US), 'hash' (other countries), or 'hex'), and is found to the left of the zero [55] ). For the star key, the International Telecommunication Union recommends U+26B9⚹ SEXTILE (in E.161). [55] The Unicode Consortium suggests U+2217∗ ASTERISK OPERATOR as a valid alternative usage of that character [56] They are used to navigate menus in systems such as voice mail, or in vertical service codes.
This section needs additional citations for verification .(April 2020) |
| Part of a series on |
| Linguistics |
|---|
| |
The gender star (German: Genderstern, or diminutive Gendersternchen; lit. 'gender asterisk') is a nonstandard typographic style used by some authors in gender-neutral language in German. [63]
It is formed by placing an asterisk after the stem and appending the feminine plural suffix "-innen". For example, Fahrer ([male] driver, singular & plural) becomes Fahrer*innen (drivers). The gender star makes it possible to refer to all genders while also including non-binary people. [64]
In speech, the gender star is sometimes signalled by a glottal stop. [65] [66]
Alternatives to the gender star include Binnen-I (with medial capital I), the gender gap (where an underscore takes the place of the asterisk) or using inherently gender neutral terms, such as 'people' instead of 'man' or 'woman'. [67]
The gender star was named the German Anglicism of the Year in 2018 by the Leibniz-Institut für Deutsche Sprache. [68]
The Unicode standard has a variety of asterisk-like characters, compared in the table below. (Characters will display differently in different browsers and fonts.) The reason there are so many is chiefly because of the controversial[ citation needed ] decision to include in Unicode the entire Zapf Dingbats symbol font.
| Asterisk | Asterisk operator | Heavy asterisk | Small asterisk | Full-width asterisk | Open-centre asterisk |
|---|---|---|---|---|---|
| * | ∗ | ✱ | ﹡ | * | ✲ |
| Low asterisk | Arabic star | East Asian reference mark | Teardrop-spoked asterisk | Sixteen-pointed asterisk |
|---|---|---|---|---|
| ⁎ | ٭ | ※ | ✻ | ✺ |
°; marginally acceptable, question mark (?); unacceptable, asterisk (*)." [45] : 123–24 ?) denotes uncertainty; an asterisk (*) indicates a classificatory base not encountered in my own data." [46] : 119 The statement in sch. γ 71 that he used the asterisk and obelized asterisk to mark passages wrongly duplicated in different places mistakenly ascribes Aristarchus' practice to him; he used the asterisk to mark lines that appeared not to make sense (frag. 424 Slater
Aristarchus used these critical signs: the obelos ('spit'), a dash (—) placed next to the lines that he considered suspect but did not want to delete completely from the text, an operation called athetesis. The asteriskos (※) indicated a line repeated elsewhere, and combined with an obelos (※—) it marked repeated lines which were athetized because they were unsuitable in that specific passage.
Plenty of sections of the report contain a string of asterisk at a crucial point, eliding strategic specifics (e.g. this paragraph on exactly how Russia is targeting critical UK infrastructure: "Russia has also undertaken cyber pre-positioning activity on other nations' Critical National Infrastructure (CNI). The National Cyber Security Centre (NCSC) has advised that there is *** Russian cyber intrusion into the UK's CNI – particularly marked in the *** sectors.)")
"In an entirely different sphere of American life [...]
{{cite book}}: CS1 maint: numeric names: authors list (link)