I don't know if it's a coincidence, but ! is the earliest non-system and non-whitespace character in the ASCII table (at #32). In terms of parsing, would that make it quicker?
No. And most language design committees would prefer to choose an easy-to-learn, easy-to-remember, and easy-to-type syntax over any minor benefit from having smaller byte values.
Hand-rolled parsers sometimes use lookup-tables to classify tokens based on the first character. For example, Mozilla's JS engine has the following in jsscan.cpp which defines the lexer:
static const uint8 firstCharKinds[] = {
/* 0 1 2 3 4 5 6 7 8 9 */
/* 0+ */ _______, _______, _______, _______, _______, _______, _______, _______, _______, Space,
/* 10+ */ EOL, Space, Space, EOL, _______, _______, _______, _______, _______, _______,
/* 20+ */ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
/* 30+ */ _______, _______, Space, _______, String, _______, Ident, _______, _______, String,
/* 40+ */ OneChar, OneChar, _______, Plus, OneChar, _______, Dot, _______, HexOct, Dec,
/* 50+ */ Dec, Dec, Dec, Dec, Dec, Dec, Dec, Dec, Colon, OneChar,
...
but using | over ! won't let you make such a table much smaller. CSS and HTML are heavyweight so memory-constrained devices tend not to parse CSS and saving a few bytes ('|' - 'z' == 2) in the lexer is not going to affect browser performance significantly.
Are there languages other than CSS where an exclamation mark is used for affirmation rather than negation?-- How about natural languages? ;) – delnan Mar 29 '12 at 15:29//) not work in CSS? You could create a whole wiki entry of stuff like this. – j08691 Mar 29 '12 at 15:31!for "not" because it's confusing. For example, Python's not operator isnot. – Brendan Long Mar 29 '12 at 15:32