URL decoding confusion

后端 未结 2 1260
清歌不尽
清歌不尽 2021-01-15 04:22

I\'ve got a DB that refers to the following url:

http://en.wikipedia.org/wiki/Herbert_Gr%F6nemeyer

However, it seems that this is a bad URLEncoding, causing

2条回答
  •  不要未来只要你来
    2021-01-15 04:41

    %C3%B6 is proper UTF-8 encoding for ö (o-umlaut). I would assume that %F6 is byte-for-byte copy of byte value for some local encoding of same character (e.g. from code page 1252).

提交回复
热议问题