4
votes
4answers
355 views
How do decode URL in Emacs Lisp?
I know there's got to be a built-in function to decode a URL-encoded string (query string) in Emacs Lisp, but for the life of me I can't find it today, either in my lisp/ folder or with google.
…
0
votes
1answer
633 views
Why would Apache be URL decoding my query string?
Hello,
My Web host has refused to help me with this, so I'm coming to the wise folks here for some help "black-box debugging". Here's an edited version of what I sent to them:
I have two (among …
0
votes
3answers
2k views
Unicode URL decoding
The usual method of URL-encoding a unicode character is to split it into 2 %HH codes. (\u4161 => %41%61)
But, how is unicode distinguished when decoding? How do you know that %41%61 is \u4161 vs. …
