Text Counter - Count Characters, Words and Lines in Real Time
Paste your text and instantly see the character count, word count, line count, and byte size. Half-width and full-width breakdown is also shown.
How to Use
- Paste or type the text you want to count into the text area
- Character count, word count, line count, and byte size are updated in real time as you type
- Half-width and full-width character breakdowns are calculated automatically
Usage Examples
Checking social media character limits: Twitter(X) has a 140-char limit, Instagram captions up to 2200. Verify before posting.
Half-width vs full-width breakdown: 'Hello World こんにちは' → 11 half-width chars, 5 full-width chars, 16 total
Checking UTF-8 byte size: Japanese characters are typically 3 bytes each. Useful for verifying email or legacy system size limits.
FAQ
- Is my data sent to a server?
- No. All processing happens in your browser, so your text is never transmitted externally.
- Are spaces counted in the character count?
- The 'chars' count includes spaces. The 'chars (no spaces)' count excludes spaces, tabs, and newlines.
- How is half-width vs full-width determined?
- Characters with Unicode code points U+007F or below are counted as half-width; U+0080 and above as full-width. ASCII letters, digits, and symbols are half-width.
- How are words counted?
- Tokens separated by whitespace (spaces, tabs, newlines) are counted as words. Japanese word boundary detection is not supported.
- What encoding is used for the byte count?
- Bytes are counted in UTF-8. ASCII characters are 1 byte; Japanese characters (hiragana, kanji) are typically 3 bytes.
Related Tools
Update History
Last Updated: 2026-02-20
- 2026-02-20 Initial release