Skip to content

Instantly share code, notes, and snippets.

@wolfflow
Last active August 29, 2015 13:56
Show Gist options
  • Save wolfflow/9321870 to your computer and use it in GitHub Desktop.
Save wolfflow/9321870 to your computer and use it in GitHub Desktop.
decode utf16
decode = (s) ->
s.replace /\\u([0-9a-f]{4})/gi, (_,r) -> String.fromCharCode parseInt(r,16)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment