I typed a chat message including two pings. I believe I tab-completed @rumtscho and fully typed @MarthaF (since she doesn't tab complete). However, other people tell me that a Unicode character was inserted into the message; I can't see it:

Originally, I abandoned this bug report for a lack of reproducibility. But on another machine, I can see the character and managed to reproduce it: press tab, then press backspace. It works anywhere in a message, not just in a @-ping. (Actually, it seems that you just need to un-focus the input box; clicking elsewhere then hitting backspace works, too)
- First machine is Firefox 12 (Iceweasel) on Debian GNU/Linux AMD64, testing+unstable. No user scripts. Greasemonkey is installed, but disabled in the extension manager
- Second machine is Firefox 10 (Iceweasel) on Debian GNU/Linux AMD64, testing+unstable. No user scripts, Greasemonkey not even installed
- Third machine (just tested) is Firefox 11 (Iceweasel) on Debian GNU/Linux AMD64. Greasemonkey installed and enabled, and there is a global userscript.
- Does not happen on Chromium 18.0.1025.151, running on machine #3.
So far, that's all the machines I've tested on, and it happens on all of them. It only happens in chat.
Easiest way to produce it is to click on the page background, somewhere outside the text box, to un-focus the text box. Then press backspace. Note that not all browsers will display the character, even if its there (check this message to see if yours does)

U+0008is the backspace character (U+0009is tab), @Arjan is probably right. Do you use any user scripts? JavaScript writingString.fromCharCode(event.keyCode)to the input field or textarea would insert a backspace character instead of deleting the previous one. – Dennis Jun 2 '12 at 14:51