/****************************************************************************** * Simple first program with Unicode strings. * * Copyright © 2020 Richard Lesh. All rights reserved. *****************************************************************************/ public class HelloWorlds { public static void main(String[] args) { System.out.println("!مرحبا أيها العالم"); System.out.println("你好, 世界!"); System.out.println("Hello, world!"); System.out.println("Bonjour le monde!"); System.out.println("Hallo welt!"); System.out.println("Γειά σου Κόσμε!"); System.out.println("!שלום העולם"); System.out.println("नमस्ते दुनिया!"); System.out.println("こんにちは世界!"); System.out.println("안녕, 월드!"); System.out.println("Привет, мир!"); System.out.println("¡Hola mundo!"); } }