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?
ë
has different byte representations in different charsets. – Stylus