Skip to content

Instantly share code, notes, and snippets.

@seunggabi
Last active September 17, 2019 10:23
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 seunggabi/ac24a5fd1077c38bf13bab2b90e011bf to your computer and use it in GitHub Desktop.
Save seunggabi/ac24a5fd1077c38bf13bab2b90e011bf to your computer and use it in GitHub Desktop.
decimalToHex.java
public static String decimalToHex(int decimal, Integer length) {
return String.format("%0"+length+"x", decimal);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment