Created
April 18, 2016 22:38
-
-
Save gabebw/b70258ccae48adc45134adcbbbed62bc 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
raw_panda = "🐼" | |
# panda is U+1F43C according to wikipedia | |
puts raw_panda | |
puts "\uf09f\u90bc" | |
# puts "\u2728" | |
# puts "\ud83d\udc3c".force_encoding("UTF-8") | |
# puts raw_panda.each_codepoint { |x| p x } | |
# puts raw_panda.each_byte { |x| p x } | |
# | |
# | |
# puts "%04x" % num + ": " + [num].pack("U*")` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment