Backtick

Last updated • 7 min readFrom Wikipedia, The Free Encyclopedia

`
Backtick
In  Unicode U+0060`GRAVE ACCENT (symbol)
Related
See alsoU+0300̀ COMBINING GRAVE ACCENT (diacritic)

The backtick` is a typographical mark used mainly in computing. It is also known as backquote, grave, or grave accent .

Contents

The character was designed for typewriters to add a grave accent to a (lower-case [a] ) base letter, by overtyping it atop that letter. [1] On early computer systems, however, this physical dead key+overtype function was rarely supported, being functionally replaced by precomposed characters. [b] Consequently, this ASCII symbol was rarely (if ever) used in computer systems for its original aim and became repurposed for many unrelated uses in computer programming.

The sign is located on the left-top of a US or UK layout keyboard, next to the 1 key. Provision (if any) of the backtick on other keyboards varies by national keyboard layout and keyboard mapping.

History

Typewriters

Spanish typewriter (QWERTY keyboard) with dead keys for acute, circumflex, diaeresis and grave accents. Idazmakina.jpg
Spanish typewriter (QWERTY keyboard) with dead keys for acute, circumflex, diaeresis and grave accents.

On typewriters designed for languages that routinely use diacritics (accent marks), there are two possible solutions. Keys can be dedicated to pre-composed characters or alternatively a dead key mechanism can be provided. With the latter, a mark is made when a dead key is typed but, unlike normal keys, the paper carriage does not move on and thus, the next letter to be typed is printed under the accent.

Incorporation into ISO 646 and ASCII

The incorporation of the grave symbol into ASCII is a consequence of this prior existence on typewriters. This symbol did not exist independently as a type or hot-lead printing character.

It appears to have been at their May 13–15, 1963 meeting that the CCITT decided that the proposed ISO 7-bit code standard would be suitable for their needs if a lower case alphabet and five diacritical marks, including the grave accent, were added to it. At the October 29–31 meeting, then, the ISO subcommittee altered the ISO draft to meet the CCITT requirements, replacing the up-arrow and left-arrow with diacriticals, adding diacritical meanings to the apostrophe and quotation mark, and making the number sign a dual for the tilde. [2]

Yucca's free information site

Thus, ISO 646 was born and the ASCII standard updated to include the backtick and other symbols. [c]

As surrogate of apostrophe or (opening) single quote

Some early ASCII peripherals designed the backtick and apostrophe to be mirror images of each other: and . [3] This allowed them to be used as matching pairs of open and close quotes while still being somewhat usable as grave and acute accents, made apostrophes typographically correct, and allowed the apostrophe to be used as a prime. This had a number of problems that led most modern systems and Unicode to render the apostrophe as a "straight" one:

This can still be seen in documents and email from that time (before 1990), and in output generated by some UNIX console programs such as man pages. Institutions that traditionally had used it have abandoned or deprecated it. [4] [5]

Computing

Command-line interface languages

Many command-line interface languages and the scripting (programming) languages like Perl, PHP, Ruby and Julia (though see below) use pairs of backticks to indicate command substitution. A command substitution is the standard output from one command, into an embedded line of text within another command. [6] [7] For example, using $ as the symbol representing a terminal prompt, the code line:

$ echo"It is now `date`"It is now Fri Mar 28 00:57:37 UTC 2025

In all POSIX shells (including Bash and Zsh), the use of backticks for command substitution is now largely deprecated in favor of the notation $(...), so that the example above would be re-written:

$ echo"It is now $(date)"

The new syntax allows nesting, for example:

$ echo"An absolute path to the 'zcat' command is $(readlink-e"$(type-Pzcat)")"An absolute path to the 'zcat' command is /usr/bin/gzip

Markup languages

It is sometimes used in source code comments to indicate code, e.g.,

/* Use the `printf()` function. */

This is also the format the Markdown formatter uses to indicate code. [8] Some variations of Markdown support "fenced code blocks" that span multiple lines of code, starting (and ending) with three backticks in a row (```). [9]

Programming languages

constname="Mary",pet="lamb";// Set variableslettemp=`${name} has a little ${pet}!`;console.log(temp);// => "Mary has a little lamb!";

Games

In many PC-based computer games in the US and UK, the ` key is used to open the console so the user can execute script commands via its CLI. [ citation needed ] This is true for games such as Factorio , Battlefield 3 , Half-Life , Halo CE , Quake , Half-Life 2 , Blockland , Soldier of Fortune II: Double Helix , Unreal , Counter-Strike , Crysis , Morrowind , Oblivion , Skyrim , [13] Fallout: New Vegas , Fallout 3 , Fallout 4 , RuneScape , and games based on the Quake engine or Source engine. [ citation needed ] While not necessarily the original progenitor of the console key concept, Quake is still widely associated with any usage of the ` key as a toggle for a drop-down console, often being referred to as the "Quake Key". In 2021, Windows Terminal introduced a "Quake Mode" which enables a global shortcut of ⊞ Win+` that opens a terminal window pinned to the top half of the screen. [14]

See also

Notes

  1. Upper case letters would require the character to be printed higher on the page
  2. In ISO/IEC 8859-1 ("ISO Latin 1") and subsequently in Unicode.
  3. ISO 646 (and ASCII, which it includes) is a standard for 7-bit encoding, providing just 96 printable characters (and 32 control characters). This was insufficient to meet the needs of Western European languages and so the standard specifies certain code points that are available for national variation. The code point allocated to backtick is 0x60 (decimal 96) is one such. Consequently, code-point 0x60 was often reallocated in local character sets to a more useful character. For example, in the French ISO 646 standard, the character at this position is μ . Many older UK computers (such as the ZX Spectrum and BBC Micro) have the pound sign (£) symbol at character 0x60, although BS 4730 (the British ISO 646 variant) placed '£' at position 0x23 instead. With the arrival of 8-bit "extended ASCII", this issue was largely mitigated, though not fully resolved until Unicode was established.

References

  1. Kuhn, Markus. "Apostrophe and acute accent confusion". Department of Computer Science and Technology, University of Cambridge. This key is on German typewriters a non-spacing key (DIN 2137). It does not advance the cursor, but causes the next character to appear below the accent
  2. "Character histories: notes on some ASCII code positions".
  3. Kuhn, Markus. "ASCII and Unicode quotation marks". Department of Computer Science and Technology, University of Cambridge. Please do not use the ASCII grave accent as a left quotation mark
  4. "GNU Coding Standards: Quote Characters". GNU Coding Standards. Free Software Foundation. 19 February 2019. Retrieved 12 March 2019. In the C locale, the output of GNU programs should stick to plain ASCII for quotation characters in messages to users: preferably 0x22 (‘"’) or 0x27 (‘'’) for both opening and closing quotes. Although GNU programs traditionally used 0x60 (‘`’) for opening and 0x27 (‘'’) for closing quotes, nowadays quotes ‘`like this'’ are typically rendered asymmetrically, so quoting ‘"like this"’ or ‘'like this'’ typically looks better.
  5. Eggert, Paul (23 January 2012). "makeinfo should quote 'like this' instead of `like this'". bug-texinfo Archives. Retrieved 27 March 2018.
  6. "Command Substitution". wooledge.org. Retrieved 6 August 2024.
  7. "An Introduction to the Z Shell – Command/Process Substitution". zsh.sourceforge.net. Retrieved 27 March 2018.
  8. "Daring Fireball: Markdown Syntax Documentation".
  9. "GitHub Flavored Markdown Spec". Archived from the original on 21 February 2022. Retrieved 23 February 2022.
  10. "Template literals (Template strings)". MDN Web Docs. Retrieved 22 May 2019.
  11. R Core Team, Quotes: Quotes, R Foundation for Statistical Computing.
  12. Odersky, Martin (24 May 2011), The Scala Language Specification Version 2.9
  13. "Skyrim:Console". UESPWiki. Retrieved 15 November 2019.
  14. Cinnamon, Kayla. "Windows Terminal Preview 1.9 Release". devblogs.microsoft.com. Retrieved 5 June 2023.