0
votes
0answers
6 views
HTML entities do not render correctly in browser after XSLT transform
I have the following XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<example>
<contactInfo>
<id>12319221</id>
<name>Jerry …
0
votes
2answers
89 views
fix broken german characters
Hello,
I have a translation file for German words but I got it broken like this:
Wنhlen Sie eine Fachgrِكe
is there a tool can fix this in utf-8 mode ?
it is for Delphi windows software
thanks
0
votes
2answers
26 views
PHP UTF-8 charset accentuation
Hi guys,
Sorry if this question is already somewhere but I need a more pratical approach:
The page is set like this:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
…
0
votes
1answer
31 views
Java: MalformedByteSequenceException (XML)
I'm trying to parse XML using this class. When I type out a simple file, it works fine.
<testData>
<text>
odp
</text>
</testData>
Here is my main
public static …
0
votes
1answer
47 views
How to convert a NSString to UTF-8 format string in iphone sdk?
I have localization in my app(english,spanish,italian).The client sent me strings files but some characters are strange how do i correct them? i have figured out that the client used Mac OS Roman …
2
votes
2answers
41 views
Classic ASP: How to write unicode string data in classic ASP?
How can I show an nvarchar column that stores unicode data (Entered with the zawgyi1 font) in a classic ASP web page?
When I retrieve and write the value to the page, it shows "?????". I set my ASP …
0
votes
1answer
16 views
Japanese text is unrecognizable in phpMyAdmin?
I am phpMyAdmin, why is Japanese text in tables unrecognizable? However, I can output the Japanese text from the tables and it can be displayed correctly. Any idea? How to fix phpMyAdmin?
0
votes
2answers
44 views
Django filename from database with non-ascii characters
I'm trying to create a file dynamically in Django:
response = HttpResponse(mimetype='text/txt')
response['Content-Disposition'] = 'attachment; filename=%s' % filename # UnicodeEncodeError
…
0
votes
1answer
35 views
Python csv library with Unicode/UTF-8 support that “just works”
The csv module in Python doesn't work properly when there's UTF-8/Unicode involved. I have found in Python documentation (http://docs.python.org/library/csv.html) and other webpages snippets that work …
0
votes
1answer
16 views
How to Spool UTF-8 format data in Oracle database into text file
How to Spool UTF-8 format data in Oracle database into text file with all UTF-8 Chars comming porperly.
UTF-8 Characters example Chinese characters.
I am trying to spool data from oracle …
0
votes
2answers
40 views
UTF-8, and mbstring extension in php
While I was converting my latin-1 mysql database into utf-8 i cam across this article (http://developer.loftdigital.com/blog/php-utf-8-cheatsheet)
please note I have successfully converted my …
0
votes
1answer
36 views
php htmlspecialchars and utf-8
I am just trying to confirm something with htmlspecialchars
I have just converted my database into UTF-8 and I think I finally have it all working, but throughout my code i have used the php …
0
votes
3answers
106 views
MD5 Hash of ISO-8859-1 string in Java
I'm implementing an interface for digital payment service called Suomen Verkkomaksut. The information about the payment is sent to them via HTML form. To ensure that no one messes with the information …
0
votes
6answers
126 views
Converting UTF-8(or other 8-bit encoding) to 7 or fewer bits.
I wish to take a file encoded in UTF-8 that doesn't use more than 128 different characters, then move it to a 7-bit encoding to save the 1/8 of space. For example, if I have a 16 MB text file that …
1
vote
4answers
82 views
Byte order mark screws up file reading in Java
I'm trying to read CSV files using Java. Some of the files may have a byte order mark in the beginning, but not all. When present, the byte order gets read along with the rest of the first line, thus …
