如何在瑞典键盘管道上输入近似等号(≈)?

如何在瑞典键盘管道上输入近似等号(≈)?

如何在瑞典键盘管道上输入近似等号(≈)?

在谷歌搜索解决方案时,总是被重定向到此问题: 如何在瑞典语键盘上输入管道符号?

答案1

字符不存在于 ECMA-Latin-1 (= ISO-8859-1) 字符集中。Windows CP1252 也是如此;参考:https://sv.wikipedia.org/wiki/Windows-1252

所以Alt+247 will not produce it.

Linux:

$ python -c ‘打印(“\xf7”)’
÷
$ python -c ‘打印(ord( “\xf7”))’
247

CTRL++SHIFT确实u 2248 Enter在 Linux 上会产生它,
因此相应的2248Alt+x 应该会使它出现在 Windows 中。

参考:
https://softwareaccountant.com/approximately-equal-symbol/
......似乎有点不对。

相关内容