Question

When I enter ë into a form on my web application, this is percent encoded by Google Chrome to %C3%AB.

When I use PHP's urlencode('ë'); This is encoded into %EB.

Why are the encodings different?

How can I encode with the same encoding as Google Chrome with PHP 4?

Was it helpful?

Solution

%EB is the ISO-8859-1 form (a single character).

%C3%AB is the UTF-8 form (e + ¨).

It should work out of the box (if you use a newer version of PHP and UTF-8 for your files).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top