Index: misc/findcombinable.pl
===================================================================
--- misc/findcombinable.pl	(revision dfae53c2f44556e3c2c93620e5c8c9ae4788985c)
+++ misc/findcombinable.pl	(revision 7ec37bd7868a851b7440484711f08ee44c623a5b)
@@ -20,5 +20,5 @@
     $str = $utf8->decode($str);
     if ($str ne NFC($str)) {
-        return 1;
+        return $utf8->encode(NFC($str));
     }
     
@@ -36,6 +36,6 @@
     my @dirs;
     while (my $entry = shift @entries) {
-        if (match($entry)) {
-            print "'$target/$entry' can be composed\n";
+        if (my $composed = match($entry)) {
+            print "'$target/$entry' can be composed to '$composed'\n";
             next;
         }
