0
votes
2answers
21 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
18 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, …
3
votes
6answers
105 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 …
0
votes
1answer
45 views
How do I find/replace � (unicode replacement character) in ColdFusion?
What CFML will replace � with another character of my choice?
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 = …
0
votes
1answer
38 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 …
1
vote
1answer
52 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 …
1
vote
1answer
34 views
Ruby 1.9: how to properly upcase/downcase multibyte strings?
So matz took the questionable decision to keep upcase and downcase limited to /[A-Z]/i in ruby 1.9.1.
ActiveSupport::Multibyte has long had great i18n case jiggering in ruby 1.8.x via …
1
vote
1answer
77 views
Linux/Unix: Non-ascii characters in home directory?
I am using getenv("HOME") in C to get the user's home directory in order to read/write a settings file. But is it possible that the home directory filename could contain characters that cannot be …
1
vote
3answers
37 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
1answer
34 views
Finding WndProc Address
How can I find the address of a WndProc (of a window of another process). Even if I inject a DLL and try to find it with either GetClassInfoEx() or GetWindowLong() or GetWindowLongPtr() I always get …
3
votes
2answers
57 views
how can I deal with unicode in PHP without mbstring extension
I am using a shared hosting service to host my site so I can't get direct access to PHP configuration or install any extension. So my problem is with utf-8 strings that can't be processed by standard …
4
votes
5answers
103 views
ISO-8859-1 vs UTF-8 ?
What should be used and when ? or is it always better to use UTF-8 always? or ISO-8859-1 still has importance in specific conditions?
Is Character-set related to geographic region?
Edit:
Is there …
1
vote
2answers
55 views
What is the benefit to add @charset “ISO-8859-15”; at top in css file?
What is the benefit to add @charset "ISO-8859-15"; or @charset "utf-8"; at top in css?
0
votes
2answers
56 views
ruby 1.9: how do I get a byte-index-based slice of a String?
I'm working with UTF-8 strings. I need to get a slice using byte-based indexes, not char-based.
I found references on the web to String#subseq, which is supposed to be like String#[], but for bytes. …
