UnicodeUtils 0.3.0 - case conversion, normalization and more

UnicodeUtils is a pure Ruby library that implements
Unicode algorithms for Ruby 1.9.

Install with RubyGems:

$ gem install unicode_utils

Example code:

require "unicode_utils"

UnicodeUtils.name("æ") => "LATIN SMALL LETTER AE"

UnicodeUtils.upcase("weiß") => "WEISS"
UnicodeUtils.upcase("i", :tr) => "Ý"

UnicodeUtils.downcase("Ümit") => 

“ümit”
Online documentation: http://unicode-utils.rubyforge.org/
Source: GitHub - lang/unicode_utils: Unicode algorithms for Ruby 1.9

New since the 0.2.0 release:

  • name handles Hangul syllables and Private Use
    codepoints correctly

  • Normalization Form D

  • Normalization Form C