createStringFromHexValue function

String createStringFromHexValue(
  1. String s
)

Implementation

String createStringFromHexValue(String s) {
  return String.fromCharCode(toHexValue(s));
}