Skip to content

Instantly share code, notes, and snippets.

@yasu47b
Created April 7, 2017 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yasu47b/f5e207430a28947783c9cb9bd811c3b7 to your computer and use it in GitHub Desktop.
Save yasu47b/f5e207430a28947783c9cb9bd811c3b7 to your computer and use it in GitHub Desktop.

Unicode文字列の表示

\N{} を使う

perl -E 'say "\N{U+03a0}"'

pack を使う

perl -E 'say pack("U", 0x03a0)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment