DEV Community

Masato Ohba
Masato Ohba

Posted on

Convert emoji and codepoints each other in Ruby

The tips below are what I've learned while implementing a gem, github_reactions, to summarize reactions on GitHub issues and pull requests.

Get codepoints from emoji

"πŸ‘".unpack("U*")
=> [128077]

"πŸ‘".codepoints
=> [128077]

# Convert to hexadecimal
"πŸ‘".each_codepoint.map {|n| n.to_s(16) }
=> ["1f44d"]
Enter fullscreen mode Exit fullscreen mode

Get emoji from codepoints

[128077].pack("U*")
=> "πŸ‘"

0x1f44d.chr('UTF-8')
=> "πŸ‘"

"\u{1f44d}"
=> "πŸ‘"
Enter fullscreen mode Exit fullscreen mode

Latest comments (0)