Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Percent sign

From Wikipedia, the free encyclopedia
Symbol for the fraction of a hundred
"%" redirects here. For the mod sign as used in modular arithmetic, seeModular arithmetic.

%
Percent sign
In UnicodeU+0025 %PERCENT SIGN (%)
Different from
Different fromU+2052 COMMERCIAL MINUS SIGN
U+00F7 ÷DIVISION SIGN
Related
See alsoU+2030 PER MILLE SIGN
U+2031 PER TEN THOUSAND SIGN (Basis point)

Thepercent sign% (sometimesper cent sign inBritish English) is the symbol used to indicate apercentage, a number orratio as afraction of 100. Related signs include thepermille (per thousand) sign and thepermyriad (per ten thousand) sign (also known as abasis point), which indicate that a number is divided by one thousand or ten thousand, respectively. Higher proportions useparts-per notation.

Correct style

[edit]

Form and spacing

[edit]

English style guides prescribe writing the percent sign following the number without any space between (e.g. 50%).[sources 1] However, theInternational System of Units andISO 31-0 standard prescribe a space between the number and percent sign,[8][9][10] in line with the general practice of using anon-breaking space between anumerical value and its correspondingunit of measurement.

Other languages have other rules for spacing in front of the percent sign:

  • InCzech and inSlovak, the percent sign is spaced with a non-breaking space if the number is used as a noun.[11] In Czech, no space is inserted if the number is used as an adjective (e.g. "a 50% increase"),[12] whereas Slovak uses a non-breaking space in this case as well.[13]
  • InCroatian, the percent sign is spaced[14] with a non-breaking space.
  • InFinnish, the percent sign is always spaced, and acase suffix can be attached to it using thecolon (e.g.50 %:n kasvu 'an increase of 50%').[15]
  • InFrench, the percent sign must be spaced with a non-breaking space.[16][17]
  • According to theReal Academia Española, inSpanish, the percent sign should be spaced now, despite the fact that it is not the linguistic norm.[18] Despite that, in North American Spanish (Mexico and theUS), several style guides and institutions either recommend the percent sign be written following the number without any space between or do so in their own publications in accordance with common usage in that region.[19][20]
  • InRussian, the percent sign is rarely spaced, contrary to the guidelines of the GOST 8.417-2002 state standard.
  • According to theSwedish Language Council, the percent sign should be preceded by a space inSwedish, as all other units.
  • InGerman, the space is prescribed by the regulatory body in the national standardDIN 5008.
  • InTurkish and some otherTurkic languages, the percent sign precedes rather than follows the number, without an intervening space.
  • InPersian texts, the percent sign may either precede or follow the number, in either case without a space.
  • InArabic, the percent sign follows the number; as Arabic is written fromright to left, this means that the percent sign is to the left of the number, usually without a space.
  • InHebrew, the percent sign is written to the right of the number, just as in English, without an intervening space. This is because numbers in Hebrew (which otherwise is written from right to left) are written from left to right, as in English.
  • InDutch, the official rule (NBN Z 01-002) is to place a space between the number and the sign (e.g. "een stijging van 50 %"), but most of the time, the space is missing (e.g. "een stijging van 50%").[21]

Usage in text

[edit]

It is often recommended that the percent sign only be used in tables and other places with space restrictions. In running text, it should be spelled out aspercent orper cent (often in newspapers). For example, not "Sales increased by 24% over 2006" but "Sales increased by 24 percent over 2006".[22][23][24]

Evolution

[edit]

Prior to 1425, there is no known evidence of a special symbol being used for percentages. TheItalian termper cento, "for a hundred", was used as well as several different abbreviations (e.g. "per 100", "p 100", "p cento"). Examples of this can be seen in the 1339 arithmetic text (author unknown) depicted below.[25] The letter p with itsdescender crossed by a horizontal or diagonal stroke (to indicate abbreviation)conventionally stood for per, por, par, or pur in Medieval and Renaissancepalaeography.[26]

1339 arithmetic text
1339 arithmetic text inRara Arithmetica, p. 437

At some point, a scribe used the abbreviationpc with a tiny loop or circle (depicting the ending-o used inItalian ordinals, as inprimo,secondo; it is analogous to the English-th as in25th). This appears in some additional pages of a 1425 text which were probably added around 1435.[27]

1425 arithmetic text inRara Arithmetica, p. 440[28]

Thepc with a loop eventually evolved into a horizontal fraction sign by 1650 (see below for an example in a 1684 text)[29] and thereafter lost theper.[28]

1684 arithmetic text
1684 arithmetic text inRara Arithmetica, p. 441

In 1925, D. E. Smith wrote, "Thesolidus form (A modern percentage sign, a diagonal line with a zero on either side) is modern."[30]

Encodings

[edit]

Unicode

[edit]

TheUnicode code points are:

  • U+0025 %PERCENT SIGN (HTML%,%[31]),
  • U+FF05 FULLWIDTH PERCENT SIGN
  • U+FE6A SMALL PERCENT SIGN
  • U+066A ٪ARABIC PERCENT SIGN, which has the circles replaced by square dots set on edge, the shape of the digit 0 inEastern Arabic numerals.
  • U+332B SQUARE PAASENTO,パーセント (pāsento, from English "percent") in one square character.

ASCII

[edit]

TheASCII code for the percentcharacter is 37, or 0x25 inhexadecimal.

Other uses

[edit]

In computers

[edit]

Names for the percent sign include percent sign (inITU-T),mod, grapes (inhacker jargon),[32] and the humorous double-oh-seven (inINTERCAL).

Incomputing, the percentcharacter is also used for themodulo operation inprogramming languages that derive their syntax from theC programming language, which in turn acquired this usage from the earlierB.[33]

In the textual representation ofURIs, a % immediately followed by a 2-digithexadecimal number denotes an octet specifying (part of) a character that might otherwise not be allowed in URIs (seepercent-encoding).

InSQL, the percent sign is awildcard character in "LIKE" expressions, for exampleSELECT*FROMtableWHEREfullnameLIKE'Lisa %' will fetch all records whose names start with "Lisa".

InTeX (and therefore also inLaTeX) andPostScript, and inGNU Octave andMATLAB,[34] a % denotes a linecomment.

InBASIC,Visual Basic,ASP, andVBA a trailing % after a variable name marks it as aninteger.

InASP, the percent sign can be used to indicate the start and end of the ASP code<%...... %>

InPerl % is thesigil forhashes.

In many programming languages' string formatting operations (performed by functions such asprintf andscanf), the percent sign denotes parts of the template string that will be replaced with arguments. (Seeprintf format string.) InPython andRuby the percent sign is also used as the string formatting operator.[35][36][37]

In thecommand processorsCOMMAND.COM (DOS) andCMD.EXE (OS/2 and Windows),%1, %2,... stand for the first, second,... parameters of abatch file. %0 stands for the specification of the batch file itself as typed on the command line. The % sign is also used similarly in the FOR command.%VAR1% represents the value of anenvironment variable named VAR1. Thus:setPATH=c:\;%PATH%sets a new value for PATH, that being the old value preceded by "c:\;".Because these uses give the percent sign special meaning, the sequence %% (two percent signs) is used to represent a literal percent sign, so that:setPATH=c:\;%%PATH%%would set PATH to the literal value "c:\;%PATH%".

In theC Shell andZ shell, % is part of the defaultcommand prompt.

In linguistics

[edit]

In linguistics, the percent sign is prepended to an example sentence or otherstring to show that it is judgedwell-formed (grammatical) by some speakers and ill-formed by others. This may be due to differences indialect or even individualidiolects.[38][39] This use is similar to those of theasterisk to mark ill-formed strings, thequestion mark to mark strings where well-formedness is unclear, and thenumber sign to mark strings that are syntactically well-formed but semantically or pragmatically nonsensical.

See also

[edit]

References

[edit]
  1. ^[1][2][3][4][5][6][7]
  1. ^"Guardian and Observer style guide: P".The Guardian. 30 April 2021.Archived from the original on 28 December 2019. Retrieved16 March 2023.
  2. ^"The Chicago Manual of Style".University of Chicago Press. 2003.Archived from the original on 5 January 2009. Retrieved5 January 2007.
  3. ^Publication Manual of the American Psychological Association. 1994. Washington, DC: American Psychological Association, p. 114.
  4. ^Merriam-Webster's Manual for Writers and Editors. 1998. Springfield, MA: Merriam-Webster, p. 128.
  5. ^Jenkins, Jana et al. 2011.The IBM Style Guide: Conventions for Writers and Editors. Boston, MA: Pearson Education, p. 162.
  6. ^Covey, Stephen R.FranklinCovey Style Guide: For Business and Technical Communication. Salt Lake City, UT: FranklinCovey, p. 287.
  7. ^Dodd, Janet S. 1997.The ACS Style Guide: A Manual for Authors and Editors. Washington, DC: American Chemical Society, p. 264.
  8. ^"SI Brochure".International Bureau of Weights and Measures. 2006.Archived from the original on 21 March 2019. Retrieved5 May 2016.
  9. ^"The International System of Units"(PDF).International Bureau of Weights and Measures. 2006.Archived(PDF) from the original on 13 March 2020. Retrieved6 August 2007.
  10. ^"Quantities and units – Part 0: General principles".International Organization for Standardization. 22 December 1999.Archived from the original on 29 May 2007. Retrieved5 January 2007.
  11. ^"Internetová jazyková příručka".Ústav pro jazyk český Akademie věd ČR. 2014.Archived from the original on 14 February 2015. Retrieved24 November 2014.
  12. ^"Jazyková poradna ÚJČ AV ČR: FAQ".Ústav pro jazyk český Akademie věd ČR. 2002. Archived fromthe original on 19 April 2002. Retrieved16 March 2009.
  13. ^"Jazyková poradňa".Petit Press, a.s. 2013. Archived fromthe original on 21 February 2009. Retrieved26 October 2019.
  14. ^"Znak za postotak".Hrvatski pravopis.Institut za hrvatski jezik i jezikoslovlje (in Croatian).
  15. ^"Kielikello 2/2006".kotus.fi. Kotimaisten kielten keskus. 2006.Archived from the original on 1 May 2015. Retrieved30 June 2015.
  16. ^Guide des principales règles typographiques(PDF).Université Joseph-Fourier. Retrieved8 June 2022.
  17. ^André, Jacques.Petites leçons de typographie(PDF). Rennes:Institut de recherche en informatique et systèmes aléatoires. p. 34. Retrieved8 June 2022.
  18. ^"El % se escribe separado de la cifra a la que acompaña".fundeu.es. Fundeu. 2012.Archived from the original on 24 November 2021. Retrieved24 November 2021.
  19. ^"Normas particulares de estilo".colmex.mx. Colegio de México. 2020.Archived from the original on 10 May 2022. Retrieved5 April 2022.
  20. ^"¿En un texto, es correcto usar el signo de porcentaje o tiene que escribirse por ciento?".academia.org.mx. Academia Mexicana de la Lengua. 2020.Archived from the original on 6 February 2023. Retrieved5 April 2022.
  21. ^"procentteken (spatie)".www.vlaanderen.be (in Dutch). Retrieved27 November 2021.
  22. ^"American Economic Review: Style Guide". Archived fromthe original on 25 December 2007.
  23. ^"UNC Pharmacy style guide". Archived fromthe original on 12 June 2007. Retrieved16 October 2007.
  24. ^"University of Colorado style guide". Archived fromthe original on 2 November 2007. Retrieved16 October 2007.
  25. ^Smith (1898), p. 437.
  26. ^Letter p. (Archived 18 April 2009 at theWayback Machine) / Cappelli, Adriano:Lexicon Abbreviaturarum (Archived 8 May 2015 at theWayback Machine). 2. verb. Aufl. Leipzig 1928. Wörterbuch der Abkürzungen: pp. 256–257.
  27. ^Smith (1898), pp. 439–440.
  28. ^abSmith (1898), p. 440.
  29. ^Smith (1898), p. 441.
  30. ^Smith (1925), Vol. 2, p. 250.
  31. ^HTML5 is the only version of HTML that has a named entity for the percent sign, seehttps://www.w3.org/TR/html4/sgml/entities.html ("The following sections present the complete lists of character entity references.") andhttps://www.w3.org/TR/2014/CR-html5-20140731/syntax.html#named-character-references ("percnt;").
  32. ^Raymond, Eric S., ed. (1996).The New Hacker's Dictionary (3rd ed.). MIT Press. p. 45.ISBN 9780262680929.
  33. ^Thompson, Ken (1996)."Users' Reference to B". Archived fromthe original on 6 July 2006.
  34. ^"2.7.1 Single Line Comments". GNU. Retrieved20 July 2018.
  35. ^"Python 2 – String Formatting Operations". Retrieved28 October 2015.
  36. ^"Python 3 – printf-style String Formatting". Retrieved28 October 2015.
  37. ^"Ruby – String#%".
  38. ^Trask, R. L. (1993).A Dictionary of Grammatical Terms in Linguistics. London: Routledge. p. 203.ISBN 0-415-08627-2.
  39. ^Crystal, David (2008).A Dictionary of Linguistics and Phonetics (6th ed.). Cambridge: Cambridge University Press. p. 355.ISBN 978-1-4051-5296-9.

Sources

[edit]
Commonpunctuation and othertypographical symbols
  •   ‘ ’   “ ”   ' '   " "   quotation mark 
  •   ‹ ›   « »   guillemet 
  •   ( )   [ ]   { }   ⟨ ⟩   bracket 
  •   ”   ditto mark 
Retrieved from "https://en.wikipedia.org/w/index.php?title=Percent_sign&oldid=1313470799"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp