To get character's Unicode in Ruby 1.9.2, I use ord:

"я".ord       # => 1103     (It's a Russian letter)

How could I get the Unicode in Ruby 1.8.7 ?

link|improve this question

feedback

2 Answers

You could use my backports gem. Running with Ruby 1.8.7 (and option -KU to setup $KCODE for utf-8):

require "rubygems"
require "backports"
"я".ord # => 1103
link|improve this answer
feedback
up vote 4 down vote accepted

Well, I found this nice solution:

"я".unpack('U')[0]     # => 1103
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.