Skip to content

Instantly share code, notes, and snippets.

@am4dr
Created August 28, 2015 13:01
Show Gist options
  • Select an option

  • Save am4dr/18063c95dd17092e49d5 to your computer and use it in GitHub Desktop.

Select an option

Save am4dr/18063c95dd17092e49d5 to your computer and use it in GitHub Desktop.
@Grab(group='org.apache.commons', module='commons-lang3', version='3.4')
String a = '\\u003cb\\u003e'
println a
println org.apache.commons.lang3.StringEscapeUtils.unescapeJava(a)
// Outputs:
// \u003cb\u003e
// <b>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment