0
votes
1answer
8 views
How remove the warning “large integer implicitly truncated” for sqlite/unicode support?
I use the solution of http://ioannis.mpsounds.net/2007/12/19/sqlite-native-unicode-like-support/ for my POS App for the iPhone, and work great.
However, as say in the comments:
For instance, …
0
votes
1answer
65 views
msflexgrid Unicode
I have an old project that I am trying to Unicode enable. I am trying to put Unicode data into an msflexgrid, but it comes out as question marks.
Is there some trick to getting MSFlexGrid to work …
0
votes
4answers
46 views
unicode to string conversion in java
I am building a language... a toy langauge. the thing syntax #0061 suppose to convert the given unicode to an 'a'.
String temp = yytext().subtring(2);
then after that try to append '\u' to the …
1
vote
3answers
221 views
UTF8 Filenames in PHP and Different Unicode Encodings
I have a file containing Unicode characters on a server running linux. If I SSH into the server and use tab-completion to navigate to the file/folder containing unicode characters I have no problem …
2
votes
2answers
45 views
MySQL and UTF-8
In MySQL, what is the difference between doing:
SET NAMES 'utf8'
And:
SET CHARACTER SET 'utf8'
I've taken a look at Connection Character Sets and Collations MySQL documentation page but I'm …
2
votes
0answers
27 views
Give me an example of Unicode XML parsing using PugiXML
I have tried to find some code for this job in the tutorials and by googling, no luck.
If someone has used PugiXml, could you please help me out ? My main trouble is Unicode, otherwise the library is …
0
votes
1answer
25 views
BlackBerry - Unicode text display
Hi!
I would like to display some Arabic text into LabelField in j2me app on BlackBerry device.
Presume that Arabic font is installed on device.
In localization resources, if Arabic locale is used, …
0
votes
2answers
24 views
Unicode BOM for UTF-16LE vs UTF32-LE
It seems like there's an ambiguity between the Byte Order Marks used for UTF16-LE and UTF-32LE. In particular, consider a file that contains the following 8 bytes:
FF FE 00 00 00 00 00 00
How can …
0
votes
1answer
39 views
Unicode filenames on Windows with Python & subprocess.Popen()
Why does the following occur:
>>> u'\u0308'.encode('mbcs') #UMLAUT
'\xa8'
>>> u'\u041A'.encode('mbcs') #CYRILLIC CAPITAL LETTER KA
'?'
>>>
I have a Python application …
0
votes
1answer
52 views
How do I find/replace � (unicode replacement character) in ColdFusion?
What CFML will replace � with another character of my choice?
3
votes
6answers
108 views
Can BSTR’s hold characters that take more than 16 bits to represent?
I am confused about Windows BSTR's and WCHAR's, etc. WCHAR is a 16-bit character intended to allow for Unicode characters. What about characters that take more then 16-bits to represent? Some UTF-8 …
1
vote
3answers
38 views
Detecting individual Unicode character support with JavaScript
Is it possible to detect if the client supports a particular Unicode character or if it will be rendered as a missing glyph box?
Important: Support in as many browsers as possible
Not important: …
0
votes
2answers
25 views
Java Runtime Exec on Windows Fails with Unicode in Arguments
I want to launch a browser and load a web page using Java's Runtime exec. The exact call looks like this:
String[] explorer = {"C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE",
…
0
votes
5answers
57 views
can’t open unicode url with python
using python 2.5.2 and linux debian i'm trying to get the content from a spanish url that contains a spanish char ('í'):
import urllib
url = u'http://mydomain.es/índice.html'
content = …
1
vote
1answer
54 views
How to completely sanitize a string of illegal characters in python?
I have a feature of my program where the user can upload a csv file, which my program goes through and uses as input. I have one user complaining about a problem where his input is throwing up an …
