Tagged Questions
9
votes
5answers
438 views
Is it possible to reliably auto-decode user files to Unicode? [C#]
I have a web application that allows users to upload their content for processing. The processing engine expects UTF8 (and I'm composing XML from multiple users' files), so I need to ensure that I ...
4
votes
3answers
2k views
Displaying a unicode text in C#
My App displays English, Japanese and Chinese characters on a TextBox and a LinkLabel.
Currently, I check if there are unicode characters and change the font to MS Mincho or else leave it in Tahoma.
...
3
votes
3answers
278 views
Unicode strings in .Net with Hebrew letters and numbers
There is a strange behavior when trying to create string which contains a Hebrew letter and a digit. The digit will always be displayed left to the letter. For example:
string A = "\u05E9"; //A ...
2
votes
4answers
308 views
Byte[] to String to Byte[] — How to do so?
Ignore the reasons why someone would want to do this.... :)
I want to be able to take some bytes, covert them to a string, then later back to the same byte array. Same length and everything.
I've ...
0
votes
1answer
128 views
Send unicode String from C# to Java
On C# side, I have this code to send unicode String
byte[] b = System.Text.Encoding.UTF8.GetBytes(str);
string unicode = System.Text.Encoding.UTF8.GetString(b);
//Plus \r\n for end of ...