Search notes:

Java class javax.xml.bind.DatatypeConverter - parseHexBinary

public class parseHexBinary {

  public static void main(String[] args) {

    byte[] bytes = javax.xml.bind.DatatypeConverter.parseHexBinary("48656C6C6F20576F726C64");
    String text  = new String(bytes);

    System.out.println(text); // Hello World
      
  }

}
Github repository JavaClasses, path: /javax/xml/bind/DatatypeConverter/parseHexBinary.java

See also

Java classes
Java class javax.xml.bind.DatatypeConverter - printHexBinary

Index