in reply to Re^2: Honest question about Perl, Python and Ruby
in thread Honest question about Perl, Python and Ruby
Update: FWIW, a ruby user can do "gem install unicode_utils", and then do things like:
It's clunky, but it works. (I wish the "code" tags here would allow a letter like "Я" to appear as such.)#!/usr/bin/env ruby require 'unicode_utils' puts UnicodeUtils.downcase("Я") # aka "\u042F", "CYRILLIC CAPIT +AL LETTER YA"
|
---|