IDNA::Punycode - encodes Unicode string in Punycode
use IDNA::Punycode; $punycode = encode_punycode($unicode); $unicode = decode_punycode($punycode);
IDNA::Punycode is a module to encode / decode Unicode strings into Punycode, an efficient encoding of Unicode for use with IDNA.
This module requires Perl 5.6.0 or over to handle UTF8 flagged Unicode strings.
This module exports following functions by default.
$punycode = encode_punycode($unicode);
takes Unicode string (UTF8-flagged variable) and returns Punycode encoding for it.
$unicode = decode_punycode($punycode)
takes Punycode encoding and returns original Unicode string.
These functions throws exceptionsn on failure. You can catch 'em via
eval
.
Tatsuhiko Miyagawa <miyagawa@bulknews.net>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
http://www.ietf.org/internet-drafts/draft-ietf-idn-punycode-01.txt