Click here to Skip to main content
15,887,435 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need to encode the text entered in the textbox in Cyrillic, something like this

What I have tried:

C++
label->Text = u8 textbox->Text;
Posted

You should be able to use the capabilities of System::Text::Encoding to manage this. Have a look at the documentation Encoding Class (System.Text) | Microsoft Learn[^].
 
Share this answer
 
You might find this article and the others in the series helpful : Doing UTF-8 in Windows[^]. I don't think you need to encode it per se. Won't just reading and saving text written in Cyrillic be sufficient?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900