🔗 URL & HTML 编解码

URL 编解码和 HTML 实体转换工具

🌐 URL 编解码工具
📚 批量处理模式
输入内容后点击编码或解码按钮
💡 常见用例:
中文 URL: https://example.com/搜索?关键词=测试
特殊字符: https://example.com/path?q=hello world&type=json
编码后: https%3A//example.com/path%3Fq%3Dhello%20world%26type%3Djson
基础 URL
https://example.com/search?q=测试
特殊字符
name=张三&email=test@example.com
已编码内容
https%3A%2F%2Fexample.com
📄 HTML 实体编解码
📚 批量处理模式
输入内容后点击编码或解码按钮
💡 常见实体转换:
< >: 小于号和大于号
&: 和号 (&)
": 双引号 (")
': 单引号 (')
脚本标签
<script>alert('test');</script>
HTML 标签
<div class="test">内容</div>
HTML 实体
&lt;&gt;&quot;&amp;
🔧 URL组件拆解
输入URL后点击解析按钮
完整URL示例
https://user:pass@example.com:8080/path?q=test#section
API URL
https://api.example.com/v1/users?filter=active&limit=20