0
votes
1answer
41 views
Outlook is unable to accept french-accented characters in my mailto string?
Outlook is causing some problems when being passed a mailto string with accented characters in it. Changing the codepage for my entire webpage that has this string on it solves th …
0
votes
3answers
95 views
.NET character encoding problems
I've got some problems on a .NET site where both Latin (åäö) and Latvian (āē) characters would need to co-exist. In the database, I'm using nvarchar and ntext for my fields, and if …
0
votes
0answers
44 views
Visual Studio 2008 mass re-save with different encoding
Got something interesting.
Worked on project from home (did some mass refactoring, changed folder/namespace structure for our Domain project that leaded to changing almost whol …
2
votes
2answers
65 views
Creating tar archive with national characters in Java
Hi,
Do you know some library/way in Java to generate tar archive with file names in proper windows national codepage ( for example cp1250 ).
I tried with Java tar, example code: …
4
votes
7answers
142 views
Dummy’s guide to Unicode
Could anyone give me a concise definitions of
Unicode
UTF7
UTF8
UTF16
UTF32
Codepages
How they differ from Ascii/Ansi/Windows 1252
I'm not after wikipedia links or incredible d …
0
votes
1answer
139 views
What’s the code page of utf8?
My cmd promt's default code page is 936.
I need to change it to utf8.
chcp 65001
The above doesn't work,what's the correct one?
3
votes
4answers
654 views
How do you specify a Java file.encoding value consistent with the underlying Windows code page?
I have a Java application that receives data over a socket using an InputStreamReader. It reports "Cp1252" from its getEncoding method:
/* java.net. */ Socket Sock = ...;
InputStr …
0
votes
1answer
83 views
Sharepoint Changing URL Special characters
I have a URL stored in a Sharepoint 'Link to a document' that contains the Nordic Character 'Ø' as hex(%D8). Sharepoint is encoding the % symbol, (thus making it %25D8).
If I ente …
1
vote
2answers
171 views
How to get the code page of the current keyboard layout?
My non-Unicode application needs to be able to process Unicode keyboard input (WM_CHAR/etc.), thus receive the 8-bit character code then internally convert it to Unicode. 9x-compat …
0
votes
1answer
25 views
HtmlElementEventArgs KeyPressedCode Confusion
I'm using the following code to decide if a '.' (full stop) has been entered into a webbrowser control:
private void body_KeyUp(object sender, HtmlElementEventArgs e)
{
…
1
vote
2answers
150 views
ANSI or OEM Codepage when using MME and DirectMusic?
Hello,
I noticed that when reading MIDI port names from MME, the names are multi-byte strings encoded using the ANSI Codepage, which my app uses by default. When receiving those n …
0
votes
3answers
97 views
.Net unicode problem, vb6 legacy
Hi,
I have a decryption routine in VB6. I now want the same decryption in C#.
The strings that need decryption are in unicode, so I use Encoding.Unicode.GetString to read the inpu …
0
votes
5answers
206 views
Which codepage for html for eurpean languages? UTF-8 vs codepage 1252 in VS 2008
Hi there,
I have been developing with some software for javscript that has a parser that reads in my JS and creates a compressed version, it kept failing as by default vs 2008 sav …
2
votes
1answer
521 views
What codepage/charset should be used to interpret data coming from an MVS system into a Java Environment?
I've come into an interesting problem (as is often the case in interacting with legacy systems). I'm working on an application (which currently runs on a x86 Linux or Windows syst …
0
votes
3answers
198 views
string encodings in python
Hello.
In python, strings may be unicode ( both utf-16 and utf-8 ) and single-byte with different encodings ( cp1251, cp1252 etc ). Is it possible to check what encoding string is …
