What's the proper way to use a unicode character i...
# cfml-general
s
What's the proper way to use a unicode character in the subject line when creating an email? Marketing wants to add the calendar emoji (U+1F4C5 or 📅) to the left of "FAFSA" in this
subject = "FAFSA is Open
.
s
Use canonicalize function. https://cfdocs.org/canonicalize
subject="#canonicalize('&##128197; FAFSA is Open', false, false)#">
s
Thanks @Sathya M!
🎉 1