Index: misc/findnonsjis.pl
===================================================================
--- misc/findnonsjis.pl	(revision dfae53c2f44556e3c2c93620e5c8c9ae4788985c)
+++ misc/findnonsjis.pl	(revision bf1a1eab8ab75f495c2d81fae907bed6a071ffae)
@@ -19,5 +19,6 @@
     my $sjis = encode("cp932", $utf8->decode($str), Encode::FB_HTMLCREF);
     if ($sjis =~ /&#\d{4,};/) {
-        return 1;
+        Encode::from_to($sjis, "cp932", "utf8");
+        return $sjis;
     }
     
@@ -35,6 +36,6 @@
     my @dirs;
     while (my $entry = shift @entries) {
-        if (match($entry)) {
-            print "'$target/$entry' contains non Shift_JIS character\n";
+        if (my $convert = match($entry)) {
+            print "'$target/$entry' can be converted to '$convert'\n";
             next;
         }
