I try to write all the UNICODE characters with Chr(), but apparently it's not also easy than that

I go to Wikipedia page
https://en.wikipedia.org/wiki/List_of_U ... characters
If i want write the "Ƶ", i see a Decimal column with "437" number
So i writeU+01B5 Ƶ 437 Latin Capital Letter Z with stroke
Code: Select all
RenameFile("D:\Nouveau dossier", "D:\" + Chr(437))

But if i want use a Cyrillic character for exampler
The table on Wikipedia not have decimal column

And if i writeU+04E8 Ө Cyrillic Capital Letter Barred O 0633
Code: Select all
RenameFile("D:\Nouveau dossier", "D:\" + Chr(0633))

Is it possible to write all the characters of the world, with only Chr() function and without adding or modify orginal Windows ?
Have a good day