I noticed that the current definition of the POSIX "graph" character class is written as:
|
"graph" -> ['\41'..'\126'] |
According to the Wikibooks: Regular Expressions - POSIX Basic Regular Expressions, the [:graph:] character class is equivalent to [^ [:cntrl:]].
So "graph" class should cover characters from decimal 33 through 126.