Tagged Questions

Unicode is intended to be a universal character set for describing all the characters required for written text incorporating all writing systems, technical symbols and punctuation. But unicode isn't supported on every system, and many other character sets exist.

learn more… | top users | synonyms

6
votes
1answer
151 views

libc++ vs VC++: Can non-UTF conversions be done with wstring_convert?

The C++11's std::wstring_convert works great* for the standard UTF-8 <-> UTF-16/UCS2/UCS4 conversions. However, when I attempted to instantiate a wstring_convert or wbuffer_convert with a facet not ...
6
votes
5answers
8k views

Import Package Error - Cannot Convert between Unicode and Non Unicode String Data Type

I am trying to troubleshoot this error without success. I have made a dtsx package on my computer using SQL Server 2008. It imports data from a semicolon delimited csv file into a table where all of ...
3
votes
1answer
120 views

Map Unicode characters to similar EBCDIC 1047 characters automatically

I'm trying to encode a string that has characters not supported by the target encoding (CP 1047). Is there a standard/common/easy way of mapping those characters to a cp1047 equivalent? For ...
3
votes
2answers
660 views

How to use ORDER BY, LOWER .. in SQL SERVER 2008 with non-unicode data

The question is about Armenian. I'm using sql server 2005, collation SQL_Latin1_General_CP1_CI_AS, data mostly is in Armenian and we can't use unicode. I tested on ms sql 2008 with a windows ...
3
votes
2answers
937 views

How does Windows identify non-Unicode applications?

I am building an MFC C++ application with "Use Unicode Character Set" selected in Visual Studio. I have UNICODE defined, my CStrings are 16-bit, I handle filenames with Japanese characters in them, ...
2
votes
3answers
67 views

When to use Unicode (aside with non-unicode!)

I haven't found much (concise) info about when exactly to use Unicode. I understand that many say best practice is to always use Unicode. But Unicode strings DO have more memory footprint. Am I ...
2
votes
1answer
396 views

Delphi: Unicode->AnsiString, language for non-unicode programs

I have Delphi 2010. XXX-component uses File_Path:AnsiString. A path can be written in XXX-language. If I set to use XXX-language for non-unicode programs in Windows settings then XXX-component ...
2
votes
1answer
514 views

How to get and pass Arabic characters in a non-unicode c++ environment

I'm currently working on a project that is written in C++ and uses True OLE DBGrids with a MS Access backend. This all works well until now we need to be able to convert our GUI to display Arabic ...
1
vote
2answers
972 views

What is the default VB6 charset?

we have an application written in Java which reads some text generated by a VB6 application. The problem is: this VB6 application generate this output using some special characters, like ç,ã,á which ...
0
votes
1answer
20 views

Non-unicode filenames on webserver

Recently I've decided to install an intranet web application (Open Atrium) in our company, but almost immideately I found myself in trouble. We have huge directory - subdirectory file system with ...
0
votes
3answers
121 views

Python efficient mass replacing unknown characterers

PHP4+mySQL4 based project post to Django 1.1 project and it mixes up some letters. What is the best way (most efficient) to replace in this fashion? The problem for me is that i cannot get values for ...
0
votes
3answers
80 views

javascript conversion from html code to real value problem

I have a textbox and i have values in database like ® which is equal to ® .I fetch data and write it into textbox but it writes the data as it is.The code part is like this var ...
0
votes
1answer
374 views

SSIS package having problem with datename(dw,datum) converting to varchar

I am moving data into a DW using SQL Server SSIS and have the following SQL to populate one dimension SELECT DISTINCT cast (datename(dw,datum) as varchar(10)) as veckodag FROM XXXXX.dbo.Bought as ...
-1
votes
2answers
434 views

Non unicode to Unicode conversion, for any font!

I have a html file with text encoded in a non-unicode font. I need to convert that file to unicode. I searched for a convertor. But, most of the convertors work for only a list of fonts, not for all ...