All the Unicode characters and CHR() [Resolved]
Posted: Wed May 29, 2024 7:12 pm
Hello at all
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
and my folder is named now "Ƶ" chr(437)
But if i want use a Cyrillic character for exampler
The table on Wikipedia not have decimal column
My folder is not named "Ө" but "ɹ" 
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
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