Letter Casing in Julia

The UnicodeExtras module provides the lowercase, uppercase, titlecase, and foldcase functions.

using UnicodeExtras

lowercase = lowercase(str)
uppercase = uppercase(str)
titlecase = titlecase(str)
casefold  = foldcase(str)