Added support for unicode strings (utxt).
diff --git a/Mac/Lib/aepack.py b/Mac/Lib/aepack.py
index 161f3eb..331a53e 100644
--- a/Mac/Lib/aepack.py
+++ b/Mac/Lib/aepack.py
@@ -88,6 +88,11 @@
 		return AE.AECreateDesc('doub', struct.pack('d', x))
 	if t == StringType:
 		return AE.AECreateDesc('TEXT', x)
+	if t == UnicodeType:
+		data = t.encode('utf16')
+		if data[:2] == '\xfe\xff':
+			data = data[2:]
+		return AE.AECreateDesc('utxt', data)
 	if t == ListType:
 		list = AE.AECreateList('', 0)
 		for item in x:
@@ -132,6 +137,8 @@
 		return struct.unpack('b', desc.data)[0]
 	if t == typeChar:
 		return desc.data
+	if t == typeUnicodeText:
+		return unicode(desc.data, 'utf16')
 	# typeColorTable coerced to typeAEList
 	# typeComp coerced to extended
 	# typeData returned as unknown