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

0
votes
1answer
40 views

Creating a file from PHP , with filename in arabic [closed]

I'm trying to get PHP to save the input data to a word file , it works fine but .. the problem is when i try to work with arabic characters , then the contents of the file come out fine but the file ...
2
votes
2answers
57 views

jQuery and non-unicode characters

I'm trying to use jQuery to get autocomplete from a database. It works fine with English values but I have some rows in Arabic and they are showing as (????). I start all my pages with: <meta ...
1
vote
1answer
138 views

Foreign characters show up as ????? in VBA 2003, how to set up UTF-8?

I have a Database in Access 2003 that needs to work with foreign language characters. The characters show up fine in the table. However, when VBA tries to read them it cannot do it. As an example, ...
2
votes
1answer
205 views

Delphi - Get Windows' default non-unicode character set

I have a Delphi 7 application. I need to be able to get the default Windows character set for non-unicode programs. I know DEFAULT_CHARSET sets it, but I need to know exactly which charset it is, so ...
0
votes
0answers
342 views

SSIS Convert Between Unicode and Non-Unicode Error

I have an ssis package where I am using an OLEDB source linking to SQL Server 2005 table. All columns except a date column are NVARCHAR(255). I am using an Excel destination and using a SQL statement ...
1
vote
1answer
121 views

PHP: Converting scandic characters to hex unicode

I'm working on a Joomla site with Fabrik and problem is that Fabrik serializes some data using json_encode() but does not take into account the possibility of åäö and such. Now when a database search ...
1
vote
1answer
141 views

SSIS Export to RDB doesn't work with NonUnicode Page File (8859-9)

I'm trying to export data from a table in MS SQL Server 2008 R2 to a RDB Database. But I'm having problems to export Hebrew strings to RDB because my SQL Server is Unicode and my RDB is Non-unicode. ...
0
votes
1answer
346 views

How can I save unicode columns in non-unicode Oracle database with VARCHAR2?

How can I save unicode characters in a Oracle database, configured in a non-unicode charset (this configurations is impossible to change)? The text will be saved in VARCHAR2 columns (it can't be ...
2
votes
1answer
237 views

How to solve UnicodeEncodeError while working with Cyrillic (Russian) letters?

I try to read a RSS-feed using feed parser. import feedparser url = 'http://example.com/news.xml' d=feedparser.parse(url) f = open('rss.dat','w') for e in d.entries: title = e.title print ...
1
vote
2answers
591 views

converting non-unicode, non-english content to unicode

I've a text content in "xyz" language. <p style="font-family:xyz;"> eWvS³: kmwkMnsâ kq¸Àt^mWmb KmeIvkn kocoknsâ aq¶mw]Xn¸v </p> // It will not display correctly as font is not embedded. ...
0
votes
1answer
375 views

How to draw char of Wingding.ttf font with Java Graphics.DrawString?

I am trying to draw characters from Wingding.ttf font with Java Graphics.DrawString. But resulting image contains only rectangle instead of char. BufferedImage image = new BufferedImage(100, 100, ...
1
vote
2answers
134 views

How can we understand that a div has a unicode character or not with JQUERY

I want to recognize all objects in my web page that contains at least one UNICODE character. By this way, I want to perform a specific CSS class to those elements that has UNICODE characters (maybe ...
0
votes
1answer
140 views

How to script tables in SSMS that contain non-unicode text

I'm working with some tables in SQL Server that store text using 8-bit characters rather than unicode -- varchar rather than nvarchar. A certain amount of the text contains characters with values ...
0
votes
1answer
153 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 ...
2
votes
3answers
174 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 ...
8
votes
1answer
630 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 ...
3
votes
1answer
373 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 ...
2
votes
1answer
1k 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 ...
0
votes
3answers
254 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 ...
-1
votes
2answers
1k 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 ...
0
votes
3answers
147 views

javascript conversion from html code to real value

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 ...
2
votes
1answer
683 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 ...
3
votes
2answers
1k 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 ...
2
votes
2answers
2k 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
494 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 ...
3
votes
2answers
1k 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, ...
14
votes
6answers
25k 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 ...