Tagged Questions

RFC 3492: Punycode: A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA) I.e. how unicode domain names is encoded in ASCII-only.

learn more… | top users | synonyms

9
votes
2answers
3k views

Can anyone recommend a good, free javascript for punycode to Unicode conversion?

I found this the other day: http://0xcc.net/jsescape/ but the punycode conversion doesn't work if there's a dash in the middle. For instance - I need to convert the punycode NIATO-OTABD to nñiñatoñ. ...
2
votes
2answers
307 views

Punycode converter at C#

I need a punycode converter for Silverlight. For WPF have such an opportunity in the standard libraries. I need a ready-made library or code of functions (punycode encoding and decoding) {C#, ...
2
votes
4answers
492 views

How to convert domain names with greek characters to an ascii URL?

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 ...
2
votes
3answers
794 views

Convert non-ascii domain to SMTP compatible

When customers enter email addresses with non-ascii chars like äüö our SMTP rejects to process them. So I think might be there is a solution to handle those domains myself and convert them to ...
1
vote
2answers
41 views

What is the maximum length of an IDNA converted domain name?

First things first: I'm storing multiple domains to a database, after I've converted each and every domain name to it's IDNA version. What I need to know the maximum length such an IDNA-converted ...
1
vote
1answer
105 views

Delphi: Punicode Decode

Found the information as encoded in Punycode: Cyrillic domain name , but but how do I decode back (punycode in cyrillic)?
1
vote
0answers
135 views

converting escaped urls with punycode to utf, refactoring

I want to store all my url in readble utf8 class User < ActiveRecord::Base require 'addressable/uri' require 'idn' include IDN def service_url=(url) url = Addressable::URI.parse ...
1
vote
1answer
242 views

How can i code and decode urls from IDN in php?

im doing a site to check, register, etc of domains, i have to make it IDN compliant. Right now i have something like this: echo $domain; $domain = idn_to_ascii($domain); echo $domain; $domain ...
0
votes
1answer
43 views

is there possible to write my own punycode converter in php without intl extension?

I do not have that much control of the remote server to install extensions, php is 5.3.8. But I've noticed that there is possible to split utf-8 string with pcre. So for example: ...
0
votes
3answers
110 views

Can punycode-encoded email addresses clash with “real” addresses?

The problem is this: I'm using a third-party Email delivery service that doesn't accept mail addresses with non-ASCII characters in the name part, like müller@example.com . Encoding such an address ...
0
votes
0answers
86 views

Firefox + Domain name (non-ascii) + Uploadify - error

I have a problem with uploadify, when I've nonascii domain, in example, when I have: http://static.hyperanuncios.es/js/uploadify/uploadify.swf Here is uploadify correct and when you click on it, ...
0
votes
2answers
43 views

Does Cocoa's CFHost support IDNs?

WINAPI has methods to convert Unicode host names to Punycode. Does Cocoa/Cocoa Touch have a similar mechanism?
0
votes
2answers
484 views

Problem in converting string to puny code (in PHP, using phlyLabs's punycode string converter)

i'm using the code from here: http://phlymail.com/en/downloads/idna/download/ and built a function like this (from the example): function convert_to_punycode($inputstring) { $IDN = new ...
0
votes
5answers
629 views

Efficient way to ASCII encode UTF-8

I'm looking for a simple and efficient way to store UTF-8 strings in ASCII-7. With efficient I mean the following: all ASCII alphanumeric chars in the input should stay the same ASCII alphanumeric ...