ruby/doc/string/ord.rdoc
2025-12-27 10:59:48 -05:00

8 lines
240 B
Plaintext

Returns the integer ordinal of the first character of +self+:
'h'.ord # => 104
'hello'.ord # => 104
'こんにちは'.ord # => 12371
Related: see {Converting to Non-String}[rdoc-ref:String@Converting+to+Non--5CString].