The connection with asterisk/Asterix makes it so much better.
FWIW, I only realized last year, ~30 years after I read the books, that Idefix was named thus because of "idée fixe"[0].
Ah, the unexpected depth of a children comic book!
- Panoramix (panorama) - Abraracourcix (a bras racourcis) - Bonnemine, Assurancetourix, Agecanonix, etc.
Realistically I've never seen most of those symbols in any book I've ever read. If you're regularly using more than 2 footnotes a page, you're probably better of numbering them and moving the references to the end of the chapter or book.
Also, some citation styles make heavy use of footnotes.
(1) The paragraph marker ¶ is called a pilcrow or alinea.
(2) The names sin and cos were invented by William Oughtred, whose 1631 book Clavis Mathematicae, The Key to Mathematics was the first use in print of the saltire (, a rotated +) for multiplication.
(3) Traditionally serif faces included a six-pointed asterisk, while sans serif asterisks had five, but in practice this is no longer an observed convention.
"." is the wildcard character. "*" is a quantifier meaning 0 or more of the previous.
ie.: in most OSes you can use * as wildcard for filename.
file.*
will refer to all files named "file" with any extension
.zip
will refer to all files with any name as long as they have the zip extension
is a wildcard in most contexts while "." is wildcard only in regex that i know.
Perhaps this is where the use of * as the wild-card character comes from. I find regular expressions can induce swearing, occasionally.