Index: django/template/defaultfilters.py
===================================================================
--- django/template/defaultfilters.py	(revision 3254)
+++ django/template/defaultfilters.py	(working copy)
@@ -65,7 +65,9 @@
 
 def slugify(value):
     "Converts to lowercase, removes non-alpha chars and converts spaces to hyphens"
-    value = re.sub('[^\w\s-]', '', value).strip().lower()
+    value = unicode(value, 'utf-8')
+    p = re.compile('[^\w\s-]', re.UNICODE)
+    value = re.sub(p, '', value).strip().lower()
     return re.sub('[-\s]+', '-', value)
 
 def stringformat(value, arg):
