Backspace icon/representation
Asked Answered
A

3

8

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

Attachment answered 31/1, 2012 at 11:4 Comment(0)
O
13

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

Oppilate answered 31/1, 2012 at 11:8 Comment(6)
Indeed, but font support is relatively limited: fileformat.info/info/unicode/char/232b/fontsupport.htmDesirae
@JukkaK.Korpela: Thanks for the link. FWIW, Wingdings contains this character, too (0xD5).Oppilate
Thanks. A pity that none of the fonts in Windows Phone are ones that support it.Attachment
Turns out this character is on Windows Phone (but maybe not in the fonts with Windows desktop)Attachment
But using old-time symbol fonts like Wingdings is a semantic nightmare.Ovular
Today, font support is much better. In Windows, the symbol is found in Arial Unicode MS and Segoe UI Symbol.Ovular
P
2

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

<TextBlock Text="&#xE083;" FontFamily="Segoe UI Symbol" />

Procyon answered 16/4, 2015 at 9:10 Comment(0)
A
1

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.

Atkinson answered 2/5, 2012 at 12:21 Comment(3)
Thomas, that's essentially the same answer as Tim's.Attachment
That is true. But you wrote: "A pity that none of the fonts in Windows Phone are ones that support it." In this way you can use it and Windows Phone will display it.Atkinson
Hey you're right! Just wrote a test app to confirm it. And I've found you can also include the unicode character in the XAML directly. So maybe the font as shipped in Windows Phone does include this character, but the ones in Windows don't.Attachment

© 2022 - 2024 — McMap. All rights reserved.