扩展 ASCII 描述中令人困惑的差异:块与 U
Confusing differences in extended ASCII descriptions: block vs U
有时我们看到扩展的 ascii 219 被描述为 block
[https://coding.tools/ascii-table]
有时我们将其视为 Latin capital letter U with circumflex
[https://www.ascii-code.com/]
我似乎无法找到有关为什么有时会有所不同的详细信息?任何见解表示赞赏。非常感谢。
“extended ASCII”没有指代任何一种编码。它只是泛指编码,是 ASCII 的扩展。
例如,在 Windows-1252 and ISO-8859-1 ("latin1") 中,值 219 是 unicode 代码点 219 Û
(带有 CIRCUMFLEX 的拉丁文大写字母 U)。
但是例如在 code page 437 中,值 219 是 unicode 代码点 0x2588 █
(完整块)。
有时我们看到扩展的 ascii 219 被描述为 block
[https://coding.tools/ascii-table]
有时我们将其视为 Latin capital letter U with circumflex
[https://www.ascii-code.com/]
我似乎无法找到有关为什么有时会有所不同的详细信息?任何见解表示赞赏。非常感谢。
“extended ASCII”没有指代任何一种编码。它只是泛指编码,是 ASCII 的扩展。
例如,在 Windows-1252 and ISO-8859-1 ("latin1") 中,值 219 是 unicode 代码点 219 Û
(带有 CIRCUMFLEX 的拉丁文大写字母 U)。
但是例如在 code page 437 中,值 219 是 unicode 代码点 0x2588 █
(完整块)。