IDNConverter.java Source code

Java tutorial

Introduction

Here is the source code for IDNConverter.java

Source

import java.net.IDN;

public class IDNConverter {
    public static void main(String[] args) {
        IDN.toASCII("");
        IDN.toUnicode("");
    }
}