如何在嵌入式系统中存储德语文本?
我在嵌入式系统中创建了一个到 LCD 的内存映射 1 位接口,以及用于 90 多个可打印 ASCII 字符的 4 或 5 位映射字体。写入屏幕就像使用类似于 echo 的语句一样简单(它是嵌入式 Linux)。
除了严格专有的内容之外,人们可以对存储德语(或西班牙语或法语)提出什么建议? Unicode 似乎是一个相当重要的人物。
I've created a memory mapped 1 bit interface to an LCD in an embedded system, along with 4 or 5 bit mapped fonts for the 90+ printable ASCII characters. Writing to the screen is as simple as using an echo
like statement (it's embedded Linux).
Other than something strictly proprietory, what recommendations can people make for storing German (or Spanish, or French for that mattter)? Unicode seems to be a pretty heavy hitter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我理解正确的话,您正在搜索德语字符的轻量级编码?在欧洲,您通常使用 Latin-1 或更好的 ISO 8859-15。这是一个 8 位 ASCII 扩展,包含西方语言使用的大部分字符。
If I understand you right, you are searching a lightwight encoding for german characters? In Europe, you normaly use Latin-1 or better ISO 8859-15. This is a 8-Bit ASCII extension containing most of the characters used by western languages.
嗯,UTF-8 并没有那么大。如果您希望能够使用一种或多种在 Latin-1 中找不到匹配字符的语言,我建议您使用它。
Well, UTF-8 isn't that big. I recommend it if you want to be able to use one or more languages where you don't find a matching char in Latin-1.