Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created March 1, 2021 10:33
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 Alkimisti/a05f5c2271577c0cb0259c121680d5f2 to your computer and use it in GitHub Desktop.
Save Alkimisti/a05f5c2271577c0cb0259c121680d5f2 to your computer and use it in GitHub Desktop.
public class IntToChar {
public static void main(String[] args) {
int kodi = 65;
char karakteri = (char) kodi;
System.out.println(karakteri);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment