URL Encoding: Difference between revisions
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: | ||
< | Read [http://www.blooberry.com/indexdot/html/topics/urlencoding.htm URL Encoding] first! | ||
space | |||
'Pound' character ( | == filename encoding == | ||
Left Square Bracket ( | |||
Right Square Bracket ( | |||
</ | |||
<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 --> _</td> | |||
</tr> | |||
<tr> | |||
<td>'Pound' character ("#")</td> | |||
<td>23</td> | |||
<td>@23 --> #</td> | |||
</tr> | |||
<tr> | |||
<td>Left Bracket ("(")</td> | |||
<td>28</td> | |||
<td> </td> | |||
</tr> | |||
<tr> | |||
<td>Right Bracket (")")</td> | |||
<td>29</td> | |||
<td> </td> | |||
</tr> | |||
<tr> | |||
<td>Left Square Bracket ("[")</td> | |||
<td>5b</td> | |||
<td>@5b --> [</td> | |||
</tr> | |||
<tr> | |||
<td>Right Square Bracket ("]")</td> | |||
<td>5d</td> | |||
<td>@5d --> ]</td> | |||
</tr> | |||
<tr> | |||
<td>(left blank purposely)</td> | |||
<td> </td> | |||
<td> </td> | |||
</tr> | |||
</table> | |||
note | note | ||
* The code | * 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: | ||
* [[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
. It should be %20 in the common browser.
related page:
- Batch Process
- cool! HTML unicode online converter by piaip