diff --git a/src/Types/Str.php b/src/Types/Str.php index 6e33ef8..7cf210a 100644 --- a/src/Types/Str.php +++ b/src/Types/Str.php @@ -38,6 +38,9 @@ static function encode(string $input, string $encoding='utf8') if (strpos($input, '0x') === 0) { $input = str_replace('0x', '', $input); } + if (mb_strlen($input) > 2) { + $input = ltrim($input, '0'); + } $output = $input; break;