NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Re: Unicode URLs, wtf? (Score:1)
What sort of encoding is that? I mean, I can see it's the Unicode codepoint preceded by %u, but which standard backs this? I've never encountered this before.
Here's my take on it:
Reply to This
Re: (Score:1)
It usually comes from broken javascript applications that uses escape() instead of encodeURI()
escape("\u263A") -> %u263A
encodeURI("\u263A") -> %E2%98%BA
--
chansen