Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: b4f539bef78fcfb68dc662b4e24ced4ba150bf69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package testUTF8;
/**
 * <B>Farsi / Persian</B>: .???? ???? ?????????? ???????? ?????????? ?????? ???????? ?????????? 
 * <B>Russian:</B> ?? ?????????? ?????? ??????-?????? ??????????? ????, ???? ?????????????????? ??????????????! 
 * <B>Hungarian:</B> rv??zt??r?? t??k??rf??r??g??p. 
 * <B>Spanish:</B> El ping??ino Wenceslao hizo kil??metros bajo exhaustiva 
 *  lluvia y fr??o, a??oraba a su querido cachorro. 
 * <B>French:</B> Les na??fs ??githales h??tifs pondant ?? No??l o?? il g??le sont 
 *  s??rs d'??tre d????us et de voir leurs dr??les d'??ufs ab??m??s. </B>
 * <B>Esperanto:</B> E??oano ??iu??a??de. 
 */
public class Test {
	public static void main(String[] args) {
		System.out.println("Some sentences using UTF-8 encoded characters:");
		System.out.println("Farsi / Persian</B>: .???? ???? ?????????? ???????? ?????????? ?????? ???????? ??????????");
		System.out.println("Russian:</B> ?? ?????????? ?????? ??????-?????? ??????????? ????, ???? ?????????????????? ??????????????!");
		System.out.println("Hungarian:</B> rv??zt??r?? t??k??rf??r??g??p.");
		System.out.println("Spanish:</B> El ping??ino Wenceslao hizo kil??metros bajo exhaustiva lluvia y fr??o, a??oraba a su querido cachorro.");
		System.out.println("French:</B> Les na??fs ??githales h??tifs pondant ?? No??l o?? il g??le sont  s??rs d'??tre d????us et de voir leurs dr??les d'??ufs ab??m??s.");
		System.out.println("Esperanto:</B> E??oano ??iu??a??de. ");
	}
}

Back to the top