Skip to content

Instantly share code, notes, and snippets.

@adrianoschmidt
Created July 28, 2015 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrianoschmidt/60f0070b69e66067b922 to your computer and use it in GitHub Desktop.
Save adrianoschmidt/60f0070b69e66067b922 to your computer and use it in GitHub Desktop.
Testing unicode character table
package br.com.localhost8080.exemplo;
public class UnicodeMain {
/**
* Unicode character table
*/
public static void main(String[] args) {
System.out.println
(
"Unicode character table:" +
"\n" +
"\n letra\t tipo minuscula maiuscula " +
"\n a crase \u00E0 \u00C0 " +
"\n a agudo \u00E1 \u00C1 " +
"\n a chapeu \u00E2 \u00C2 " +
"\n a til \u00E3 \u00C3 " +
"\n c cedilha \u00E7 \u00C7 " +
"\n e agudo \u00E9 \u00C9 " +
"\n e chapeu \u00EA \u00CA " +
"\n i agudo \u00ED \u00CD " +
"\n o agudo \u00F3 \u00D3 " +
"\n o chapeu \u00F4 \u00D4 " +
"\n o til \u00F5 \u00D5 " +
"\n u agudo \u00FA \u00DA " +
"\n\n" +
"www.localhost8080.com.br"
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment