##
open DEBUGFILE, '>', "debug.txt" or die $!;
binmode DEBUGFILE, ":encoding(UTF-8)";
####
use WWW::Mechanize;
...
# get the DOM document
#my $doc = $mech->{agent}->Document; # comment out
# get the webpage title
my $title = $mech->title; # used instead
...
# create a utf-8 text file
open DEBUGFILE, '>', "debug.txt" or die $!;
binmode DEBUGFILE,":encoding(UTF-8)";
...