Tagged Questions
The cp1252 tag has no wiki summary.
5
votes
5answers
13k views
How to use Special Chars in Java/Eclipse
How can I use/display characters like ♥, ♦, ♣, or ♠ in Java/Eclipse?
Wenn I try to use them directly, i.e. in the source code, Eclipse cannot save the file:
What can I do?
Edit: How can I find ...
2
votes
1answer
248 views
php & mysql converting non- to unicode
I have characters like these on our web site: Fémnyomó
That is a street address, entered in another language (though I do not know which). Here's the db setup:
mysql 4.1.2log
charset cp1252 ...
2
votes
1answer
632 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
5answers
885 views
Can I avoid using CP1252 on Windows?
I would like all my toolkit to use UTF-8 but find that some tools on Windows seem to use CP1252 (which appears to be Windows-specific). Does this create output which is incompatible and if so at which ...
2
votes
4answers
1k views
Encoding cp1252
When i try the following in java
System.out.println(System.getProperty("file.encoding"));
i get cp1252 as the encoding
Is there a way to know where this value is coming from ? (Like Environment ...
1
vote
1answer
264 views
Decode Inputsteam with CP1252 encoding in java
The Inputstream that i receive from a post request through ExtJS is in CP1252 encoding. How do i decode the Inputsteam so that i can use the json string and convert it to the appropriate java bean.
I ...
1
vote
1answer
1k views
Convert string from codepage 1252 to 1250
How can I convert one String with characters decoded in codepage 1252 into a String decoded in codepage 1250.
For example
String str1252 = "ê¹ś¿źæñ³ó";
String str1250 = convert(str1252);
...
0
votes
1answer
274 views
RTF CP1252 to Text UTF-8
Here is a file that I need to convert to plain text in MAC OSX zshell.
http://narod.ru/disk/6431540001/Test_rtf.rtf.html
I've tried unrtf, rtf2txt, rtf2html = no result. They can't convert ru_cp1252. ...
0
votes
1answer
1k views
Convert cp1252 to unicode in javascript
I need to convert cp125*2* text to unicode utf in javascript function.
Function to convert CP125*1* to utf I already find.
Please help me if you have this functionality, thanks!
0
votes
1answer
400 views
Read data using ODBC ADO.NET from Db2 Codepage 1252 - Euro (€) Symbol is not retrived correctly
In VS 2005 C#, While inserting Euro (€) Symbol into Db2 table, It is storing values correctectly. DISABLEUNICODE=1 parameter helped to store this correctly.
But when we try to read from the table, ...
0
votes
2answers
210 views
communicate with a process in utf-8 on a cp1252 consoless
I need to control a program by sending commands in utf-8 encoding to its standard input. For this I run the program using subprocess.Popen():
proc = Popen("myexecutable.exe", shell=True, stdin=PIPE, ...
-1
votes
3answers
1k views
Python 3 chokes on CP-1252/ANSI reading
I'm working on a series of parsers where I get a bunch of tracebacks from my unit tests like:
File "c:\Python31\lib\encodings\cp1252.py", line 23, in decode
return ...