Skip to content

Instantly share code, notes, and snippets.

@hendrikebbers
Created January 8, 2015 12:57
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 hendrikebbers/84654ae354cfa6b3c359 to your computer and use it in GitHub Desktop.
Save hendrikebbers/84654ae354cfa6b3c359 to your computer and use it in GitHub Desktop.
First Emoji Test
public class EmojiTest extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
TextField textField = new TextField();
primaryStage.setScene(new Scene(new StackPane(textField)));
primaryStage.show();
}
public static void main(String... args) {
launch(args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment