module Hpricot

def uxs(str)

XML unescape
def uxs(str)
  str.to_s.
      gsub(/\&\w+;/) { |x| (XChar::PREDEFINED_U[x] || 63).chr }. # 63 = ?? (query char)
      gsub(/\&\#(\d+);/) { [$1.to_i].pack("U*") }.
      gsub(/\&\#x([0-9a-fA-F]+);/) { [$1.to_i(16)].pack("U*") }
end