URL Encoding: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
mNo edit summary
No edit summary
Tags: Mobile edit Mobile web edit
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<pre>
Read [http://www.blooberry.com/indexdot/html/topics/urlencoding.htm URL Encoding] first!
space: @20 --> _
 
'Pound' character ("#"): @23 --> #
== filename encoding ==
Left Square Bracket ("["): @5b --> [
 
Right Square Bracket ("]"): @5d --> ]
 
</pre>
 
<table width="100%" border="1">
  <tr bgcolor="#CCCCCC">
    <td><strong>Character</strong></td>
    <td><strong>Encoding Code (Hex)</strong></td>
    <td><strong>Renaming rule</strong></td>
  </tr>
  <tr>
    <td>Quotation marks "</td>
    <td>22</td>
    <td></td>
  </tr>
  <tr>
    <td>space</td>
    <td>20</td>
    <td>@20 --&gt; _</td>
  </tr>
  <tr>
    <td>'Pound' character (&quot;#&quot;)</td>
    <td>23</td>
    <td>@23 --&gt; #</td>
  </tr>
  <tr>
    <td>Left Bracket (&quot;(&quot;)</td>
    <td>28</td>
    <td> </td>
  </tr>
  <tr>
    <td>Right Bracket (&quot;)&quot;)</td>
    <td>29</td>
    <td> </td>
  </tr>
  <tr>
    <td>Left Square Bracket (&quot;[&quot;)</td>
    <td>5b</td>
    <td>@5b --&gt; [</td>
  </tr>
  <tr>
    <td>Right Square Bracket (&quot;]&quot;)</td>
    <td>5d</td>
    <td>@5d --&gt; ]</td>
  </tr>
  <tr>
    <td>(left blank purposely)</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
 


note
note
* The code @20 was generated by [http://amb.vis.ne.jp/mozilla/scrapbook/ ScrapBook] extension of {{Fx}}. It should be %20 in the common browser.
* The @ symbol before the code points was generated by [http://amb.vis.ne.jp/mozilla/scrapbook/ ScrapBook] extension of {{Fx}}. It should be %20 in the common browser.
 


related page:  
related page:  
* [http://www.blooberry.com/indexdot/html/topics/urlencoding.htm URL Encoding]
* [[Batch Process]]
* [[Batch Process]]
* '''cool!''' [http://ntu.csie.org/~piaip/unihtml/ HTML unicode] online converter by piaip




[[Category:Browser]]
[[Category:Browser]] [[Category:Tool]]

Latest revision as of 14:06, 5 July 2016

Read URL Encoding first!

filename encoding[edit]

Character Encoding Code (Hex) Renaming rule
Quotation marks " 22
space 20 @20 --> _
'Pound' character ("#") 23 @23 --> #
Left Bracket ("(") 28
Right Bracket (")") 29
Left Square Bracket ("[") 5b @5b --> [
Right Square Bracket ("]") 5d @5d --> ]
(left blank purposely)    


note

  • The @ symbol before the code points was generated by ScrapBook extension of Firefox browser_firefox.png . It should be %20 in the common browser.


related page: