Description
On the heels of HBASE-18067, it would be nice to support namespaces and tables with names that fall outside of Latin alphabetical characters and numbers.
Our current regex for allowable characters is approximately [a-zA-Z0-9]+.
It would be nice to replace a-zA-Z with Java's \p{IsAlphabetic} which will naturally restrict the unicode character space down to just those that are part of the alphabet for each script (e.g. latin, cyrillic, greek).
Technically, our possible scope of allowable characters is, best as I can tell, only limited by the limitations of ZooKeeper itself https://zookeeper.apache.org/doc/r3.4.10/zookeeperProgrammers.html#ch_zkDataModel (as both table and namespace are created as znodes).