如何区分 Xcode 10 中的不同空白字符?

How do I differentiate between different whitespace characters in Xcode 10?

我可以在 Xcode 10 中显示空格 ("invisibles"),并且一些生成的占位符字形很容易弄清楚,但我无法弄清楚所有这些。

例如,这应该代表哪一行结尾:¤?

是否有所有这些的列表,或者是否有用我错过的其他字形表示空白字符的约定?

¤字符代表一个CR(回车return)行结束。 Windows 文件通常使用 CRLF(回车符 return 和换行符)换行符,用 ¤┐ 表示。旧版本的 macOS 仅使用 CR 作为行尾。 (source)

完整列表:

╔════════╦══════════════════════════════════════════════════╗
║ Symbol ║                     Meaning                      ║
╠════════╬══════════════════════════════════════════════════╣
║ ·      ║ space                                            ║
║ ···•   ║ tabulator (when Indent Using is set to "Spaces") ║
║ »      ║ tabulator (when Indent Using is set to "Tabs")   ║
║ ¤      ║ CR line ending                                   ║
║ ┐      ║ LF line ending                                   ║
║ ¤┐     ║ CRLF line ending                                 ║
╚════════╩══════════════════════════════════════════════════╝