📝✨

Text Prefix & Suffix Tool

Add custom prefix and suffix to each line of your text instantly. Perfect for formatting lists, code snippets, creating HTML tags, or preparing data. Fast, secure, and works entirely in your browser.

🎯 Customize Your Prefix & Suffix

📝 Input Text

0
Characters
0
Words
0
Lines
0
Empty

✨ Output Text

Common Use Cases & Examples

🔸 Bullet Points
Prefix: "• "
apple
banana
cherry
Result:
• apple
• banana
• cherry
📋 HTML List Items
Prefix: "<li>" | Suffix: "</li>"
Home
About
Contact
Result:
<li>Home</li>
<li>About</li>
<li>Contact</li>
🔢 Numbered List
Enable: Add Line Numbers
Step One
Step Two
Step Three
Result:
1. Step One
2. Step Two
3. Step Three
🔍 Search Query Format
Suffix: " site:example.com"
how to bake
best laptop 2025
css grid tutorial
Result:
how to bake site:example.com
best laptop 2025 site:example.com
css grid tutorial site:example.com
💻 Code Commenting
Prefix: "// "
Initialize variables
Loop through array
Return result
Result:
// Initialize variables
// Loop through array
// Return result