Skip to content

Instantly share code, notes, and snippets.

@Higgs1
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Higgs1/0efe62a05fa12d3333dc to your computer and use it in GitHub Desktop.
Save Higgs1/0efe62a05fa12d3333dc to your computer and use it in GitHub Desktop.
CoffeeScript UTF8 Codec
# Converts UCS2 to UTF8
utf8_encode = (s) ->
unescape encodeURIComponent s
# Converts UTF8 to UCS2
utf8_decode = (s) ->
decodeURIComponent escape s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment