0
votes
3answers
28 views
UTF8 Beginning of File characters are breaking serializer & readers
Okay, I'm trying to work with UTF8 text files. I'm constantly fighting the BOF chars that the writer drops in for UTF8, which blows up pretty much anything I need to use to read th …
3
votes
2answers
74 views
Cross platform unicode path handling
I'm using boost::filesystem for cross-platform path manipulation, but this breaks down when calls need to be made down into interfaces I don't control that won't accept UTF-8. For …
1
vote
8answers
87 views
Python, UnicodeDecodeError
I get this error:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe0 in position 4: ordinal not in range(128)
I tried setting many different codecs (in the header, like # …
1
vote
4answers
74 views
System.Text.Encoding isn’t
I've tracked a problem I'm having down to the following inexplicable behaviour within the .NET System.Text.Encoding class:
byte[] original = new byte[] { 128 };
string encoded = S …
2
votes
4answers
33 views
Unicode, VBScript and HTML
Hi all,
I have the following radio box:
<input type="radio" value="香">香</input>
As you can see, the value is unicode. It represents the followi …
0
votes
4answers
74 views
Character decoding Conversion Function Implementation
Hi,
I need to implement a character encoding conversion function in C++ or C( Most desired ) from a custom encoding scheme( to support multiple languages in single encoding ) to U …
1
vote
2answers
36 views
Convert &#char(w); to \uxxxx C#
I am working on Korean Document and the HTML Source Code contains special symbols starting with &#char(w) e.g 껰 Now I would like to convert this symbol to its Unicode re …
4
votes
6answers
172 views
Python: Split unicode string on word boundaries
I need to take a string, and shorten it to 140 characters.
Currently I am doing:
if len(tweet) > 140:
tweet = re.sub(r"\s+", " ", tweet) #normalize space
footer = "… " …
1
vote
2answers
36 views
Oracle Unicode Spooling
How can I spool data from a table to a file which contains Unicode characters?
I have a sql file which I execute from SQL*Plus screen and its content is:
SET ECHO OFF
SET FEEDBAC …
3
votes
5answers
129 views
Why there are duplicate characters in unicode
I can see some duplicate characters in Unicode. For example, the character 'C' can be represented by the code points U+0043 and U+0421. Why is this so?
0
votes
0answers
25 views
Convert Korean Text to Unicode
The thing which I want to ask is pretty simple. I am haveing an html document which is hosted in webbrowser control.
Now when I select a word "Korean word" using the MSHTML range …
0
votes
2answers
60 views
If I know the font and the character, how can I programatically find the Unicode equivalent?
We have XML content that uses Wingdings to display ticks and possibly other characters. Our web content is generated dynamically from the XML content by an application written in …
4
votes
2answers
189 views
Python: data vs. text?
Guido van Rossum's presentation about Python 3000 mentions several things to make a transition from Python 2 to Python 3 easier eventually. He is specifically talking about text ha …
1
vote
3answers
51 views
how to extract characters from a Korean string in VBA
Need to extract the initial character from a Korean word in MS-Excel and MS-Access.
When I use Left("한글",1) it will return the first syllable i.e 한, what I need is the initial cha …
3
votes
1answer
56 views
File open error by using codec utf-8 in python
I execute following code on windows xp and python 2.6.4
But it show IOError.
How to open file whose name has utf-8 codec.
>>> open( unicode('한글.txt', 'euc-kr').encode(' …
