URL解码"%2Fpath%2Fto%2Ffile"
Encoded
%2Fpath%2Fto%2Ffile
URL解码结果
/path/to/file
"%2Fpath%2Fto%2Ffile"解码为"/path/to/file"
常见URL编码字符
| Character | Encoded | Name |
|---|---|---|
| %20 | 空格 | |
| / | %2F | 斜杠 |
| ? | %3F | 问号 |
| = | %3D | 等号 |
| & | %26 | 与号 |
| @ | %40 | @符号 |
| # | %23 | 井号 |
| + | %2B | 加号 |
| % | %25 | 百分号 |
URL编码工作原理
URL解码将百分号编码字符还原为原始形式。"%2Fpath%2Fto%2Ffile"变为"/path/to/file"。
使用URL编码器
Loading tool...