Ascii to binary character replacement.... (Java in General forum at JavaRanch)
If it does, then your ASCII characters can be represented by \U00xx escapes in Java, where xx is the hex for your ASCII character. For actually replacing characters, you can use java.util.regex.Pattern and the associated Matcher class. If unfamiliar w...