Created
March 27, 2019 09:01
-
-
Save jskeet/fda32346c7600cfb1449b94907c03df5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Test { | |
| public static void main(String[] args) { | |
| String filename = "abc"; | |
| for (int i = 0; i < filename.length(); i++) { | |
| System.out.printf("%04x%n", (int) filename.charAt(i)); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment