Cool snippets for everyday use.
Url Slug Generator
to slugify strings

Before

Aaron James
Christopher Neal

After

aaron-james
christopher-neal
Remove HTML Tags
strips html tags

Before

<!DOCTYPE html>  
  <html>  
  <head>  
  <title>This is the title</title>  
</head>  
<body>  
  <p>This is the content.</p>
</body>  
</html>

After

This is the title This is the content.
Remove Duplicates Lines
removes duplicate entries by line

Before

lion
dog
dog
dog

After

lion
dog
Extract URL Links from Text
extracts http(s) links from a string

Before

<?xml version="1.0" encoding="UTF-8"?>
  <urlset>
    <url>
      <loc>https://example.com/</loc>
    </url>
    <url>
      <loc>https://domain.com/</loc>
    </url>
  </urlset>

After

https://example.com/
https://domain.com/
Count Duplicate Lines
counts duplicate entries by line

Before

word
tool
word
tool
word

After

3: word
2: tool
Random Password Generator
generates a random password

Before

Numbers of chars: 16

After

Jq8I7L0S69J@glhT
🔒 Client-Side Only
🚀 Fast Processing
💾 No Data Stored
Last updated: September 08, 2025