ascii 中的 254 符号是什么,它是 ■ 还是 þ?

What's the 254 symbol in ascii, is it ■ or þ?

看这个页面https://www.asciitable.com I see that the 254 symbol is a filled square (■). But here: https://www.ascii-code.com说是小写字母thorn(þ)。

当使用 Swift 语言在 Mac 上使用代码中的符号作为 0xFE 时,我得到刺字母 (þ),那么如何在 ascii 中得到正方形 (■)?

使用此工具 https://www.rapidtables.com/convert/number/ascii-to-hex.html 和 (■) 作为输入,我得到一个大于 255 的数字,那么它不能用 ascii 表示吗?

都没有。

ASCII 确定代码 0-127 的字符。没有默认的“扩展 ASCII”。所有其他代码的含义取决于实际编码。在你的第二个 link 中,使用的编码是 CP-1252,因为它在那里清楚地说明了这一点。在你的第三个 link 中,你得到 Unicode code for BLACK SQUARE 作为后备,无论如何黑色方块都没有 ASCII 码。