Updated Feb 2025
Millions of people use ChatGPT on a daily basis, but the majority are not aware of the alternative output formats that they can request.
If this is you, we still love you, but this is Full Stack AI. So let’s do what we do and put you on game and step up your prompt engineering game.
Here are the 15 different output formats you can request from ChatGPT for its response. (With prompt examples.)
- Plain Text – The basic one everyone knows
- Lists – Perfect for organizing thoughts
- Tables – When you need to compare data
- Code Snippets – For all you developers out there
- Markdown – Makes formatting a breeze
- LaTeX – Math equations become easy
- HTML – Web content? Got you covered
- JSON – Structure data like a pro
- URLs – Resource compilation made simple
- ASCII Art – Yes, ChatGPT can get creative
- Emojis – Add some flavor to your content
- CSV – Data organization simplified
- YAML – Configuration files without the headache
- XML – Structured data when you need it
- Quotes – Perfect for citations
Why This Matters
Think of ChatGPT’s output formats like speaking different languages. Sure, you can get by with just English, but imagine the doors that open when you can communicate in multiple languages. Each format serves a specific purpose, and knowing when to use which one can 10x your AI productivity.
Here are the 15 different output formats you can request from ChatGPT for its response, complete with examples and prompts.
1. Plain Text – The Classic
Like your favorite pair of jeans – simple, reliable, gets the job done.
Prompt:
What is digital marketing? Please respond in plain text.
Example Response:
Digital marketing is the practice of promoting products, services, or brands through digital channels and technologies. It encompasses all marketing efforts that use electronic devices or the internet. This includes email marketing, social media, web advertising, SEO, and content marketing. Unlike traditional marketing, digital marketing allows for real-time tracking, analytics, and direct engagement with customers, making it more measurable and often more cost-effective.
2. Lists – The Organizer
Perfect for structured information and step-by-step guides.
Prompt:
What are some common digital marketing strategies? Please list these out.
Example Response:
- Search Engine Optimization (SEO)
- Keyword research
- On-page optimization
- Link building
- Technical SEO
- Content Marketing
- Blog posts
- Videos
- Podcasts
- Infographics
- Social Media Marketing
- Platform selection
- Content calendar
- Community engagement
- Paid advertising
3. Tables – The Data Whisperer
Excellent for comparisons and organized data presentation.
Prompt:
Compare various social media platforms for digital marketing in a table format.
Example Response:
Platform | Best For | User Demographics | Content Type |
---|---|---|---|
B2B | Professionals, 25-45 | Business Content | |
B2C | Young Adults, 18-34 | Visual Content | |
News/Updates | Mixed, 18-49 | Short-form Text | |
TikTok | Gen Z | Teens/Young Adults | Short Videos |
Community | Broad, 25-65+ | Mixed Media |
4. Code Snippets – The Developer’s Friend
Perfect for technical instructions and programming examples.
Prompt:
Show me how to track Google Analytics events in JavaScript.
Example Response:
// Basic Google Analytics Event Tracking
function trackEvent(category, action, label = null, value = null) {
if (typeof gtag !== 'undefined') {
gtag('event', action, {
'event_category': category,
'event_label': label,
'value': value
});
}
}
// Usage Examples
document.getElementById('signup-button').addEventListener('click', () => {
trackEvent('Conversion', 'Sign Up', 'Homepage Form');
});
// Track PDF Download
document.querySelector('.pdf-download').addEventListener('click', () => {
trackEvent('Download', 'PDF', 'Product Brochure', 1);
});
5. Markdown – The Formatter’s Dream
Ideal for creating formatted documents and README files.
Prompt:
Create a blog post structure about AI trends in markdown format.
Example Response:
# AI Trends 2025: What's Next in Artificial Intelligence
## Introduction
The AI landscape is evolving faster than ever. Here's what you need to know about the latest developments.
### 1. Multimodal AI
**Game-changing capabilities**
- Text-to-video generation
- Cross-modal understanding
- Unified AI models
### 2. AI Governance
*Emerging frameworks and regulations*
- EU AI Act implementation
- Global standards
- Ethics guidelines
## Impact on Industries
1. Healthcare
2. Finance
3. Education
[Read our detailed report](#)
---
*Published by Full Stack AI*
6. LaTeX – The Math Maestro
Essential for mathematical and scientific documentation.
Prompt:
Write the formula for calculating Customer Lifetime Value (CLV) in LaTeX.
Example Response:
\documentclass{article}
\begin{document}
\section*{Customer Lifetime Value (CLV) Formula}
\[ CLV = \frac{AOV \times PF \times AL}{1 + d - r} \]
Where:
\begin{itemize}
\item $AOV$ = Average Order Value
\item $PF$ = Purchase Frequency
\item $AL$ = Average Customer Lifespan
\item $d$ = Discount Rate
\item $r$ = Retention Rate
\end{itemize}
\end{document}
7. HTML – The Web Wizard
Perfect for creating web content and email templates.
Prompt:
Create a responsive HTML newsletter signup form with styling.
Example Response:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.signup-container {
max-width: 500px;
margin: 20px auto;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.form-group {
margin-bottom: 15px;
}
.form-control {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.submit-btn {
background: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="signup-container">
<h2>Join Our Newsletter</h2>
<form>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" class="form-control" required>
</div>
<button type="submit" class="submit-btn">Subscribe</button>
</form>
</div>
</body>
</html>
8. JSON – The Data Architect
Perfect for API responses and data structure definitions.
Prompt:
Create a JSON structure for a social media post with user interaction data.
Example Response:
{
"post": {
"id": "post_123456",
"type": "status",
"created_at": "2025-02-12T10:00:00Z",
"author": {
"id": "user_789",
"username": "techie_sarah",
"display_name": "Sarah Johnson",
"avatar_url": "https://example.com/avatars/sarah.jpg"
},
"content": {
"text": "Just launched our new AI feature! 🚀",
"media": [
{
"type": "image",
"url": "https://example.com/images/launch.jpg",
"alt_text": "Product launch screenshot"
}
]
},
"metrics": {
"likes": 1542,
"shares": 283,
"comments": 67,
"impressions": 12750
},
"engagement": {
"engagement_rate": 12.5,
"peak_time": "2025-02-12T15:30:00Z",
"audience_demographics": {
"age_groups": {
"18-24": 0.25,
"25-34": 0.45,
"35-44": 0.20,
"45+": 0.10
}
}
}
}
}
9. URLs – The Resource Compiler
Great for reference lists and resource collections.
Prompt:
Share the main URLs for learning digital marketing fundamentals.
Example Response:
- https://academy.hubspot.com/courses/digital-marketing
- HubSpot’s comprehensive digital marketing course
- https://analytics.google.com/analytics/academy/
- Google Analytics Academy for data-driven marketing
- https://www.semrush.com/academy/
- SEMrush Academy for SEO and content marketing
- https://www.facebook.com/business/learn
- Facebook Blueprint for social media marketing
- https://ads.google.com/home/resources/
- Google Ads resources for PPC advertising
10. ASCII Art – The Visual Storyteller
Perfect for simple diagrams and visual representations.
Prompt:
Create an ASCII art representation of a simple marketing funnel.
Example Response:
▲ AWARENESS ▲
\ /
\ TOFU /
\ /
INTEREST
\ /
\ /
DECISION
\ /
\/
ACTION
11. Emojis – The Engagement Booster
Add visual appeal and emotion to your content.
Prompt:
Create a step-by-step guide for launching a product using emojis.
Example Response:
🎯 Set Your Goals
📊 Market Research
💡 Product Development
🧪 Testing Phase
🚀 Launch
📈 Track Results
🔄 Gather Feedback
⭐ Optimize & Improve
12. CSV – The Data Wrangler
Perfect for spreadsheet imports and data analysis.
Prompt:
Create a CSV of monthly marketing metrics including traffic, leads, and conversions.
Example Response:
month,website_traffic,leads_generated,conversions,conversion_rate
January,15000,450,45,3.0
February,17500,525,58,3.3
March,19000,570,63,3.3
April,22000,660,79,3.6
May,25000,750,90,3.6
13. YAML – The Configuration Master
Ideal for configuration files and settings.
Prompt:
Create a YAML configuration for a marketing automation workflow.
Example Response:
workflow:
name: Lead Nurturing Sequence
version: 1.0
trigger:
type: form_submission
form_id: contact_us
stages:
welcome_email:
delay: 0h
template: welcome_template
subject: Welcome to Our Community!
educational_content:
delay: 48h
content_type: blog_post
categories:
- getting_started
- best_practices
follow_up:
delay: 72h
condition:
type: email_opened
previous_stage: educational_content
metrics:
track:
- email_opens
- click_rates
- conversion_rates
notifications:
admin_email: admin@example.com
alert_on:
- workflow_complete
- error_occurred
14. XML – The Structure Specialist
Essential for legacy systems and specific data feeds.
Prompt:
Create an XML structure for a product catalog entry.
Example Response:
<?xml version="1.0" encoding="UTF-8"?>
<catalog>
<product id="P12345">
<name>Professional AI Course</name>
<description>
<short>Master AI fundamentals and applications</short>
<long>Comprehensive course covering machine learning, neural networks, and practical AI implementations.</long>
</description>
<pricing>
<regular>499.99</regular>
<sale>399.99</sale>
<currency>USD</currency>
</pricing>
<categories>
<category>Education</category>
<category>Technology</category>
<category>AI</category>
</categories>
<features>
<feature>40 hours of content</feature>
<feature>Hands-on projects</feature>
<feature>Certificate</feature>
</features>
<metadata>
<created>2025-02-12T10:00:00Z</created>
<updated>2025-02-12T15:30:00Z</updated>
<status>active</status>
</metadata>
</product>
</catalog>
15. Quotes – The Authority Builder
Perfect for adding credibility and expert insights.
Prompt:
Share some notable quotes about artificial intelligence from industry leaders.
Example Response:
“AI is probably the most important thing humanity has ever worked on.”
- Sundar Pichai, CEO of Google
“AI will be either the best or worst thing ever to happen to humanity.”
- Elon Musk, CEO of Tesla and SpaceX
“In the long term, artificial intelligence and automation are going to be taking over so much of what gives humans a feeling of purpose.”
- Matt Bellamy, Muse
Power Moves: Combining Formats
The real magic happens when you combine multiple formats. Here are some powerful combinations:
- Documentation: Markdown + Code + Tables
- Product Launches: HTML + JSON + Emojis
- Technical Reports: LaTeX + CSV + ASCII Art
Stay Updated
Keep following Full Stack AI for the latest ChatGPT techniques and format combinations. Remember: AI won’t replace you, but someone using AI effectively might replace your boss. Make sure that someone is you.
Last Updated: February 2025 – We keep this guide fresh with the latest ChatGPT capabilities. Missing something? Drop us a line.