{"id":16650037,"url":"https://github.com/rdch106/simple-rfc1738-encoder","last_synced_at":"2025-07-04T11:39:34.547Z","repository":{"id":70780708,"uuid":"59495747","full_name":"RDCH106/Simple-RFC1738-Encoder","owner":"RDCH106","description":"Simple URL Encoder and Decoder according to RFC 1738","archived":false,"fork":false,"pushed_at":"2023-03-28T15:55:40.000Z","size":87,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T17:31:12.919Z","etag":null,"topics":["ascii-table","iso-8859","javascript","online-demo","rfc-1738","url-encoder","utf-8"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RDCH106.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-05-23T15:47:01.000Z","updated_at":"2023-03-28T15:55:45.000Z","dependencies_parsed_at":"2024-10-23T06:06:38.455Z","dependency_job_id":null,"html_url":"https://github.com/RDCH106/Simple-RFC1738-Encoder","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/RDCH106/Simple-RFC1738-Encoder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RDCH106%2FSimple-RFC1738-Encoder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RDCH106%2FSimple-RFC1738-Encoder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RDCH106%2FSimple-RFC1738-Encoder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RDCH106%2FSimple-RFC1738-Encoder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RDCH106","download_url":"https://codeload.github.com/RDCH106/Simple-RFC1738-Encoder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RDCH106%2FSimple-RFC1738-Encoder/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263503471,"owners_count":23476774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ascii-table","iso-8859","javascript","online-demo","rfc-1738","url-encoder","utf-8"],"created_at":"2024-10-12T09:15:02.296Z","updated_at":"2025-07-04T11:39:34.509Z","avatar_url":"https://github.com/RDCH106.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple-RFC1738-Encoder\n\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/668cece8833a446e9238438a5913b1d3)](https://www.codacy.com/app/RDCH106/Simple-RFC1738-Encoder?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=RDCH106/Simple-RFC1738-Encoder\u0026amp;utm_campaign=Badge_Grade)\n\nSimple URL Encoder and Decoder according to [RFC 1738](https://www.ietf.org/html/rfc1738.txt) with support to use [UTF-8](https://tools.ietf.org/html/rfc3629) codification.\n\n* [RFC 1738 TXT version](https://www.ietf.org/rfc/rfc1738.txt)\n* [UTF-8 (RFC3629) TXT version](https://www.ietf.org/rfc/rfc3629.txt)\n\nStandard URL encoding steps:\n\n* Convert the character string into a sequence of bytes using the UTF-8 encoding\n* Convert each byte that is not an ASCII letter or digit to %HH, where HH is the hexadecimal value of the byte\n\nThe term URL encoding is a bit inexact because the encoding procedure is not limited to URLs ([Uniform Resource Locators](Codificación UTF-8)), but can also be applied to any other URIs ([Uniform Resource Identifiers](https://en.wikipedia.org/wiki/Uniform_Resource_Identifier)) such as URNs ([Uniform Resource Names](https://en.wikipedia.org/wiki/Uniform_Resource_Name))\n\nWhen Simple-RFC1738-Encoder works with UTF-8 enconding is like the function [encodeURI](http://www.w3schools.com/jsref/jsref_encodeuri.asp) in JavaScript, but it is posible encode using other codifications like [ISO-8859](https://en.wikipedia.org/wiki/ISO/IEC_8859) not forcing UTF-8 enconding, very useful if you work with latin characters.\n\nTry it: [Online Demo](https://raw.githack.com/RDCH106/Simple-RFC1738-Encoder/master/demo.html)\n\nAvailable version for Python using an experimental wrapper: https://github.com/RDCH106/pySRE\n\n## URL Encoding Explained\n\n##### Why do I need URL encoding?\nThe URL specification RFC 1738 specifies that only a small set of characters can be used in a URL. Those characters are:\n\n- A to Z (ABCDEFGHIJKLMNOPQRSTUVWXYZ)\n- a to z (abcdefghijklmnopqrstuvwxyz)\n- 0 to 9 (0123456789)\n- `$` (Dollar Sign)\n- `-` (Hyphen / Dash)\n- `_` (Underscore)\n- `.` (Period)\n- `+` (Plus sign)\n- `!` (Exclamation / Bang)\n- `*` (Asterisk / Star)\n- `'` (Single Quote)\n- `(` (Open Bracket)\n- `)` (Closing Bracket)\n\n##### How does URL encoding work?\nAll offending characters are replaced by a % and a two digit hexadecimal value that represents the character in the proper ISO character set. Here are a couple of examples:\n\n- `$` (Dollar Sign) becomes %24\n- `\u0026` (Ampersand) becomes %26\n- `+`(Plus) becomes %2B\n- `,` (Comma) becomes %2C\n- `:` (Colon) becomes %3A\n- `;` (Semi-Colon) becomes %3B\n- `=` (Equals) becomes %3D\n- `?` (Question Mark) becomes %3F\n- `@` (Commercial A / At) becomes %40\n\n### ASCII Table\n\n![ASCII Table](img/asciifull.gif \"ASCII Table and Description\")\n\n### ASCII Code - The extended ASCII table\n\n#### ASCII control characters (character code 0-31)\nThe first 32 characters in the ASCII-table are unprintable control codes and are used to control peripherals such as printers.\n\n|DEC|OCT|HEX|BIN|Symbol|HTML Number|HTML Name|Description|\n|--- |--- |--- |--- |--- |--- |--- |--- |\n|0|000|00|00000000|NUL|`\u0026#000;`||Null char|\n|1|001|01|00000001|SOH|`\u0026#001;`||Start of Heading|\n|2|002|02|00000010|STX|`\u0026#002;`||Start of Text|\n|3|003|03|00000011|ETX|`\u0026#003;`||End of Text|\n|4|004|04|00000100|EOT|`\u0026#004;`||End of Transmission|\n|5|005|05|00000101|ENQ|`\u0026#005;`||Enquiry|\n|6|006|06|00000110|ACK|`\u0026#006;`||Acknowledgment|\n|7|007|07|00000111|BEL|`\u0026#007;`||Bell|\n|8|010|08|00001000|BS|`\u0026#008;`||Back Space|\n|9|011|09|00001001|HT|`\u0026#009;`||Horizontal Tab|\n|10|012|0A|00001010|LF|`\u0026#010;`||Line Feed|\n|11|013|0B|00001011|VT|`\u0026#011;`||Vertical Tab|\n|12|014|0C|00001100|FF|`\u0026#012;`||Form Feed|\n|13|015|0D|00001101|CR|`\u0026#013;`||Carriage Return|\n|14|016|0E|00001110|SO|`\u0026#014;`||Shift Out / X-On|\n|15|017|0F|00001111|SI|`\u0026#015;`||Shift In / X-Off|\n|16|020|10|00010000|DLE|`\u0026#016;`||Data Line Escape|\n|17|021|11|00010001|DC1|`\u0026#017;`||Device Control 1 (oft. XON)|\n|18|022|12|00010010|DC2|`\u0026#018;`||Device Control 2|\n|19|023|13|00010011|DC3|`\u0026#019;`||Device Control 3 (oft. XOFF)|\n|20|024|14|00010100|DC4|`\u0026#020;`||Device Control 4|\n|21|025|15|00010101|NAK|`\u0026#021;`||Negative Acknowledgement|\n|22|026|16|00010110|SYN|`\u0026#022;`||Synchronous Idle|\n|23|027|17|00010111|ETB|`\u0026#023;`||End of Transmit Block|\n|24|030|18|00011000|CAN|`\u0026#024;`||Cancel|\n|25|031|19|00011001|EM|`\u0026#025;`||End of Medium|\n|26|032|1A|00011010|SUB|`\u0026#026;`||Substitute|\n|27|033|1B|00011011|ESC|`\u0026#027;`||Escape|\n|28|034|1C|00011100|FS|`\u0026#028;`||File Separator|\n|29|035|1D|00011101|GS|`\u0026#029;`||Group Separator|\n|30|036|1E|00011110|RS|`\u0026#030;`||Record Separator|\n|31|037|1F|00011111|US|`\u0026#031;`||Unit Separator|\n\n#### ASCII printable characters (character code 32-127)\nCodes 32-127 are common for all the different variations of the ASCII table, they are called printable characters, represent letters, digits, punctuation marks, and a few miscellaneous symbols. You will find almost every character on your keyboard. Character 127 represents the command DEL.\n\n|DEC|OCT|HEX|BIN|Symbol|HTML Number|HTML Name|Description|\n|--- |--- |--- |--- |--- |--- |--- |--- |\n|32|040|20|00100000| |`\u0026#32;`||Space|\n|33|041|21|00100001|!|`\u0026#33;`||Exclamation mark|\n|34|042|22|00100010|\"|`\u0026#34;`|`\u0026quot;`|Double quotes (or speech marks)|\n|35|043|23|00100011|#|`\u0026#35;`||Number|\n|36|044|24|00100100|$|`\u0026#36;`||Dollar|\n|37|045|25|00100101|%|`\u0026#37;`||Procenttecken|\n|38|046|26|00100110|\u0026|`\u0026#38;`|`\u0026amp;`|Ampersand|\n|39|047|27|00100111|'|`\u0026#39;`||Single quote|\n|40|050|28|00101000|(|`\u0026#40;`||Open parenthesis (or open bracket)|\n|41|051|29|00101001|)|`\u0026#41;`||Close parenthesis (or close bracket)|\n|42|052|2A|00101010| * |`\u0026#42;`||Asterisk|\n|43|053|2B|00101011|+|`\u0026#43;`||Plus|\n|44|054|2C|00101100|,|`\u0026#44;`||Comma|\n|45|055|2D|00101101|-|`\u0026#45;`||Hyphen|\n|46|056|2E|00101110|.|`\u0026#46;`||Period, dot or full stop|\n|47|057|2F|00101111|/|`\u0026#47;`||Slash or divide|\n|48|060|30|00110000|0|`\u0026#48;`||Zero|\n|49|061|31|00110001|1|`\u0026#49;`||One|\n|50|062|32|00110010|2|`\u0026#50;`||Two|\n|51|063|33|00110011|3|`\u0026#51;`||Three|\n|52|064|34|00110100|4|`\u0026#52;`||Four|\n|53|065|35|00110101|5|`\u0026#53;`||Five|\n|54|066|36|00110110|6|`\u0026#54;`||Six|\n|55|067|37|00110111|7|`\u0026#55;`||Seven|\n|56|070|38|00111000|8|`\u0026#56;`||Eight|\n|57|071|39|00111001|9|`\u0026#57;`||Nine|\n|58|072|3A|00111010|:|`\u0026#58;`||Colon|\n|59|073|3B|00111011|;|`\u0026#59;`||Semicolon|\n|60|074|3C|00111100|\u003c|`\u0026#60;`|`\u0026lt;`|Less than (or open angled bracket)|\n|61|075|3D|00111101|=|`\u0026#61;`||Equals|\n|62|076|3E|00111110|\u003e|`\u0026#62;`|`\u0026gt;`|Greater than (or close angled bracket)|\n|63|077|3F|00111111|?|`\u0026#63;`||Question mark|\n|64|100|40|01000000|@|`\u0026#64;`||At symbol|\n|65|101|41|01000001|A|`\u0026#65;`||Uppercase A|\n|66|102|42|01000010|B|`\u0026#66;`||Uppercase B|\n|67|103|43|01000011|C|`\u0026#67;`||Uppercase C|\n|68|104|44|01000100|D|`\u0026#68;`||Uppercase D|\n|69|105|45|01000101|E|`\u0026#69;`||Uppercase E|\n|70|106|46|01000110|F|`\u0026#70;`||Uppercase F|\n|71|107|47|01000111|G|`\u0026#71;`||Uppercase G|\n|72|110|48|01001000|H|`\u0026#72;`||Uppercase H|\n|73|111|49|01001001|I|`\u0026#73;`||Uppercase I|\n|74|112|4A|01001010|J|`\u0026#74;`||Uppercase J|\n|75|113|4B|01001011|K|`\u0026#75;`||Uppercase K|\n|76|114|4C|01001100|L|`\u0026#76;`||Uppercase L|\n|77|115|4D|01001101|M|`\u0026#77;`||Uppercase M|\n|78|116|4E|01001110|N|`\u0026#78;`||Uppercase N|\n|79|117|4F|01001111|O|`\u0026#79;`||Uppercase O|\n|80|120|50|01010000|P|`\u0026#80;`||Uppercase P|\n|81|121|51|01010001|Q|`\u0026#81;`||Uppercase Q|\n|82|122|52|01010010|R|`\u0026#82;`||Uppercase R|\n|83|123|53|01010011|S|`\u0026#83;`||Uppercase S|\n|84|124|54|01010100|T|`\u0026#84;`||Uppercase T|\n|85|125|55|01010101|U|`\u0026#85;`||Uppercase U|\n|86|126|56|01010110|V|`\u0026#86;`||Uppercase V|\n|87|127|57|01010111|W|`\u0026#87;`||Uppercase W|\n|88|130|58|01011000|X|`\u0026#88;`||Uppercase X|\n|89|131|59|01011001|Y|`\u0026#89;`||Uppercase Y|\n|90|132|5A|01011010|Z|`\u0026#90;`||Uppercase Z|\n|91|133|5B|01011011|[|`\u0026#91;`||Opening bracket|\n|92|134|5C|01011100| \\ |`\u0026#92;`||Backslash|\n|93|135|5D|01011101|]|`\u0026#93;`||Closing bracket|\n|94|136|5E|01011110|^|`\u0026#94;`||Caret - circumflex|\n|95|137|5F|01011111| _ |`\u0026#95;`||Underscore|\n|96|140|60|01100000|``` ` ```|`\u0026#96;`||Grave accent|\n|97|141|61|01100001|a|`\u0026#97;`||Lowercase a|\n|98|142|62|01100010|b|`\u0026#98;`||Lowercase b|\n|99|143|63|01100011|c|`\u0026#99;`||Lowercase c|\n|100|144|64|01100100|d|`\u0026#100;`||Lowercase d|\n|101|145|65|01100101|e|`\u0026#101;`||Lowercase e|\n|102|146|66|01100110|f|`\u0026#102;`||Lowercase f|\n|103|147|67|01100111|g|`\u0026#103;`||Lowercase g|\n|104|150|68|01101000|h|`\u0026#104;`||Lowercase h|\n|105|151|69|01101001|i|`\u0026#105;`||Lowercase i|\n|106|152|6A|01101010|j|`\u0026#106;`||Lowercase j|\n|107|153|6B|01101011|k|`\u0026#107;`||Lowercase k|\n|108|154|6C|01101100|l|`\u0026#108;`||Lowercase l|\n|109|155|6D|01101101|m|`\u0026#109;`||Lowercase m|\n|110|156|6E|01101110|n|`\u0026#110;`||Lowercase n|\n|111|157|6F|01101111|o|`\u0026#111;`||Lowercase o|\n|112|160|70|01110000|p|`\u0026#112;`||Lowercase p|\n|113|161|71|01110001|q|`\u0026#113;`||Lowercase q|\n|114|162|72|01110010|r|`\u0026#114;`||Lowercase r|\n|115|163|73|01110011|s|`\u0026#115;`||Lowercase s|\n|116|164|74|01110100|t|`\u0026#116;`||Lowercase t|\n|117|165|75|01110101|u|`\u0026#117;`||Lowercase u|\n|118|166|76|01110110|v|`\u0026#118;`||Lowercase v|\n|119|167|77|01110111|w|`\u0026#119;`||Lowercase w|\n|120|170|78|01111000|x|`\u0026#120;`||Lowercase x|\n|121|171|79|01111001|y|`\u0026#121;`||Lowercase y|\n|122|172|7A|01111010|z|`\u0026#122;`||Lowercase z|\n|123|173|7B|01111011|{|`\u0026#123;`||Opening brace|\n|124|174|7C|01111100|\\||`\u0026#124;`||Vertical bar|\n|125|175|7D|01111101|}|`\u0026#125;`||Closing brace|\n|126|176|7E|01111110|~|`\u0026#126;`||Equivalency sign - tilde|\n|127|177|7F|01111111||`\u0026#127;`||Delete|\n\n**Note**: You can use *ALT + code_number* keyboard shortcut to print the characters. \n\n**Example**: *ALT+97* is \"*a*\" character\n\n#### The extended ASCII codes (character code 128-255)\nThere are several different variations of the 8-bit ASCII table. The table below is according to ISO 8859-1, also called ISO Latin-1. Codes 128-159 contain the Microsoft® Windows Latin-1 extended characters.\n\n|DEC|OCT|HEX|BIN|Symbol|HTML Number|HTML Name|Description|\n|--- |--- |--- |--- |--- |--- |--- |--- |\n|128|200|80|10000000|€|`\u0026#128;`|`\u0026euro;`|Euro sign|\n|129|201|81|10000001|||||\n|130|202|82|10000010|‚|`\u0026#130;`|`\u0026sbquo;`|Single low-9 quotation mark|\n|131|203|83|10000011|ƒ|`\u0026#131;`|`\u0026fnof;`|Latin small letter f with hook|\n|132|204|84|10000100|„|`\u0026#132;`|`\u0026bdquo;`|Double low-9 quotation mark|\n|133|205|85|10000101|…|`\u0026#133;`|`\u0026hellip;`|Horizontal ellipsis|\n|134|206|86|10000110|†|`\u0026#134;`|`\u0026dagger;`|Dagger|\n|135|207|87|10000111|‡|`\u0026#135;`|`\u0026Dagger;`|Double dagger|\n|136|210|88|10001000|ˆ|`\u0026#136;`|`\u0026circ;`|Modifier letter circumflex accent|\n|137|211|89|10001001|‰|`\u0026#137;`|`\u0026permil;`|Per mille sign|\n|138|212|8A|10001010|Š|`\u0026#138;`|`\u0026Scaron;`|Latin capital letter S with caron|\n|139|213|8B|10001011|‹|`\u0026#139;`|`\u0026lsaquo;`|Single left-pointing angle quotation|\n|140|214|8C|10001100|Œ|`\u0026#140;`|`\u0026OElig;`|Latin capital ligature OE|\n|141|215|8D|10001101|||||\n|142|216|8E|10001110|Ž|`\u0026#142;`||Latin captial letter Z with caron|\n|143|217|8F|10001111|||||\n|144|220|90|10010000|||||\n|145|221|91|10010001|‘|`\u0026#145;`|`\u0026lsquo;`|Left single quotation mark|\n|146|222|92|10010010|’|`\u0026#146;`|`\u0026rsquo;`|Right single quotation mark|\n|147|223|93|10010011|“|`\u0026#147;`|`\u0026ldquo;`|Left double quotation mark|\n|148|224|94|10010100|”|`\u0026#148;`|`\u0026rdquo;`|Right double quotation mark|\n|149|225|95|10010101|•|`\u0026#149;`|`\u0026bull;`|Bullet|\n|150|226|96|10010110|–|`\u0026#150;`|`\u0026ndash;`|En dash|\n|151|227|97|10010111|—|`\u0026#151;`|`\u0026mdash;`|Em dash|\n|152|230|98|10011000|˜|`\u0026#152;`|`\u0026tilde;`|Small tilde|\n|153|231|99|10011001|™|`\u0026#153;`|`\u0026trade;`|Trade mark sign|\n|154|232|9A|10011010|š|`\u0026#154;`|`\u0026scaron;`|Latin small letter S with caron|\n|155|233|9B|10011011|›|`\u0026#155;`|`\u0026rsaquo;`|Single right-pointing angle quotation mark|\n|156|234|9C|10011100|œ|`\u0026#156;`|`\u0026oelig;`|Latin small ligature oe|\n|157|235|9D|10011101|||||\n|158|236|9E|10011110|ž|`\u0026#158;`||Latin small letter z with caron|\n|159|237|9F|10011111|Ÿ|`\u0026#159;`|`\u0026Yuml;`|Latin capital letter Y with diaeresis|\n|160|240|A0|10100000||`\u0026#160;`|`\u0026nbsp;`|Non-breaking space|\n|161|241|A1|10100001|¡|`\u0026#161;`|`\u0026iexcl;`|Inverted exclamation mark|\n|162|242|A2|10100010|¢|`\u0026#162;`|`\u0026cent;`|Cent sign|\n|163|243|A3|10100011|£|`\u0026#163;`|`\u0026pound;`|Pound sign|\n|164|244|A4|10100100|¤|`\u0026#164;`|`\u0026curren;`|Currency sign|\n|165|245|A5|10100101|¥|`\u0026#165;`|`\u0026yen;`|Yen sign|\n|166|246|A6|10100110|¦|`\u0026#166;`|`\u0026brvbar;`|Pipe, Broken vertical bar|\n|167|247|A7|10100111|§|`\u0026#167;`|`\u0026sect;`|Section sign|\n|168|250|A8|10101000|¨|`\u0026#168;`|`\u0026uml;`|Spacing diaeresis - umlaut|\n|169|251|A9|10101001|©|`\u0026#169;`|`\u0026copy;`|Copyright sign|\n|170|252|AA|10101010|ª|`\u0026#170;`|`\u0026ordf;`|Feminine ordinal indicator|\n|171|253|AB|10101011|«|`\u0026#171;`|`\u0026laquo;`|Left double angle quotes|\n|172|254|AC|10101100|¬|`\u0026#172;`|`\u0026not;`|Not sign|\n|173|255|AD|10101101|­|`\u0026#173;`|`\u0026shy;`|Soft hyphen|\n|174|256|AE|10101110|®|`\u0026#174;`|`\u0026reg;`|Registered trade mark sign|\n|175|257|AF|10101111|¯|`\u0026#175;`|`\u0026macr;`|Spacing macron - overline|\n|176|260|B0|10110000|°|`\u0026#176;`|`\u0026deg;`|Degree sign|\n|177|261|B1|10110001|±|`\u0026#177;`|`\u0026plusmn;`|Plus-or-minus sign|\n|178|262|B2|10110010|²|`\u0026#178;`|`\u0026sup2;`|Superscript two - squared|\n|179|263|B3|10110011|³|`\u0026#179;`|`\u0026sup3;`|Superscript three - cubed|\n|180|264|B4|10110100|´|`\u0026#180;`|`\u0026acute;`|Acute accent - spacing acute|\n|181|265|B5|10110101|µ|`\u0026#181;`|`\u0026micro;`|Micro sign|\n|182|266|B6|10110110|¶|`\u0026#182;`|`\u0026para;`|Pilcrow sign - paragraph sign|\n|183|267|B7|10110111|·|`\u0026#183;`|`\u0026middot;`|Middle dot - Georgian comma|\n|184|270|B8|10111000|¸|`\u0026#184;`|`\u0026cedil;`|Spacing cedilla|\n|185|271|B9|10111001|¹|`\u0026#185;`|`\u0026sup1;`|Superscript one|\n|186|272|BA|10111010|º|`\u0026#186;`|`\u0026ordm;`|Masculine ordinal indicator|\n|187|273|BB|10111011|»|`\u0026#187;`|`\u0026raquo;`|Right double angle quotes|\n|188|274|BC|10111100|¼|`\u0026#188;`|`\u0026frac14;`|Fraction one quarter|\n|189|275|BD|10111101|½|`\u0026#189;`|`\u0026frac12;`|Fraction one half|\n|190|276|BE|10111110|¾|`\u0026#190;`|`\u0026frac34;`|Fraction three quarters|\n|191|277|BF|10111111|¿|`\u0026#191;`|`\u0026iquest;`|Inverted question mark|\n|192|300|C0|11000000|À|`\u0026#192;`|`\u0026Agrave;`|Latin capital letter A with grave|\n|193|301|C1|11000001|Á|`\u0026#193;`|`\u0026Aacute;`|Latin capital letter A with acute|\n|194|302|C2|11000010|Â|`\u0026#194;`|`\u0026Acirc;`|Latin capital letter A with circumflex|\n|195|303|C3|11000011|Ã|`\u0026#195;`|`\u0026Atilde;`|Latin capital letter A with tilde|\n|196|304|C4|11000100|Ä|`\u0026#196;`|`\u0026Auml;`|Latin capital letter A with diaeresis|\n|197|305|C5|11000101|Å|`\u0026#197;`|`\u0026Aring;`|Latin capital letter A with ring above|\n|198|306|C6|11000110|Æ|`\u0026#198;`|`\u0026AElig;`|Latin capital letter AE|\n|199|307|C7|11000111|Ç|`\u0026#199;`|`\u0026Ccedil;`|Latin capital letter C with cedilla|\n|200|310|C8|11001000|È|`\u0026#200;`|`\u0026Egrave;`|Latin capital letter E with grave|\n|201|311|C9|11001001|É|`\u0026#201;`|`\u0026Eacute;`|Latin capital letter E with acute|\n|202|312|CA|11001010|Ê|`\u0026#202;`|`\u0026Ecirc;`|Latin capital letter E with circumflex|\n|203|313|CB|11001011|Ë|`\u0026#203;`|`\u0026Euml;`|Latin capital letter E with diaeresis|\n|204|314|CC|11001100|Ì|`\u0026#204;`|`\u0026Igrave;`|Latin capital letter I with grave|\n|205|315|CD|11001101|Í|`\u0026#205;`|`\u0026Iacute;`|Latin capital letter I with acute|\n|206|316|CE|11001110|Î|`\u0026#206;`|`\u0026Icirc;`|Latin capital letter I with circumflex|\n|207|317|CF|11001111|Ï|`\u0026#207;`|`\u0026Iuml;`|Latin capital letter I with diaeresis|\n|208|320|D0|11010000|Ð|`\u0026#208;`|`\u0026ETH;`|Latin capital letter ETH|\n|209|321|D1|11010001|Ñ|`\u0026#209;`|`\u0026Ntilde;`|Latin capital letter N with tilde|\n|210|322|D2|11010010|Ò|`\u0026#210;`|`\u0026Ograve;`|Latin capital letter O with grave|\n|211|323|D3|11010011|Ó|`\u0026#211;`|`\u0026Oacute;`|Latin capital letter O with acute|\n|212|324|D4|11010100|Ô|`\u0026#212;`|`\u0026Ocirc;`|Latin capital letter O with circumflex|\n|213|325|D5|11010101|Õ|`\u0026#213;`|`\u0026Otilde;`|Latin capital letter O with tilde|\n|214|326|D6|11010110|Ö|`\u0026#214;`|`\u0026Ouml;`|Latin capital letter O with diaeresis|\n|215|327|D7|11010111|×|`\u0026#215;`|`\u0026times;`|Multiplication sign|\n|216|330|D8|11011000|Ø|`\u0026#216;`|`\u0026Oslash;`|Latin capital letter O with slash|\n|217|331|D9|11011001|Ù|`\u0026#217;`|`\u0026Ugrave;`|Latin capital letter U with grave|\n|218|332|DA|11011010|Ú|`\u0026#218;`|`\u0026Uacute;`|Latin capital letter U with acute|\n|219|333|DB|11011011|Û|`\u0026#219;`|`\u0026Ucirc;`|Latin capital letter U with circumflex|\n|220|334|DC|11011100|Ü|`\u0026#220;`|`\u0026Uuml;`|Latin capital letter U with diaeresis|\n|221|335|DD|11011101|Ý|`\u0026#221;`|`\u0026Yacute;`|Latin capital letter Y with acute|\n|222|336|DE|11011110|Þ|`\u0026#222;`|`\u0026THORN;`|Latin capital letter THORN|\n|223|337|DF|11011111|ß|`\u0026#223;`|`\u0026szlig;`|Latin small letter sharp s - ess-zed|\n|224|340|E0|11100000|à|`\u0026#224;`|`\u0026agrave;`|Latin small letter a with grave|\n|225|341|E1|11100001|á|`\u0026#225;`|`\u0026aacute;`|Latin small letter a with acute|\n|226|342|E2|11100010|â|`\u0026#226;`|`\u0026acirc;`|Latin small letter a with circumflex|\n|227|343|E3|11100011|ã|`\u0026#227;`|`\u0026atilde;`|Latin small letter a with tilde|\n|228|344|E4|11100100|ä|`\u0026#228;`|`\u0026auml;`|Latin small letter a with diaeresis|\n|229|345|E5|11100101|å|`\u0026#229;`|`\u0026aring;`|Latin small letter a with ring above|\n|230|346|E6|11100110|æ|`\u0026#230;`|`\u0026aelig;`|Latin small letter ae|\n|231|347|E7|11100111|ç|`\u0026#231;`|`\u0026ccedil;`|Latin small letter c with cedilla|\n|232|350|E8|11101000|è|`\u0026#232;`|`\u0026egrave;`|Latin small letter e with grave|\n|233|351|E9|11101001|é|`\u0026#233;`|`\u0026eacute;`|Latin small letter e with acute|\n|234|352|EA|11101010|ê|`\u0026#234;`|`\u0026ecirc;`|Latin small letter e with circumflex|\n|235|353|EB|11101011|ë|`\u0026#235;`|`\u0026euml;`|Latin small letter e with diaeresis|\n|236|354|EC|11101100|ì|`\u0026#236;`|`\u0026igrave;`|Latin small letter i with grave|\n|237|355|ED|11101101|í|`\u0026#237;`|`\u0026iacute;`|Latin small letter i with acute|\n|238|356|EE|11101110|î|`\u0026#238;`|`\u0026icirc;`|Latin small letter i with circumflex|\n|239|357|EF|11101111|ï|`\u0026#239;`|`\u0026iuml;`|Latin small letter i with diaeresis|\n|240|360|F0|11110000|ð|`\u0026#240;`|`\u0026eth;`|Latin small letter eth|\n|241|361|F1|11110001|ñ|`\u0026#241;`|`\u0026ntilde;`|Latin small letter n with tilde|\n|242|362|F2|11110010|ò|`\u0026#242;`|`\u0026ograve;`|Latin small letter o with grave|\n|243|363|F3|11110011|ó|`\u0026#243;`|`\u0026oacute;`|Latin small letter o with acute|\n|244|364|F4|11110100|ô|`\u0026#244;`|`\u0026ocirc;`|Latin small letter o with circumflex|\n|245|365|F5|11110101|õ|`\u0026#245;`|`\u0026otilde;`|Latin small letter o with tilde|\n|246|366|F6|11110110|ö|`\u0026#246;`|`\u0026ouml;`|Latin small letter o with diaeresis|\n|247|367|F7|11110111|÷|`\u0026#247;`|`\u0026divide;`|Division sign|\n|248|370|F8|11111000|ø|`\u0026#248;`|`\u0026oslash;`|Latin small letter o with slash|\n|249|371|F9|11111001|ù|`\u0026#249;`|`\u0026ugrave;`|Latin small letter u with grave|\n|250|372|FA|11111010|ú|`\u0026#250;`|`\u0026uacute;`|Latin small letter u with acute|\n|251|373|FB|11111011|û|`\u0026#251;`|`\u0026ucirc;`|Latin small letter u with circumflex|\n|252|374|FC|11111100|ü|`\u0026#252;`|`\u0026uuml;`|Latin small letter u with diaeresis|\n|253|375|FD|11111101|ý|`\u0026#253;`|`\u0026yacute;`|Latin small letter y with acute|\n|254|376|FE|11111110|þ|`\u0026#254;`|`\u0026thorn;`|Latin small letter thorn|\n|255|377|FF|11111111|ÿ|`\u0026#255;`|`\u0026yuml;`|Latin small letter y with diaeresis|\n\n**Note**: You can use *ALT + 0 + code_number* keyboard shortcut to print the characters. \n\n**Example**: *ALT+0128* is \"*€*\" character\n\nMarkdown Tables generated with help of [markdownTables online tool](http://markdowntables.mrvautin.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdch106%2Fsimple-rfc1738-encoder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frdch106%2Fsimple-rfc1738-encoder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdch106%2Fsimple-rfc1738-encoder/lists"}