`

URL Encoded Characters

 
阅读更多

URL Encoded Characters

转载于:http://www.degraeve.com/reference/urlencoding.php

      backspace      %08
      tab            %09
      linefeed       %0A
      creturn        %0D
      space          %20
      !              %21
      "              %22
      #              %23
      $              %24
      %              %25
      &              %26
      '              %27
      (              %28
      )              %29
      *              %2A
      +              %2B
      ,              %2C
      -              %2D
      .              %2E
      /              %2F
      0              %30
      1              %31
      2              %32
      3              %33
      4              %34
      5              %35
      6              %36
      7              %37
      8              %38
      9              %39
      :              %3A
      ;              %3B
      <              %3C
      =              %3D
      >              %3E
      ?              %3F
      @              %40
      A              %41
      B              %42
      C              %43
      D              %44
      E              %45
      F              %46
      G              %47
      H              %48
      I              %49
      J              %4A
      K              %4B
      L              %4C
      M              %4D
      N              %4E
      O              %4F
      P              %50
      Q              %51
      R              %52
      S              %53
      T              %54
      U              %55
      V              %56
      W              %57
      X              %58
      Y              %59
      Z              %5A
      [              %5B
      \              %5C
      ]              %5D
      ^              %5E
      _              %5F
      `              %60
      a              %61
      b              %62
      c              %63
      d              %64
      e              %65
      f              %66
      g              %67
      h              %68
      i              %69
      j              %6A
      k              %6B
      l              %6C
      m              %6D
      n              %6E
      o              %6F
      p              %70
      q              %71
      r              %72
      s              %73
      t              %74
      u              %75
      v              %76
      w              %77
      x              %78
      y              %79
      z              %7A
      {              %7B
      |              %7C
      }              %7D
      ~              %7E
      ¢              %A2
      £              %A3
      ¥              %A5
      |              %A6
      §              %A7
      «              %AB
      ¬              %AC
      ¯              %AD
      º              %B0
      ±              %B1
      ª              %B2
      ,              %B4
      µ              %B5
      »              %BB
      ¼              %BC
      ½              %BD
      ¿              %BF
      À              %C0
      Á              %C1
      Â              %C2
      Ã              %C3
      Ä              %C4
      Å              %C5
      Æ              %C6
      Ç              %C7
      È              %C8
      É              %C9
      Ê              %CA
      Ë              %CB
      Ì              %CC
      Í              %CD
      Î              %CE
      Ï              %CF
      Ð              %D0
      Ñ              %D1
      Ò              %D2
      Ó              %D3
      Ô              %D4
      Õ              %D5
      Ö              %D6
      Ø              %D8
      Ù              %D9
      Ú              %DA
      Û              %DB
      Ü              %DC
      Ý              %DD
      Þ              %DE
      ß              %DF
      à              %E0
      á              %E1
      â              %E2
      ã              %E3
      ä              %E4
      å              %E5
      æ              %E6
      ç              %E7
      è              %E8
      é              %E9
      ê              %EA
      ë              %EB
      ì              %EC
      í              %ED
      î              %EE
      ï              %EF
      ð              %F0
      ñ              %F1
      ò              %F2
      ó              %F3
      ô              %F4
      õ              %F5
      ö              %F6
      ÷              %F7
      ø              %F8
      ù              %F9
      ú              %FA
      û              %FB
      ü              %FC
      ý              %FD
      þ              %FE
      ÿ              %FF

分享到:
评论

相关推荐

    swift-url分类解决URL里面的空格中文及其他特殊字符问题

    这个`encoded()`方法首先对URL的绝对字符串进行基本的percent encoding,然后检查是否还有未编码的中文字符。如果找到,我们逐个处理这些中文字符,确保它们被正确编码。这个方法可以很好地处理URL中的空格、中文...

    Python 爬虫之超链接 url中含有中文出错及解决办法

    UnicodeEncodeError: 'ascii' codec can't encode characters in position 68-73: ordinal not in range(128) ``` 这里的位置 68-73 指的是 URL 中 `"金立(Gionee)"` 这段中文字符串的位置。 #### 错误原因分析 ...

    Python发起请求提示UnicodeEncodeError错误代码解决方法

    错误信息"UnicodeEncodeError: ‘latin-1’ codec can’t encode characters in position 73-74: Body (‘测试’) is not valid Latin-1."表明在位置73-74的字符(‘测试’)无法被latin-1编码识别。拉丁-1(latin-1...

    swift-SwiftBase64方便修改字符集

    let customCharacterSet: [Character] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_".characters Base64.setCharacterSet(customCharacterSet) let data = "Hello, World!".data(using: ....

    PKI WINDOWS MISC

    5. **Cannot produce correctly encoded ImageUrl Microsoft Connect.mht**:可能涉及在Windows环境中,使用Microsoft Connect服务时遇到的URL编码问题,这可能与证书的应用场景有关,比如在Web服务或应用程序中。...

    LuaUnicode icu-lua

    Either a UTF-8 encoded string can appear directly with 8-bit characters or you can use the \ddd syntax (note that ddd is a decimal number, unlike some other languages). However, there is no facility ...

    base64-js:用于处理 base64 编码任意字符串的 Node.js 模块

    // Uses URL-safe characters: "_" rather than "/" and "-" rather than "+" var urlSafeEncoded = b64 . encodeBase64UrlSafe ( "(some string)" ) ; 贡献快速入门 假设 git、[Vagrant] 和 [VirtualBox] 已安装: ...

    hashids.pm:Hashids,移植到Perl

    4. **自定义设置**:除了基本的盐和最小长度,还可以自定义其他参数,如定制的字符集(`characters`),这可以提高编码字符串的多样性。 5. **在数据库ID中的应用**:在数据库应用中,`hashids.pm` 可用于对外部...

    谷歌地图 delphi 封装库 2013 0.1.9 全面支持google maps api

    - Improvement: TGMGeoCode-&gt; generated URL is encoded in UTF8 to avoid problems with special characters (? accents, ....) - Improvement: TGMMap.TNonVisualProp -&gt; added MapMarker property. True if Map...

    Java邮件开发Fundamentals of the JavaMail API

    Fundamentals of the JavaMail API Presented by developerWorks, your source for great tutorials ... Table of Contents If you're viewing this document online, you can click any of the topics below ...

    python3.6.5参考手册 chm

    Python参考手册,官方正式版参考手册,chm版。以下摘取部分内容:Navigation index modules | next | Python » 3.6.5 Documentation » Python Documentation contents What’s New in Python ...

    ZendFramework中文文档

    7.5.5. 基本 URL 和子目录 7.5.6. Route Types 7.5.6.1. Zend_Controller_Router_Route 7.5.6.1.1. 变量缺省 7.5.6.1.2. 变量请求 7.5.6.2. Zend_Controller_Router_Route_Static 7.5.6.3. Zend_Controller_...

    eac3to V3.17

    * newly encoded AC3 frame is now used for "silence" instead of file's 1st frame * increased reading block size (might improve reading performance) * optimized TS/m2ts demuxing performance * optimized ...

Global site tag (gtag.js) - Google Analytics