import javax.swing.*;
public class JTextAreaTest {
    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> {
            JFrame frame = new JFrame(Ã¢Â€ÂœInput bugÃ¢Â€Â);
            frame.getContentPane().add(new JTextArea(20, 60));
            frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        });
    }
}