URL 编码器
URL 编码与解码
输入
输出
示例
| Mode | Input | 应用 |
|---|---|---|
| 编码 | hello world & more | |
| 编码 | name=John Doe&city=New York | |
| 解码 | hello%20world%20%26%20more | |
| 解码 | name%3DJohn%20Doe%26city%3DNew%20York | |
| 解析 URL | https://example.com/search?q=hello+world&lang=en | |
| 解析 URL | https://api.example.com/v1/users?page=2&limit=10#results |