For example:

When typing παιχνιδια.com into Firefox, it is automatically converted to xn--kxadblxczv9d.com

Please suggest a tool for making such a conversion.


One of the easiest is this. Converts and checks for availability at the same time.

link|improve this question

What type of tool? Command line? A web site? A class or code? If so in what language? – blowdart Sep 16 '10 at 13:12
I meant an online tool. Got an answer, thanks. – Zack Sep 16 '10 at 13:18
feedback

4 Answers

up vote 1 down vote accepted

You can use any tool that supports "Libidn". A quick search showed SimpleDNS might be of help to you.

There are heaps of converters for IDN online, if that's enough for you, you can use one of them.

link|improve this answer
Thanks for the help man, didn't know what to search for. – Zack Sep 16 '10 at 13:14
feedback

If you want to do it inside your browser, save the code in this answer as puny.js and the code below to puny.html, then load the file in your browser.

<html>
    <title>Punyconverter</title>
    <script type="text/javascript" src="puny.js"></script>
    <style type="text/css">
        input {width:300px;}
        label {width:100px; display:inline-block;}
    </style>
    <script type="text/javascript">
        onload = function( ) {
            var ASCII = document.getElementById("ASCII");
            var Unicode = document.getElementById("Unicode");
            var Input = document.getElementById("Input");

            Input.onkeyup=function(){
                ASCII.value = punycode.ToASCII( this.value);
                Unicode.value = punycode.ToUnicode( this.value);
            }
        };
    </script>
</html>
<body>
    <h1>Convert puny coded IDN</h1>
    <div><label for="Input">Input</label><input id="Input" type="text"></div>
    <div><label for="ASCII">ASCII</label><input id="ASCII" type="text" readonly="readonly"></div>
    <div><label for="Unicode">Unicode</label><input id="Unicode" type="text" readonly="readonly"></div>
</body>
link|improve this answer
feedback

Internationalized domain name (i.e. domain names with non-ASCII characters) are encoded using the Punycode system.

link|improve this answer
feedback

You encode and decode IDNA with Python:

>>> print u'παιχνιδια'.encode('idna')
xn--mxaaitabzv9d
>>> print 'xn--mxaaitabzv9d'.decode('idna')
παιχνιδια
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.