summaryrefslogtreecommitdiff
path: root/doc/string/ord.rdoc
blob: a5ddbb4e2fb82a12b819c3f6cfb48e783ab53945 (plain)
1
2
3
4
5
6
7
8
Returns the integer ordinal of the first character of +self+:

  'h'.ord         # => 104
  'hello'.ord     # => 104
  'тест'.ord      # => 1090
  'こんにちは'.ord  # => 12371

Related: see {Converting to Non-String}[rdoc-ref:String@Converting+to+Non--5CString].