No, for two basic reasons:
e can only check one token;
- even if some trick could be devised, there's a fundamental problem with
^^.
When TeX is tokenizing a line of input and sees a character of category code 7 (usually ^ is assigned this code), it checks whether another identical character follows. If so, it checks whether the two following characters are among 0123456789abcdef; upon finding them it acts as if the input contained the character with ASCII code expressed by the two found characters interpreted as a number in hexadecimal format. Otherwise it looks at the following character, checks its ASCII code and inserts the character having code either 64 less or 64 more (depending on what alternative doesn't go beyond the interval [0,127]).
(Note: in LuaTeX or XeLaTeX there can be up to six consecutive ^ characters which start the procedure, but it's the same.)
Thus, even if you concocted a method for an extended “embellishment” argument type checking two characters, this would fail when
^^{
is input, because, according to the above rules, TeX would see ; to begin with: the ASCII code of { is 123 and subtracting 64 yields 59, the ASCII code of the semicolon.
OK, one could change the category code of ^… Would you try? I wouldn't.
The first basic reason remains.
eargument type.