Var S : String;Begin S := 'Привет всем русским'; //Russian symbols (128-255 part of ASCII)If S[1] = 'П' Then ShowMessage('!');
S := Chr($C0) + Chr($C1) + Chr($C2);
If S[1] = 'А' (* Russian 'A' *) Then ...
If UTF8Copy(s, 1, 1) = 'П' Then ShowMessage('!');
It can be solved without lclproc module?