Created
May 12, 2015 14:24
-
-
Save darui00kara/b29607d2630a69c4fb50 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
# encoding: utf-8 | |
# File Name: encode-test.rb | |
# Create Day is 2015/05/12 | |
# Last Update Day is 2015/05/12 | |
# Gem List | |
# Require List | |
# 外部エンコーディング設定 | |
p Encoding.default_external | |
p $stdout.external_encoding | |
# 内部エンコーディング設定 | |
p Encoding.default_internal | |
p $stdout.internal_encoding | |
# 外部エンコーディングを変更 | |
Encoding.default_external = "UTF-8" | |
p Encoding.default_external | |
# 文字列のエンコードを確認 | |
str = "Hello World!!" | |
p str.encoding |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment