According to documentation unicode characters should be used with \u prefix in strings.xml file. For example use \u00a9 instead of ©.
<string name="copyright_text">Copyrighted ©</string>
But if I write © directly it seems to work fine even in API 21. Is there any scenario where it is really needed to scape other than other more impactfull characters such ash &, < >, etc.?
