#!/usr/bin/env perl use utf8; ############################################################################### # This program prints "Hello, yourname!" using hexadecimal escapes. # # Copyright © 2020 Richard Lesh. All rights reserved. ############################################################################### use strict; use warnings; MAIN: { binmode(STDOUT, ":utf8"); binmode(STDERR, ":utf8"); binmode(STDIN, ":utf8"); print "\x48\x65\x6c\x6c\x6f\x2c\x20\x52\x69\x63\x68\x21\n"; }