I want to check that some letter belongs to Russian alphabet. I can do it with direct comparizon with Cyrillic letters:
letter in ('А', 'Б', 'В', 'Г', 'Д', 'Ж', ...)
Is there some simpler approach? E.g. for English alphabet I could use rank() function:
rank('A') <= rank(letter) <= rank('z')
But this function doesn't work for UTF-8 encoding. How can I get position of the letter in UTF-8 table?
I believe you could use the
BASECHAR
function. This will convert the character to it's unicode escape.Returns: