10
votes
1answer
121 views
why would std::string s(”??<”) output a { instead of ??< as expected???
std::string s("??<");
std::cout << s << std::endl;
Why does that output { instead of ??<
I'm using Visual Studio 2008. I'm assume it's encoding it but why and what is the …
0
votes
2answers
34 views
Rails html encoding
I am using h helper method in Rails to encode/escape a string that has an apostrophe (') In my view I am using it like this
<%=h "Mike's computer" %>
My understanding is that the html when …
0
votes
3answers
38 views
Encoding utf-8 to base64 with accents
Hi, I have some data like this:
data1 = ['Agos', '30490349304']
data2 = ['Desir\xc3\xa9','9839483948']
I'm using an API that expects the data encoded in base64, so what I do is:
data = data1
…
1
vote
4answers
54 views
Java: Turkish Encoding Mac/Windows
Hi
I have a problem with turkish special characters on different machines. The following code:
String turkish = "ğüşçĞÜŞÇı";
String test1 = new String(turkish.getBytes());
String test2 = new …
1
vote
2answers
14 views
accent ajax encoding issue
Source file has:
header('Content-type: text/html; charset=iso8859-1');
Source ajax (jQuery) script is:
$(document).ready(function() {
$.ajaxSetup({
cache: false
});
…
1
vote
3answers
86 views
What character set is this?
I received a bunch of CSV files from a client (that appear to be a database dump), and many of the columns have weird characters like this:
Alain Lefèvre
Angèle Dubeau & La …
1
vote
3answers
64 views
How to read non-english texts in java? They are represented in wrong encoding.
I use apache HttpClient. And when I'm trying to "read site", all non-english content is represented wrongly.
Actually, it's represented in windows-1252 but it should be in UTF-8. How can I fix this?
…
0
votes
1answer
18 views
Converting UTF-8 PostgreSQL DB into ASCII Shapefile
Hi,
I have a PostgreSQL\PostGIS spatial database which contains Hebrew text columns. The system runs on Ubuntu, and everything works flawlessly with UTF-8.
I am trying to dump some tables into …
2
votes
1answer
41 views
clean up strange encoding in ruby
I'm currently playing a bit with couchdb.
I'm trying to migrate some blog data from redis (key value store) to couchdb (key value store).
Seeing as I probably migrated this data a gazillion times from …
0
votes
2answers
26 views
How to set the mechanize page encoding?
Hi,
I'm trying to get a page with an ISO-8859-1 encoding clicking on a link, so the code is similar to this:
page_result = page.link_with( :text => 'link_text' ).click
So far I get the result …
0
votes
1answer
27 views
Creating files with french characters and encoding.
HI, I am creating a file like so.
FileStream temp = File.Create( this.FileName );
Then putting data in the file like so.
this.Writer = new StreamWriter( this.Stream );
this.Writer.WriteLine( …
1
vote
2answers
60 views
c# HttpWebResponse Header encoding
Hi,
I have the following problem. I contact an address which I know employs a 301 redirect.
using HttpWebRequest loHttp = (HttpWebRequest)WebRequest.Create(lcUrl);
and loHttp.AllowAutoRedirect = …
5
votes
5answers
111 views
Java: Readers and Encodings
Hi,
Maybe isn't a good or relevant question, so please don't kill me.
Java's default encoding is ASCII. Yes? (See my edit)
When a textfile is encoded in UTF-8? How does a Reader know that he has to …
0
votes
1answer
18 views
Jasper Report PDF Encoding
Hi. I am trying to generate or export to PDF a jasper report but I can't displaynihongo or japanese characters. How do I fix this... :(
0
votes
4answers
35 views
English/Arabic Encoding Problem
Hi
I am designing a web page this web page should support
English and Arabic languages
my problem is : Arabic characters doesn't appear in its way
it appears some thing like that "أهلاً يا …
