Use Chinese characters as plugin name failed
Copy link to clipboard
Copied
Hi guys,
I use SDK to develop a plugin for Chinese users, for cpp files, I could use Chinese Character as parameter names successfully, but I want to show Chinese Name in Plugin menu which users can find their wanted plugin easily, I try to write a Chinese name in .r resource file which include Plugin infos, but I can not convert it to rcc correctly, I tried to add utf-8 symbol in visual studio compiling commands which use cl.exe to compile .r file, still not succeed, need Help
Copy link to clipboard
Copied
 
Copy link to clipboard
Copied
have you tried using universal cahcarter names / surrogate pairs?
i.e. "\U0001F607" or "\u0067" ect'.
Copy link to clipboard
Copied
 You mean like this and run compile command directly?
Copy link to clipboard
Copied
Finally, it show me ...................
Copy link to clipboard
Copied
try adding "u8" before the string. example:
u8"\u8c03\u6574"
Copy link to clipboard
Copied
or pehaps use the wide char equivalent. i'm not sure which string format AE uses for the pipl.
Copy link to clipboard
Copied
Still not succeed
Copy link to clipboard
Copied
well, i'm out of ideas.
Copy link to clipboard
Copied
Thanks for your kind help man!

