I'm trying to unescape this string "Selby%2C%20SD" so the result would be "Selby, SD" (I assume) but can't find the way.
I've tried
StringEscapeUtils.unescapeHtml4("Selby%2C%20SD")
but the result is the same string. I've also tried StringEscapeUtils.unescapeHtml but didn't work either. What am I doing wrong?
Thanks.