Apache에서 제공하는 클래스 StringEscapeUtils.unescapeHtml4
서버단으로 String 데이터가 전달될 때 기호, 특수문자가 그대로 오지 않고 변환되어 전달되는 경우가 있다. 그 경우에 사용하는 Apache에서 제공하는 클래스가 있다. https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringEscapeUtils.html StringEscapeUtils (Apache Commons Lang 3.12.0 API) Unescapes any Java literals found in the String. For example, it will turn a sequence of '\' and 'n' into a newline character, unless the '\' is pre..