Class: MobilyApiUnicodeConverter

Inherits:
Object
  • Object
show all
Defined in:
lib/mobily/mobily_api_unicode_converter.rb

Class Method Summary collapse

Class Method Details

.convert(str) ⇒ Object



4
5
6
# File 'lib/mobily/mobily_api_unicode_converter.rb', line 4

def self.convert(str)
  str.chars.map{ |x| '%04x' % x.ord }.join.upcase
end