What I need is to select all records containing characters from Unicode blocks. For example, next regex matches string that consists only from characters of Basic Latin unicode block:
^[\u0000-\u007F]+$
How unicode blocks could be used in sql queries?