Skip to content

Instantly share code, notes, and snippets.

@gdouzwt
Created July 4, 2020 12:58
Show Gist options
  • Save gdouzwt/e6656f6b46d5b79acda549dd71c01d54 to your computer and use it in GitHub Desktop.
Save gdouzwt/e6656f6b46d5b79acda549dd71c01d54 to your computer and use it in GitHub Desktop.
Converting A String to Hexadecimal in Java
public String toHex(String arg) {
return String.format("%040x", new BigInteger(1, arg.getBytes(/*YOUR_CHARSET?*/)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment