Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
595 views

Why isn't UTF-8 allowed as the “ANSI” code page?

The Windows _setmbcp function allows any valid code page... (except UTF-7 and UTF-8, which are not supported) OK, not supporting UTF-7 makes sense: Characters have non-unique representations ...
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
1answer
64 views

Risks of running on single byte character app on a MBCS OS

I have an MFC application where the Character Set is "Not Set". What are the risks associated with running this application on a OS that has a Multi Byte Character Set code page?
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 ...
2
votes
3answers
2k views

Converting MBCS stream to UTF-8 and vice versa in C++

I'm using Visual C++ (VS2005) and compiling the project in Multibyte Character Set (MBCS). However, the program needs to communicate with a webapp (which is in utf-8) via XMLRPC. So I'm thinking maybe ...
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 ...
1
vote
5answers
2k views

What multi-byte character set starts with 0x7F and is 4 bytes long?

I'm trying to get some legacy code to display Chinese characters properly. One character encoding I'm trying to work with starts with a 0x7F and is 4 bytes long (including the 0x7F byte). Does ...
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). ...
0
votes
0answers
10 views

Effecf of UniCode and Multi Byte settings on Serialization

Just curious, Will the Unicode or Multi Byte character setting affect the serialization process in the code?
0
votes
2answers
42 views

Is it possible to have a multi-byte character with the Windows-1252 code page?

i know some locale's (e.g. Far East locales) have multi-byte character sets, where it takes multiple bytes to represent a character. i'd like to test my (ANSI) software's ability to cope with ...
0
votes
1answer
394 views

Open source C implementation of Java ByteBuffer and Double Byte Char String

Can someone point me to an open-source C implementation of: a. ByteBuffer similar to the one in Java, and b. DBCS. I am a starter in this area and desperately need some help. Thanks in advance!