tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

percent-encoding.json (853B)


      1 [
      2  "Tests for percent-encoding.",
      3  {
      4    "input": "\u2020",
      5    "output": {
      6      "big5": "%26%238224%3B",
      7      "euc-kr": "%A2%D3",
      8      "utf-8": "%E2%80%A0",
      9      "windows-1252": "%86"
     10    }
     11  },
     12  "This uses a trailing A to prevent the URL parser from trimming the C0 control.",
     13  {
     14    "input": "\u000EA",
     15    "output": {
     16      "big5": "%0EA",
     17      "iso-2022-jp": "%26%2365533%3BA",
     18      "utf-8": "%0EA"
     19    }
     20  },
     21  {
     22    "input": "\u203E\u005C",
     23    "output": {
     24      "iso-2022-jp": "%1B(J~%1B(B\\",
     25      "utf-8": "%E2%80%BE\\"
     26    }
     27  },
     28  {
     29    "input": "\uE5E5",
     30    "output": {
     31      "gb18030": "%26%2358853%3B",
     32      "utf-8": "%EE%97%A5"
     33    }
     34  },
     35  {
     36    "input": "\u2212",
     37    "output": {
     38      "shift_jis": "%81|",
     39      "utf-8": "%E2%88%92"
     40    }
     41  },
     42  {
     43    "input": "รก|",
     44    "output": {
     45      "utf-8": "%C3%A1|"
     46    }
     47  }
     48 ]