0
votes
1answer
14 views
Cannot show the downloaded webpage with proper encoding using PHP
I have to get the content of a persian page and show a part of that page to some users. The problem is after I filter the page content I cannot show the content with the proper encoding. The webpage …
1
vote
7answers
61 views
Binary encoding for low bandwidth connections?
In my application I have a simple XML formatted file containing structured data. Each data entry has a data type and a value. Something like
<entry>
<field …
3
votes
1answer
50 views
Displaying ® symbol in Silverlight.
Folks!
I am trying to display ® and superscript TM symbols in my silverlight app. I want to save the text containing the symbols in a resx file.
Things i have tried:
Copy paste the ® symbol …
0
votes
1answer
16 views
How to control encoding when POSTing through Net::HTTP?
I'm trying to create an API wrapper for Issuu using ruby and am running into errors when attempting to POST the data. When trying a simple GET through the browser with all the params in the …
1
vote
5answers
55 views
Difference between Url Encode and HTML encode
What’s the difference between an URL Encode and a HTML Encode?
0
votes
5answers
74 views
What is the default content-type/charset?
According to this answer: http://stackoverflow.com/questions/1020892/python-urllib2-read-to-unicode
I have to get the content-type in order to change to unicode.
However, some websites don't have a …
0
votes
2answers
65 views
Extract files with invalid characters in filename with Python
I use python's zipfile module to extract a .zip archive (Let's take this file at http://img.dafont.com/dl/?f=akvaleir for example.)
f = zipfile.ZipFile('akvaleir.zip', 'r')
for fileinfo in …
1
vote
4answers
70 views
How do you read a text file without losing odd characters?
I would like to read a text file into an array of strings using System.IO.File.ReadAllLines. However, ReadAllLines strips out some odd characters in the file that I would like to keep, such as …
1
vote
4answers
56 views
Getting the original secretkey from hex format
This is the hex format of a secret key used for AES encryption
00010203050607080A0B0C0D0F101112
Can i generate the original SecretKey format or byte array from this?
If so how?
1
vote
1answer
23 views
Running a regex in GIT Bash, my file now has funny characters in it.
I ran this regex in GIT BASH (I am on a windows machine, and I have GIT installed).
perl -pe 's/\[(?:xx_)?([^]]+)\]/\[\u$1\]/g'
The file now looks as if it is written in Chinese (it is a .sql …
0
votes
3answers
38 views
Java - Base64 string in and out of a text
I need to write string containing base64 encoded text to a text file and then later read that string back from the text file to a string variable.
How can i do it so that there is no data loss due …
0
votes
3answers
61 views
re: UTF-8, PHP and XML Mysql
This is relating to http://stackoverflow.com/questions/1791082/utf-8-php-and-xml-mysql, which I am still trying to get my head around.
I Have a couple of separate questions that will hopefully help …
1
vote
6answers
100 views
UTF-8, PHP and XML Mysql
I am having great problems solving this one:
I have a mysql database encoding latin1_swedish_ci and a table that stores names and addresses.
I am trying to output a UTF-8 XML file, but I am having …
0
votes
2answers
33 views
using NSString + stringWithContentsOfFile:usedEncoding:error:
Hello, all!
I've got problem with use + stringWithContentsOfFile:usedEncoding:error:
My problem in usedEncoding:(NSStringEncoding *)enc
I don't know how can i set pointer to encoding. If i make it - …
1
vote
1answer
14 views
[PHP] Translating IMAP body based on their encoding
Hi all,
From the manual, I know that there are 6 different transfer encoding in IMAP.
At this point, I've created this basic function:
function translate_imap_body($body, $encoding) {
…
