I recently found that \[Gradient] and \[InlinePart] both expand (contract) to special symbols in MMA.
So far as I can tell (see InlinePart. What is it and what happened to it?) they have no built in meaning. Further, I can't find any Wolfram documentation of them, even in https://reference.wolfram.com/language/guide/ListingOfNamedCharacters.html.
Is there some introspection that can list all special symbols that expand like \[stuff]? The same goes for symbols entered as \[AliasDelimiter]stuff\[AliasDelimiter].
Here's what the symbols look like
OK the second part of the question concerns InputAliass, which don't seem to be collected in any one place, but are sprinkled throughout the filesystem, for instance, in Mathematica/SystemFiles/FrontEnd/TextResources/CommonFrontEndInit.tr
This question, then, amounts to basically lamenting that no method so far lists all of the existing glyphs. So far there's
- the Wolfram ListingOfNamedCharacters, missing many
- UnicodeCharacters.tr, missing a bit fewer glyphs
- Brute forcing with
"PrintableASCII"export of every char code, missing only a couple


Names["System`*"](hint, no need to escape ' if you use "... similar for `)! – Adam Aug 13 '21 at 01:53FromCharacterCodeapproach. Unfortunately all three approaches miss some glyphs (Wolfram listing, file spelunking, and programmatic generation). The glyphs produced only by the unicode search are\[TwoWayRule],\[Moon],\[Sun],\[CheckmarkedBox]and\[StepperULDR]whereULDRis a direction: neat! – Adam Aug 13 '21 at 05:39\[COMPATIBILITYNoBreak]compared to the list+unicode searching. – Adam Aug 13 '21 at 05:42