Skip to content

Instantly share code, notes, and snippets.

@EspenBrun
Last active February 3, 2017 11:27
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 EspenBrun/c393266b451dd09933a9249e8f1b5153 to your computer and use it in GitHub Desktop.
Save EspenBrun/c393266b451dd09933a9249e8f1b5153 to your computer and use it in GitHub Desktop.
Vise æøå i showMessageDialog
import static javax.swing.JOptionPane.*;
class NorskeBokstaver {
public static void main(String[] args){
showMessageDialog(null,"\u00e6\u00f8\u00e5"); //æøå
showMessageDialog(null,"\u00c6\u00d8\u00c5"); //ÆØÅ
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment