Created
January 13, 2011 18:16
-
-
Save brianmario/778332 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$KCODE = 'u' | |
utf8_str = "你好世界" | |
puts utf8_str[0..3] # => 你? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'utf8' | |
utf8_str = "你好世界" | |
puts utf8_str[0..3] # => 你好世界 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment