Punycode


Punycode is a representation of Unicode with the limited ASCII character subset used for Internet hostnames. Using Punycode, host names containing Unicode characters are transcoded to a subset of ASCII consisting of letters, digits, and hyphens, which is called the letter–digit–hyphen subset. For example, the German München is encoded as Mnchen-3ya.
While the Domain Name System technically supports arbitrary sequences of octets in domain name labels, the DNS standards recommend the use of the LDH subset of ASCII conventionally used for host names, and require that string comparisons between DNS domain names should be case-insensitive. The Punycode syntax is a method of encoding strings containing Unicode characters, such as internationalized domain names, into the LDH subset of ASCII favored by DNS. It is specified in IETF Request for Comments 3492.

Origin of the name

The RFC author, Adam Costello, is reported to have written:

Why “Punycode”? It rhymes with Unicode and is intended to encode Unicode strings. It is “puny” in three senses: The repertoire of characters used in the encoded strings is small, the encoded strings are short, and the implementation is small.

Description

As stated in RFC 3492, "Punycode is an instance of a more general algorithm called Bootstring, which allows strings composed from a small set of 'basic' code points to uniquely represent any string of code points drawn from a larger set." Punycode defines parameters for the general Bootstring algorithm to match the characteristics of Unicode text. This section demonstrates the procedure for Punycode encoding, using as an example the German string "bücher", which is translated into the label "bcher-kva".
To make the encoding and decoding algorithms simple, no attempt has been made to prevent some encoded values from encoding inadmissible Unicode values: however, these should be checked for and detected during decoding.
Punycode is designed to work across all scripts, and to be self-optimizing by attempting to adapt to the character set ranges within the string as it operates. It is optimized for the case where the string is composed of zero or more ASCII characters and in addition characters from only one other script system, but will cope with any arbitrary Unicode string. Note that for DNS use, the domain name string is assumed to have been normalized using nameprep and filtered against an officially registered language table before being punycoded, and that the DNS protocol sets limits on the acceptable lengths of the output Punycode string.

Separation of ASCII characters

First, all ASCII characters in the string are copied from input to output, skipping over any other characters. For example, "bücher" is copied to "bcher". If any characters were copied, i.e. if there was at least one ASCII character in the input, an ASCII hyphen is appended to the output.
Note that hyphens are themselves ASCII characters. Thus, they can be present in the input and, if so, they will be copied to the output. This causes no ambiguity: if the output contains hyphens, the one that got added is always the last one. It marks the end of the ASCII characters.

Encoding the non-ASCII characters

The non-ASCII characters are sorted by Unicode value, lowest first. Each is then encoded as a single number. This single number defines both the location to insert the character at and which character to insert.
The encoded number is. By dividing by and also getting the remainder, a decoder can determine and.
There are 6 possible insertion points for a character in the string "bcher". is Unicode code point or 252, and the reduced code point is, or. The is inserted at position 1, after the. Thus the encoder will add the number, and the decoder can retrieve these by and.
These numbers are strictly increasing. For the second and subsequent inserted characters, the difference between the number and the previous one is written.

Variable-length number encoding

The number is encoded using the letters through and the digits through. It is not base-36 but a more complex scheme, generalized variable-length integers, which allows the numbers to be concatenated with nothing separating them.
This is how "kva" is used to represent the code number 745:

A number system with little-endian ordering is used which allows variable-length codes without separate delimiters: a digit lower than a threshold value marks that it is the most-significant digit, hence the end of the number. The threshold value depends on the position in the number and also on previous insertions, to increase efficiency. Correspondingly the weights of the digits vary.
In this case a number system with 36 symbols is used, with the case-insensitive 'a' through 'z' equal to the decimal numbers 0 through 25, and '0' through '9' equal to the decimal numbers 26 through 35. Thus "kva", corresponds to the decimal number string "10 21 0".

To decode this string of symbols, a sequence of thresholds will be needed, in this case it's. The weight of the least-significant digit is always 1: 'k' with a weight of 1 equals 10. After this, the weight of the next digit depends on the first threshold: generally, for any n, the weight of the -th digit is w ×, where w is the previous weight and t is the threshold of the n-th digit. So in this case, the second symbol has a place value of 36 minus the previous threshold value of 1, which equals 35. Therefore, the sum of the first two symbols 'k' and 'v' is 10 × 1 + 21 × 35. Since the second symbol is not less than its threshold value of 1, there is more to come. However, since the third symbol in this example is 'a', we may ignore calculating its weight. Therefore, "kva" represents the decimal number + = 745.
Number 745 will be encoded as 10 + 21 × 35 + 0, 10 → 'k', 21 → 'v', 0 → 'a', so "bücher" → "bcher-kva".
The thresholds themselves are determined for each successive encoded character by an algorithm keeping them between 1 and 26 inclusive. The case can then be used to provide information about the original case of the string.
Because special characters are sorted by their code points by encoding algorithm, for the insertion of a second special character in "bücher", the first possibility is "büücher" with code "bcher-kvaa", the second "bücüher" with code "bcher-kvab", etc. After "bücherü" with code "bcher-kvae" comes codes representing insertion of ý, the Unicode character following ü, starting with "ýbücher" with code "bcher-kvaf", etc.

ACE prefix for internationalized domain names

To prevent hyphens in non-international domain names from triggering a Punycode decoding, the string xn-- is prepended to Punycode sequences in internationalized domain names. This is called ACE.
Thus the domain name "bücher.tld" would be represented in a URL as "xn--bcher-kva.tld".

Examples

The following table shows examples of Punycode encodings for different types of input.
InputPunycodeDescription
The empty string.
Only ASCII characters, one, lowercase.
Only ASCII characters, one, uppercase.
Only ASCII characters, one, a digit.
Only ASCII characters, one, a hyphen.
Only ASCII characters, two hyphens.
Only ASCII characters, more than one, no hyphens.
Only ASCII characters, one hyphen.
Only ASCII characters, with spaces.
Only ASCII characters, mixed symbols.
No ASCII characters, one Cyrillic character.
No ASCII characters, one Latin-1 Supplement character.
No ASCII characters, one Greek character.
No ASCII characters, one CJK character.
No ASCII characters, one emoji character.
No ASCII characters, more than one character.
Mixed string, with one character that is not an ASCII character.
Double-encoded Punycode of "München".
Mixed string, with one character that is not ASCII, and a hyphen.
Mixed string, with one space, one hyphen, and one character that is not ASCII.
Mixed string, two non-ASCII characters.
Russian, without ASCII.
Thai, without ASCII.
Korean, without ASCII.
Japanese, without ASCII.
Japanese with ASCII.
Mixed non-ASCII scripts.