Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created February 26, 2009 17:15
Show Gist options
  • Select an option

  • Save tenderlove/70959 to your computer and use it in GitHub Desktop.

Select an option

Save tenderlove/70959 to your computer and use it in GitHub Desktop.
require 'nokogiri'
doc = Nokogiri::HTML('<span>浦嶌啓太</span>')
doc.css('span').inner_html # => &#28006;&#23948;&#21843;&#22826;
doc = Nokogiri::HTML('<span>浦嶌啓太</span>', nil, 'UTF-8')
doc.css('span').inner_html # => 浦嶌啓太
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment