Tagged Questions
Encoding is a set of predefinied rules to reversibly transform a piece of information in a certain representation into a completely different representation. The other way round is called decoding.
183
votes
6answers
93k views
How to encode a URL in Javascript?
How do you safely encode a URL using Javascript such that it can be put into a GET string?
var myUrl = "http://example.com/index.html?param=1&anotherParam=2";
var myOtherUrl = ...
107
votes
5answers
28k views
Best practice: escape, or encodeURI / encodeURIComponent
When encoding a query string to be sent to a web server - what is the best practice to use from javascript:
Use escape:
escape("% +&=");
OR
use encodeURI() / encodeURIComponent()
...
73
votes
9answers
39k views
How to get UTF-8 working in java webapps?
I need to get UTF-8 working in my Java webapp (servlets + JSP, no framework used) to support äöå etc. for regular Finnish text and Cyrillic alphabets like ЦжФ for special cases.
My setup is the ...
63
votes
6answers
38k views
What is the best collation to use for MySQL (with PHP)
I'm wondering if there is a "best" choice for collation in MySQL for a general website where you aren't 100% of what will be entered? I understand that all the encodings should be the same, such as ...
48
votes
13answers
32k views
How can I detect the encoding/codepage of a text file
In our application, we receive text files (.txt, .csv, etc.) from diverse sources. When reading, these files sometimes contain garbage, because the files where created in a different/unknown codepage.
...
46
votes
17answers
33k views
Detect encoding and make everything UTF-8
I'm reading out lots of texts from various RSS feeds and inserting them into my database.
Of course, there are several different character encodings used in the feeds, e.g. UTF-8 and ISO-8859-1.
...
39
votes
23answers
2k views
Why should I use a human readable file format?
Why should I use a human readable file format in preference to a binary one? Is there ever a situation when this isn't the case?
EDIT:
I did have this as an explanation when initially posting the ...
39
votes
18answers
28k views
Microsoft Excel mangles Diacritics in .csv files?
I am programmatically exporting data (using PHP 5.2) into a .csv test file.
Example data: Numéro 1 (note the accented e).
The data is utf-8 (no prepended BOM)
When I open this file in MS excel is ...
34
votes
4answers
8k views
Setting the correct encoding when piping stdout in python
When piping the output of a python program, the python interpreter gets confused about encoding and sets it to None. This means a program like this:
# -*- coding: utf-8 -*-
print "åäö"
will work ...
28
votes
5answers
22k views
Determine a string's encoding in C#
Is there any way to determine a string's encoding in C#?
Say, I have a filename string, but I don't know if it is encoded in Unicode UTF-16 or the system-default encoding, how do I find out?
Thanks,
...
25
votes
11answers
24k views
Best way to encode text data for XML
I was looking for a generic method in .Net to encode a string for use in an Xml element or attribute, and was surprised when I didn't immediately find one. So, before I go too much further, could I ...
24
votes
6answers
25k views
What encoding/code page is cmd.exe using
When I open cmd.exe in Windows, what encoding is it using? How can I check which encoding it is currently using? Does it depend on my regional setting or are there any environment variables to check?
...
22
votes
5answers
304 views
what are the differences between PHP base64_encode and *nix base64
PHP's base64_encode is returning a different string to the linux base64 command.
Why is this?
PHP:
$ php
<?php
echo base64_encode('test');
?>
dGVzdA==
Linux base64:
$ echo 'test' | base64
...
22
votes
10answers
13k views
How do I determine file encoding in OSX?
I'm trying to enter some UTF-8 characters into a LaTeX file in TextMate (which says its default encoding is UTF-8), but LaTeX doesn't seem to understand them. Running cat my_file.tex shows the ...
21
votes
6answers
6k views
utf-8 vs Unicode
I have heard conflicting opinions from people - according to wikipedia, see here
there are the same thing. Are they? can someone clarify?
21
votes
10answers
16k views
URL-encoded slash in URL
My Map is:
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with params
new { controller = ...
21
votes
9answers
42k views
Java : How to determine the correct charset encoding of a stream
With reference to the following thread:
http://stackoverflow.com/questions/498636/java-app-unable-to-read-iso-8859-1-encoded-file-correctly
What is the best way to programatically determine the ...
20
votes
4answers
30k views
“unmappable character for encoding” warning in Java
I'm currently working on a Java project that is emitting the following warning when I compile:
/src/com/myco/apps/AppDBCore.java:439: warning: unmappable character for encoding UTF8
[javac] ...
18
votes
1answer
6k views
How to configure encoding in maven
When I run maven install on my multi module maven project I always get the following output:
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
...
17
votes
7answers
1k views
What's the difference between encoding and charset?
I am confused about the text encoding and charset. For many reasons, I have to
learn non-Unicode, non-UTF8 stuff in my upcoming work.
I find the word "charset" in email headers as in "ISO-2022-JP", ...
17
votes
6answers
2k views
Why do real-world servers prefer gzip over deflate encoding?
We already know deflate encoding is a winner over gzip with respect to speed of encoding, decoding and compression size.
So why do no large sites (that I can find) send it (when I use a browser that ...
16
votes
6answers
447 views
Encoding / Error Correction Challenge
Is it mathematically feasible to encode and initial 4 byte message into 8 bytes and if one of the 8 bytes is completely dropped and another is wrong to reconstruct the initial 4 byte message? There ...
16
votes
7answers
1k 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 encoding used (in ...
16
votes
2answers
8k views
How to set standard encoding in Visual Studio
I am searching for a way to setup Visual Studio so it always saves my files in UTF-8.
I have only found options to set this project wide is there a way to set it Visual Studio wide?
16
votes
10answers
22k views
Best way to encode text data for XML in Java?
Very similar to this question, except for Java.
What is the recommended way of encoding strings for an XML output in Java. The strings might contain characters like "&", "<", etc.
16
votes
3answers
8k views
Python: Is there a way to determine the encoding of text file?
I know there is something buried in here. But I was just wondering if there is an actual way built into Python to determine text file encoding?
Thanks for your help :)
Edit: As a side question, it ...
16
votes
2answers
49k views
Convert hex string to byte array
As indicated in the answers, this is a duplicate of "How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?"
Hi,
Can we converting a hex string to a byte array using a ...
15
votes
4answers
2k views
How Can I Best Guess the Encoding when the BOM (Byte Order Mark) is Missing?
My program has to read files that use various encodings. They may be ANSI, UTF-8 or UTF-16 (big or little endian).
When the BOM (Byte Order Mark) is there, I have no problem. I know if the file is ...
15
votes
7answers
19k views
How do you remove invalid hexadecimal characters from an XML-based data source prior to constructing an XmlReader or XPathDocument that uses the data?
Is there any easy/general way to clean an XML based data source prior to using it in an XmlReader so that I can gracefully consume XML data that is non-conformant to the hexadecimal character ...
14
votes
4answers
406 views
What is the encoding of argv?
It's not clear to me what encodings are used where in C's argv. In particular, I'm interested in the following scenario:
A user uses locale L1 to create a file whose name, N, contains non-ASCII ...
14
votes
5answers
514 views
Python: Which encoding is used for processing sys.argv?
What encoding are the elements of sys.argv in, in Python? are they encoded with the sys.getdefaultencoding() encoding?
sys.getdefaultencoding(): Return the name of the current default string ...
14
votes
8answers
2k views
How to handle user input of invalid UTF-8 characters?
I'm looking for general a strategy/advice on how to handle invalid UTF-8 input from users.
Even though my webapp uses UTF-8, somehow some users enter invalid characters. This causes errors in PHP's ...
14
votes
7answers
2k views
How can I avoid putting the magic encoding comment on top of every UTF-8 file in Ruby 1.9?
I have a Rails project with a lot of Cyrillic strings in it.
It worked fine on Ruby 1.8, but Ruby 1.9 assumes source files are US-ASCII-encoded unless you provide an # encoding: utf-8 comment at the ...
14
votes
6answers
8k views
ruby 1.9: invalid byte sequence in UTF-8
I'm writing a crawler in Ruby (1.9) that consumes lots of HTML from a lot of random sites.
When trying to extract links, I decided to just use .scan(/href="(.*?)"/i) instead of nokogiri/hpricot (major ...
14
votes
1answer
6k views
How to store custom objects in NSUserDefaults
Alright, so I've been doing some poking around, and I realize my problem, but I don't know how to fix it. I have made a custom class to hold some data. I make objects for this class, and I need to ...
14
votes
3answers
9k views
decodeURIComponent vs unescape, what is wrong with unescape?
In answering another question I became aware that my Javascript/DOM knowledge had become a bit out of date in that I am still using escape/unescape to encode the contents of URL components whereas it ...
14
votes
6answers
2k views
Obscure / encrypt an order number as another number: symmetrical, “random” appearance?
Client has an simple increasing order number (1, 2, 3...). He wants end-users to receive an 8- or 9- digit (digits only -- no characters) "random" number. Obviously, this "random" number actually has ...
13
votes
2answers
348 views
Git character encoding with Spanish characters
I created a repository from existing files. Inside the set of files, was one with the name "español.gif". Now, everytime I do
$ git status
I receive an error:
$ path/espa�ol.gif: Protocol error
...
13
votes
1answer
123 views
Does the autodie-pragma have influence on the encoding?
Why do I get after the "autodie" a different output?
#!/usr/bin/env perl
use warnings;
use 5.012;
use utf8;
use open ':encoding(utf-8)';
use open ':std';
open my $fh, '>', 'test.txt' or die $!;
...
13
votes
3answers
852 views
MySQL treats ÅÄÖ as AAO?
These two querys gives me the exact same result:
select * from topics where name='Harligt';
select * from topics where name='Härligt';
How is this possible? Seems like mysql translates åäö to aao ...
13
votes
3answers
3k views
Why does Python print unicode characters when the default encoding is ASCII?
From the Python 2.6 shell:
>>> import sys
>>> print sys.getdefaultencoding()
ascii
>>> print u'\xe9'
é
>>>
I expected to have either some gibberish or an Error ...
13
votes
4answers
19k views
How to Find Default Charset/Encoding in Java?
The obvious answer is to use Charset.defaultCharset() but we recently found out that this might not be the right answer. I was told that the result is different from real default charset used by ...
13
votes
5answers
624 views
Signup or Invitation Email Verification w/o Database
I'd like to keep my database clean of stale almost-accounts, and I was thinking about making new signups and invitations put their data into the welcome email as an encrypted or hashed url. Once the ...
13
votes
8answers
3k views
How does a file with Chinese characters know how many bytes to use per character?
I have read Joel's article "The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)" but still don't understand all the details. ...
13
votes
3answers
23k views
In HTML I can make a checkmark with ✓ . Is there a corresponding X-mark?
Is there a coresponding X mark to ✓ (✓)? What is it?
13
votes
2answers
12k views
Java FileReader encoding issue
I tried to use java.io.FileReader to read some text files and convert them into a string, but I found the result is wrong encoded and not readable at all.
Here's my environment:
Windows 2003, OS ...
13
votes
9answers
22k views
Java - Convert String to valid URI object
I am trying to get a java.net.URI object from a String. The string has some characters which will need to be replaced by their percentage escape sequences. But when I use URLEncoder to encode the ...
13
votes
4answers
28k views
Convert string to byte[]
We try to convert from string to Byte[] using the following Java code:
String source = "0123456789";
byte[] byteArray = source.getBytes("UTF-16");
We get a byte array of length 22 bytes, we are not ...
13
votes
10answers
24k views
Setting the character encoding in form submit for Internet Explorer
I have a page that contains a form. This page is served with content type text/html;charset=utf-8. I need to submit this form to server using ISO-8859-1 character encoding. Is this possible with ...
13
votes
3answers
17k views
Base64 Encoding Image
I am building an open search add-on for Firefox/IE and the image needs to be Base64 Encoded so how can I base 64 encode the favicon I have?
I am only familiar with PHP