Backspace icon/representation

4.3k Views Asked by At

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

3

There are 3 best solutions below

6
On BEST ANSWER

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

3
On

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.

0
On

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" />