Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
934 views

Converting Unicode to Windows-1252 for vCards

I am trying to write a program in C# that will split a vCard (VCF) file with multiple contacts into individual files for each contact. I understand that the vCard needs to be saved as ANSI (1252) for ...
2
votes
1answer
176 views

php's mb_detect_encoding()

first of all i'd like to say i've read the other post regarding php's mb_detect_encoding at Strange behaviour of mb_detect_order() in PHP. Which definitely reconfirm what i'd learn through trail and ...
2
votes
1answer
635 views

Windows C API for UTF8 to 1252

I'm familiar with WideCharToMultiByte and MultiByteToWideChar conversions and could use these to do something like: UTF8 -> UTF16 -> 1252 I know that iconv will do what I need, but does anybody know ...
2
votes
2answers
2k views

Java 1.6 Windows-1252 encoding fails on 3 characters

EDIT: I've been convinced that this question is somewhat non-sensical. Thanks to those who responded. I may post a follow-up question that is more specific. Today I was investing some encoding ...
1
vote
2answers
26 views

Spec justification for € to Ÿ in UTF-8 documents browser behaviour wanted

The HTML 4.01 spec says for hexadecimal character references Numeric character references specify the code position of a character in the document character set. So if the document character ...
1
vote
2answers
121 views

Mapping Windows-1252 encoding to UTF8 in C

How do you programmatically convert a C-string with encoding Windows-1252 (a.k.a. CP1252) to UTF8?
1
vote
1answer
363 views

Submitted character encoding — _charset_ hidden field

For our web app, we have multiple HTML pages containing text areas. All of our pages are rendered with an ISO-8859-1 charset. When the page is accessed through IE6 on a Windows machine and special ...
1
vote
3answers
765 views

How to normalize text content to UTF 8 in java

We have a CMS which has several thousand text/html files in it. It turns out that users have been uploading text/html files using various character encodings (utf-8,utf-8 w BOM, windows 1252, ...
1
vote
5answers
11k views

Windows-1252 to UTF-8 encoding

I've copied certain files from a Windows machine to a Linux machine. So all the windows encoded(windows-1252) files need to be converted to UTF-8. The files which are already in UTF-8 should not be ...
1
vote
1answer
548 views

Streamwriter: Polish characters are skipped?

I'm trying to make a small tool to help some guys converting data between a SAP installation and a Axapta installation. I get a text file i Western European (Windows) encoding (1252). They have put ...
0
votes
1answer
46 views

Reconstructing Windows-1252 characters from data incorrectly saved as UTF-8

I'm dealing with data that has been sampled using Java HtmlUnit. The webpage used Windows-1252 encoding but the response was retrieved as if the page was encoded as UTF-8 (ie when getContentAsString ...
0
votes
2answers
38 views

Encoding from 1252 to Unicode .NET equivalent in java

I have the request to port a .NET web service to java. I need to find the equivalent java code for this piece of code written in .NET: byte[] b = ... // Some file binary data. byte[] encoded = ...
0
votes
4answers
102 views

Filtering microsoft 1252 characters out of an ASCII text file opened in utf8 mode in Perl

I have a reasonable size flat file database of text documents mostly saved in 8859 format which have been collected through a web form (using Perl scripts). Up until recently I was negotiating the ...
0
votes
1answer
116 views

How do you convert encoding from UTF-8 to windows-1252?

How can I correctly convert a text file from UTF-8 to Windows-1252? I have tried converting the file using iconv (windows xp) but this util converted the text file to ANSI. The default code page in ...
0
votes
1answer
65 views

Converting special characters from Javascript to Java

I have a text area in my form which accepts all possible characters from user. i restrict the character count entered in the textarea to 10 . When the user enters a text with special character say ...
0
votes
2answers
43 views

Is it possible to have a multi-byte character with the Windows-1252 code page?

i know some locale's (e.g. Far East locales) have multi-byte character sets, where it takes multiple bytes to represent a character. i'd like to test my (ANSI) software's ability to cope with ...
0
votes
2answers
330 views

XMLReader — Getting problem with utf characters

I am parsing a huge xml file and encoding of file is to be said < ? xml version="1.0" encoding="ISO-8859-1" ?>**bold The db encoding is utf8 and I am running this query before anything is saved to ...
0
votes
2answers
378 views

Jquery ajax call and charset windows-1252

Dear stackoveflow, I have this problem. I'm working with an old version of mssql (2000) that has all the tables encoded in windows 1252 (and that's it). I can write and read succesfully with php using ...
0
votes
3answers
749 views

Detecting encoding conversion problems

The majority of content on my company's website starts life as a Word document (Windows-1252 encoded) and is eventually copied-and-pasted into our UTF-8-encoded content management system. The ...