HTTP Cookie Parser
HTTP Cookie Parser
ブラウザから送信されたCookieヘッダーを解析。キーと値のペア、URLエンコーディング、重複名前のoccurrencesをすぐに表示。
解析結果
4 Cookie(s)
#1session
元の値: abc123
デコード値: abc123
#2theme
元の値: dark
デコード値: dark
#3locale
元の値: zh-CN
デコード値: zh-CN
#4callback
元の値: https%3A%2F%2Fgeekformat.com%2Fdone
デコード値: https://geekformat.com/done
JSONプレビュー
[
{
"index": 0,
"raw": "session=abc123",
"name": "session",
"value": "abc123",
"decodedValue": "abc123"
},
{
"index": 1,
"raw": "theme=dark",
"name": "theme",
"value": "dark",
"decodedValue": "dark"
},
{
"index": 2,
"raw": "locale=zh-CN",
"name": "locale",
"value": "zh-CN",
"decodedValue": "zh-CN"
},
{
"index": 3,
"raw": "callback=https%3A%2F%2Fgeekformat.com%2Fdone",
"name": "callback",
"value": "https%3A%2F%2Fgeekformat.com%2Fdone",
"decodedValue": "https://geekformat.com/done"
}
]