Skip to content

Instantly share code, notes, and snippets.

@jugyo
Created February 11, 2013 19:59
Show Gist options
  • Save jugyo/4757109 to your computer and use it in GitHub Desktop.
Save jugyo/4757109 to your computer and use it in GitHub Desktop.
class Array
def u
pack('U*')
end
end
class Fixnum
def u
[self].pack('U*')
end
end
class String
def u
unpack( "U*" )
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment