Tagged Questions
4
votes
2answers
1k views
Difference between MBCS and UTF-8 on Windows
I am reading about the charater set and encodings on Windows. I noticed that there are two compiler flags in Visual Studio compiler (for C++) called MBCS and UNICODE. What is the difference between ...
3
votes
2answers
385 views
How to know the preferred display width of Unicode characters?
In different encodings of Unicode, for example UTF-16le or UTF-8, a character may occupy 2 or 3 bytes. Many Unicode applications doesn't take care of display width of Unicode chars just like they are ...
2
votes
2answers
456 views
tchar safe functions — count parameter for UTF-8 constants
I'm porting a library from char to TCHAR. the count parameter of this fragment, according to MSDN, is the number of multibyte characters, not the number of bytes. so, did I get this right? My project ...
2
votes
4answers
548 views
Piecewise conversion of an MFC app to Unicode/MBCS
I have a large MFC application that I am extending to allow for multi-lingual input. At the moment I need to allow the user to enter Unicode data in edit boxes on a single dialog.
Is there a way to ...
1
vote
1answer
102 views
Filename formating in python under windows -
I have two distincts files called:
'╠.txt' and '¦.txt'
Such simple code:
files = os.listdir('E:\pub\private\desktop\')
for f in files:
print f, repr(f), type (f)
which would return
...
1
vote
1answer
83 views
How to represent Unicode characters in an API
This is more an MBCS question than a Unicode question. I need to create an API that returns a list of structs that each instance holds a Unicode character as one of its members. This is in .NET so ...
0
votes
2answers
33 views
Does ANTLR for Java support MBCS?
I searched and couldn't find much about it. We need to provide the most general support for encodings and such and want to make sure ANTLR is going to be able to handle anything we throw at it.
0
votes
3answers
129 views
How to convert UNICODE strings to MBCS in c#?
I have a UNICODE string (chinese) which I want to convert back to MBCS so as to add it as a parameter to an SQL query. (the column in SQL Server in varchar and so this conversion is necessary for me). ...