URL Encoding: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
mNo edit summary
No edit summary
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</strong></td>
    <td><strong>Renaming rule</strong></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 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]]




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

Revision as of 16:50, 14 March 2007

Read URL Encoding first!

filename encoding

Character Encoding Code Renaming rule
space 20 @20 --> _
'Pound' character ("#") 23 @23 --> #
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: