Space character
Encyclopedia : S : SP : SPA : Space character
| Punctuation |
|---|
|
apostrophe ( ' ) ( ’ ) brackets ( ( ) ) ( [ ] ) ( ) ( 〈 〉 ) colon ( : ) comma ( , ) dashes ( ‒ ) ( – ) ( — ) ( ― ) ellipsis ( … ) ( ... ) exclamation mark ( ! ) full stop/period ( . ) guillemets ( « » ) hyphen ( - ) ( ‐ ) interpunct ( · ) question mark ( ? ) quotation marks ( " ) ( ‘ ’ ) ( “ ” ) semicolon ( ; ) slash/solidus ( / ) |
| Interword separation |
|
spaces ( ) ( ) ( ) |
| General typography |
|
ampersand ( & ) asterisk ( * ) asterism ( ⁂ ) at ( @ ) backslash ( \ ) bullet ( • ) caret ( ^ ) currency ( ¤ ) & ¢, $, €, £, ¥ dagger ( † ) ( ‡ ) degree ( ° ) interrobang ( ‽ ) number sign ( # ) percent and related signs ( % ) ( ‰ ) ( ‱ ) pilcrow ( ¶ ) prime ( ′ ) Inverted exclamation point (¡) inverted question mark (¿) section sign ( § ) tilde ( ~ ) Irony mark Sarcasm mark umlaut/diaresis ( ¨ ) underscore/understrike ( _ ) vertical line/pipe/broken bar ( | ) ( ¦ ) |
In programming language syntax, spaces are frequently used to explicitly separate tokens. Aside from this use, spaces and other whitespace characters are usually ignored by modern programming languages. Exceptions are Haskell, ABC, and Python, which use the amount of whitespace in indentation to indicate the bounds of a block, and at least one experimental language called whitespace programming language, where whitespaces are the only meaningful syntactical element.
In word processors and text editors, if a line on a screen is shorter than the width of the screen or window, then the empty space to the right usually does not correspond with space characters in the file: there is simply a code indicating that the next text should be put on a new line. Thus, the size of the file is not made unnecessarily larger. If there are space characters, one usually does not see the difference; text editors and word processors often have an option to make them visible. Also, if there is a space character, the cursor can move there, otherwise usually not.
Spaces and digital typography
In computer character encodings, the normal, general-purpose en-width space is Unicode character U+{{{1 (32 decimal). When rendered, it is often considered insignificant when appearing at the end of a line of text, or when part of a sequence of whitespace characters, so it may be omitted or "collapsed" in such circumstances.
The non-breaking space, U+{{{1 (160 decimal), renders the same as a normal space but is expressly non-collapsible. It is often used to prevent line wrapping or to indent text, though some World Wide Web authorities discourage using it for those purposes.
An em dash can optionally be surrounded with a so-called hair space, U+{{{1 (8202 decimal). This space should be much thinner than a normal space, and is seldom used on its own. It can be written in HTML by using the numeric character reference   or  . Unfortunately, very few user agents are able to render a hair space correctly: in most cases the result is an unwanted symbol or a question mark on the screen, depending on the font and renderer capabilities.
| Normal space | left right | left right |
|---|---|---|
| Normal space with em dash | left — right | left — right |
| Hair space with em dash | left — right | left — right |
| No space with em dash | left—right | left—right |
Unicode defines several other space characters with specific semantics and rendering characteristics, as shown in the table below. Depending on the browser and fonts used to view this table, not all spaces may display properly:
| Code | No break | HTML entity | Name | In Block | Display | Description |
|---|---|---|---|---|---|---|
| U+0020 | not necessary | Space | Basic Latin | Normal space, same as ASCII character 0x20 | ||
| U+00A0 | ✓ | | No-Break Space | Latin-1 Supplement | Identical to U+0020, but not a point at which a line may be broken | |
| U+1680 |   | Ogham Space Mark | Ogham | Used for interword separation in Ogham text. Normally a vertical line in vertical text or a horizontal line in horizontal text, but may also be a blank space in "stemless" fonts. Requires an Ogham font. | ||
| U+2002 |   | En Space, or Nut | General Punctuation | Width of one en (half of one em) | ||
| U+2003 |   | Em Space, or Mutton | General Punctuation | Width of one em | ||
| U+2004 |   | Three-Per-Em Space, or Thick Space | General Punctuation | One third of an em wide | ||
| U+2005 |   | Four-Per-Em Space, or Mid Space | General Punctuation | One fourth of an em wide | ||
| U+2006 |   | Six-Per-Em Space | General Punctuation | One sixth of an em wide. In computer typography sometimes equated to U+2009. | ||
| U+2007 | ✓ |   | Figure Space | General Punctuation | In fonts with monospaced digits, equal to the width of one digit | |
| U+2008 |   | Punctuation Space | General Punctuation | As wide as the narrow punctuation in a font | ||
| U+2009 |   | Thin Space | General Punctuation | One fifth (sometimes one sixth) of an em wide | ||
| U+200A |   | Hair Space | General Punctuation | Thinner than a thin space | ||
| U+200B | ​ | Zero-Width Space | General Punctuation | Used to indicate word boundaries to text processing systems when using scripts that do not use explicit spacing; normally not a visible separation, but it may expand in passages that are fully justified | ||
| U+202F | ✓ |   | Narrow No-Break Space | General Punctuation | Similar to U+00A0 No-Break Space | |
| U+205F |   | Medium Mathematical Space | General Punctuation | Used in mathematical formulae | ||
| U+2060 | ✓ | ⁠ | Word Joiner | General Punctuation | Identical to U+200B, but not a point at which a line may be broken. Introduced in Unicode 3.2 to replace the deprecated "zero width no-break space" function of the U+FEFF character. | |
| U+3000 |   | Ideographic Space | CJK Symbols and Punctuation | As wide as a CJK character cell | ||
| U+FEFF | ✓ |  | Zero Width No-Break Space = Byte Order Mark (BOM) | Arabic Presentation Forms-B | Used primarily as a Byte Order Mark character. Use as an indication of non-breaking is deprecated as of Unicode 3.2. See U+2060 instead. |
Unicode also provides some visible characters to stand in for space when necessary in the "Control Pictures" block: the Symbol For Space ␠ (U+2420), the Blank Symbol ␢ (U+2422), and the Open Box ␣ (U+2423).
Space characters in markup languages
Space characters appearing in inconsequential places within element start tags in both XML and HTML are generally ignored by processors of those markup languages. For example, spaces that appear on either side of the "
In XML attribute values, sequences of whitespace characters are treated as a single space when the document is read by a parser[link]. Whitespace in XML element content is not changed in this way by the parser, but an application receiving information from the parser may choose to apply similar rules to element content. An XML document author can use the
In most HTML elements, a sequence of whitespace characters is treated as a single inter-word separator, which may manifest as a single space character when rendering text in a language that normally inserts such space between words.[link] Renderers are required to apply a more literal treatment of whitespace in certain elements, such as
In both XML and HTML, the non-breaking space character is not treated as "whitespace", so it is not subject to the rules above.
A zero-width space ​ is usually not visible, but it may expand in passages that are fully justified.
In HTML pages this space can be used as a potential line-break in long words as a replacement for the deprecated
From Wikipedia, the Free Encyclopedia. Original article here. Support Wikipedia by contributing or donating.=" that separates an attribute name from its value have no effect on the interpretation fo the document. Element end tags can contain trailing spaces, and empty-element tags in XML can contain spaces before the "/>".xml:space="preserve" attribute on an element to force the parser to discourage the downstream application from altering whitespace in that element's content.pre and any element for which CSS has been used to apply pre-like whitespace processing. In such elements, space characters will not be "collapsed" into inter-word separators.Zero-width space
However, this code is not semantic markup, and thus should not be used in HTML code.See also
External links
All text is available under the terms of the GNU Free Documentation License See Wikipedia Copyrights for details.
