logo
GeekFormat

HTTP Cookie Parser

HTTP Cookie Parser

ब्राउज़र द्वारा भेजे गए कुकी हेडर पार्स करें। कुकी-वैल्यू जोड़े, URL एन्कोडिंग और डुप्लिकेट नाम देखें।

पार्स परिणाम

4 कुकी(याँ)
#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"
  }
]