Skip to content

Instantly share code, notes, and snippets.

@kyanny
Created July 22, 2011 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kyanny/1098835 to your computer and use it in GitHub Desktop.
Save kyanny/1098835 to your computer and use it in GitHub Desktop.
RUBY_VERSION # => "1.8.7"
zero_width_space = "\xE2\x80\x8B" # => "\342\200\213"
zero_width_space # => "\342\200\213"
zero_width_space.length # => 3
white_space = "" # => ""
white_space # => ""
white_space.length # => 0
RUBY_VERSION # => "1.9.2"
zero_width_space = "\xE2\x80\x8B" # => "​"
zero_width_space # => "​"
zero_width_space.length # => 1
white_space = "" # => ""
white_space # => ""
white_space.length # => 0
RUBY_VERSION #=>
zero_width_space = "\xE2\x80\x8B" #=>
zero_width_space #=>
zero_width_space.length #=>
white_space = "" #=>
white_space #=>
white_space.length #=>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment