Is there a Unicode character for the backspace icon (as seen on some keyboards and on the Windows Phone soft keyboard)
Backspace icon/representation
Asked Answered
Yes: \u232B
is the "erase to the left" character: ⌫.
Indeed, but font support is relatively limited: fileformat.info/info/unicode/char/232b/fontsupport.htm –
Desirae
@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
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" />
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.
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.