The character sets used historically with Unix, including ASCII, don’t have a tick character, so it wasn’t used. As far as I’m aware no common usage for that character has been introduced since it’s become available; nor would it, since it’s not included in POSIX’s portable character set.
` was apparently originally included in ASCII (along with ^ and ~) to serve as a diacritic. When ASCII was defined, the apostrophe was typically represented by a ′-style glyph (“prime”, as used for minutes or feet) rather than a straight apostrophe ', and was used as a diacritic acute accent too.
Historically, in Unix shell documentation, ` was referred to as a grave accent, not a backtick. The lack of a forward tick wouldn’t have raised eyebrows, especially since ' was used as the complementary character (see roff syntax).
´is called acute accent only when used as a diacritic (and, conversely, ``` is called grave accent). When used alone, as the latter is a backtick, it seemed natural for the former to be called a tick or forward tick (please let's not call it reverse backtick). I've modified the title question to include your note. – dr_ Nov 02 '18 at 10:20', ASCII 39, U+0027) has meaning in many of the Unix shells (e.g. the Bourne shell/bin/sh) and Linux shells (e.g./bin/bash). It prevents words splitting and all expansions. Sols '$foo [bar]'returns an error unless there is a file named$foo [bar]in the current directory. It's equvalent tols "\$foo [bar]"andls \$foo\ \[bar\]. – pts Nov 02 '18 at 14:24',", ```) have special meaning in Unix shells. – pts Nov 02 '18 at 14:33