0
votes
4answers
36 views
Why are some characters shown as question marks when sending email using non-English characters?
I tried to send a text email with non-English characters using PHPs mail function. But instead my message went with funny looking garbage characters. How do I fix it?
I use this p …
-1
votes
0answers
35 views
Javascript encoding help
This is a decoding function, can anyone create encoding function based on it?
chr13: function(chr14) {
var chr15 = "";
var chr16 = 23;
chr14 = unescape(chr …
0
votes
2answers
32 views
Checking all files are encoded as UTF-8
Does anyone know of a Windows app that can scan through a directory and check which scripts are/aren't encoded as a specified charset (UTF-8 in this case)? I could do it manually, …
1
vote
2answers
106 views
how to show hex code char ?
hi, i have a file contains numbers like FB8E,FB8F,FB90 on each line.
i want in my program to load this file and take each line and print the character corresponded to that number/ …
0
votes
4answers
92 views
How to convert string from one charset to another in C++?
How to convert string from one charset to another in C++ in a portable way? For example I want to convert to wstring to UTF-8 character array or . How to do this?
I am asking some …
3
votes
2answers
27 views
Adding “charset” to all ASP.NET MVC HTTP responses
Is there an easy way to specify all "normal" views is an ASP.NET MVC app are to have charset=utf-8 appended to the Content-Type? View() lacks an override that allows you to specif …
0
votes
2answers
34 views
iphone compare   with NSString
Hi,
i was comparing A string coming from XML with another String and results were showing that they are not equal. but in NSLog() both were same ( e.g. Valore Books ).
then i ch …
1
vote
4answers
67 views
Python - Get a list of all the encodings python can encode to
I am writing a script that will try encoding bytes into many different encodings in python 2.6. This page http://www.python.org/doc/2.6/library/codecs.html?highlight=cp1250#id3 lis …
0
votes
1answer
12 views
GAE Django template and swedish characters
Hi,
I'm trying to render templates of an html-page that contains swedish characters "åäö" but when it renders in the web browser it ends up with "�". The page renders in UTF-8.
I …
3
votes
3answers
172 views
Accented/umlauted characters in C?
I'm just learning about C and got an assignment where we have to translate plain text into morse code and back. (I am mostly familiar with Java so bear with me on the terms I use). …
0
votes
3answers
54 views
Having difficulty with character encoding on website.
I have a website that allows users from around the world to submit profiles. Somewhere between storing/retrieving/displaying the characters, they are not rendering correctly. I'm …
2
votes
3answers
82 views
Best way to decode unknown unicoding encoding in Python 2.5
Have I got that all the right way round? Anyway, I am parsing a lot of html, but I don't always know what encoding it's meant to be (a surprising number lie about it). The code bel …
2
votes
3answers
77 views
Multipart/form-data and UTF-8 in a ASP Classic application
Hi all,
I have a problem that I really don't understand.
I'm trying to upload a files in a asp classic app, without the use of an external component. I also want to post some text …
8
votes
6answers
195 views
Guessing the encoding of text represented as byte[] in Java
Given an array of bytes representing text in some unknown encoding (usually UTF-8 or ISO-8859-1, but not necessarily so), what is the best way to obtain a guess for the most likely …
0
votes
4answers
63 views
Iterating over string/strlen with umlauted characters
This is a follow-up to my previous question . I succeeded in implementing the algorithm for checking umlauted characters. The next problem comes from iterating over all characters …
