Try this: http://www.quirksmode.org/dom/maxlength.html
Quirksmode goes through an easy way to implement the maxlength attribute on textareas, which isn't natively supported.
And to directly answer your question:
var character = String.fromCharCode(e.charCode);
Where e is the event object of the keypress event.
