BalusC's answer is good, but please be warned the JSF validator, invoked with f:validateLength maximum="2000" />, will count new line characters twice whereas $textarea.val().length will only count them once. You'll need to double count the newline breaks in your JavaScript validator if you want the two validators to return the same results for multiline inputs.
An example of this issue would be an input of "Hello\nWorld" in your text area, where \n is actually a line break. This would be counted as 12 characters by the JSF validator, but $textarea.val().length would only return 11. This discrepancy will obviously get worse if you're letting the user input multiple paragraphs.
Although not about the same subject, the first couple of paragraphs of this article have an explanation for the JavaScript behaviour. There are also some comments about this exact issue that may be of use.