1.0.2 • Published 6 years ago

punycode-cli v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

punycode-cli

CLI interface for punycode with similiar options as the base64 CLI tool

Installation

sudo npm install -g punycode-cli

Usage

$ punycode --help
Usage:	/usr/local/bin/punycode [-hD] [-i in_file] [-o out_file]
  -h, --help     display this message
  -D, --decode   decodes input
  -i, --input    input file (default: "-" for stdin)
  -o, --output   output file (default: "-" for stdout)

Examples

UTF-8 domain to ASCII

echo -n "😄.example.com" | punycode;

ASCII domain to UTF-8

echo -n "xn--i28h.example.com" | punycode -D;

Contributing

Feel free