退格图标/表示

发布于 2025-01-01 08:10:23 字数 131 浏览 5 评论 0原文

退格图标是否有 Unicode 字符(如某些键盘和 Windows Phone 软键盘上所示)

Windows Phone 软键盘

Is there a Unicode character for the backspace icon (as seen on some keyboards and on the Windows Phone soft keyboard)

Windows Phone soft keyboard

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

神爱温柔 2025-01-08 08:10:23

是的:\u232B“向左擦除”字符:⌫。

Yes: \u232B is the "erase to the left" character: ⌫.

傲鸠 2025-01-08 08:10:23

Ansering 在一个旧线程上,但仍然相关:)。这与软键盘中使用的图标完全相同:

Ansering on an old thread, but still relevant :). This is the exact same icon than the one used in the soft keyboard:

<TextBlock Text="" FontFamily="Segoe UI Symbol" />

蓝色星空 2025-01-08 08:10:23

如果您仍在寻找解决方案。

试试这个:

    char[] myunicodechar = { '\u232B'};
    myTextBlockLabel.Text = new string(myunicodechar);

不幸的是,它与您要查找的符号不完全相同。

In case you are still looking for a solution.

Try this:

    char[] myunicodechar = { '\u232B'};
    myTextBlockLabel.Text = new string(myunicodechar);

Unfortunately it is not exactly the same symbol as the one you were looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文