ruby/doc/string/ord.rdoc
2025-09-20 19:59:40 -04:00

9 lines
272 B
Plaintext

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].