Hi. The question was: how data are read from DATA section if I have 'use utf8' in main file? The [DOC](https://perldoc.perl.org/perldata.html#Special-Literals) states that: >Text after __DATA__ may be read via the filehandle PACKNAME::DATA But when I get access to file handle: my $handle = do { no strict 'refs'; \*{"${class}::DATA"} }; the DOC did non mention should I use 'binmode' or not: binmode $handle, ':utf8'; Please describe which layers are used for DATA sectionThread Next