Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 119 Bytes

File metadata and controls

8 lines (6 loc) · 119 Bytes

Encode and decode in Perl 5

use Encode;

$utf8 = encode('UTF-8', $str);
$str  = decode('UTF-8', $utf8);