Meta Description Character Counter
Craft perfect meta descriptions that display fully in search results. Our character counter helps SEO professionals and content creators optimize this critical snippet that influences click-through rates from Google, Bing, and other search engines.
Meta Description Length Guidelines
| Search Engine | Desktop Display | Mobile Display | Recommendation | Google~155-160 chars~120 chars150-155 characters Bing~160 chars~130 chars155-160 characters Yahoo~160 chars~130 chars155-160 characters | DuckDuckGo | ~160 chars | ~130 chars | 150-155 characters |
Why Meta Description Length Matters
Google truncates meta descriptions that exceed the display limit, replacing content with "..." This can cut off your call-to-action or key selling points. While Google sometimes generates its own snippets from page content, a well-crafted meta description gives you control over how your page appears in search results.
Meta Description Analyzer
``javascript
function analyzeMetaDescription(description) {
const charCount = description.length;
const wordCount = description.trim().split(/\s+/).length;
const analysis = {
characters: charCount,
words: wordCount,
desktopDisplay: charCount <= 160 ? 'Full' : 'Truncated',
mobileDisplay: charCount <= 120 ? 'Full' : 'May truncate',
status: 'Optimal'
};
if (charCount < 120) analysis.status = 'Too short - add more detail';
else if (charCount > 160) analysis.status = 'Too long - will be truncated';
else if (charCount >= 150 && charCount <= 155) analysis.status = 'Perfect length';
return analysis;
}
``
Writing Effective Meta Descriptions
A great meta description should include your target keyword naturally, provide a compelling reason to click, and end with a call-to-action when appropriate. Front-load important information—if truncation occurs, your key message should survive. Avoid duplicate meta descriptions across pages; each page deserves a unique, relevant snippet.
Test your descriptions by searching for them in quotes to see exactly how Google displays them. Mobile users see fewer characters, so ensure your core message fits within 120 characters.