Created
May 30, 2020 04:37
-
-
Save yowcow/a44f50e8b6b597b0ac0ecaa12f1c4db6 to your computer and use it in GitHub Desktop.
suckless terminal rendering failure
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
use strict; | |
use utf8; | |
binmode(STDOUT, ":utf8"); | |
print "\x{1f96b}\n"; # OK | |
print "\x{1f96c}\n"; # NG | |
#... | |
print "\x{1f97b}\n"; # NG | |
#... | |
print "\x{1f97f}\n"; # NG | |
print "\x{1f980}\n"; # OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment