🕐 Time Conversion
Timestamp and local time conversion tool
📅 Current Timestamp
Unix Timestamp (seconds):
{{
currentTimestamp
}}
Current Time:
{{ currentTime }}
⏰ Timestamp to Local Time
{{ convertedTime }}
📆 Local Time to Timestamp
Unix Timestamp (seconds): {{ convertedTimestamp.seconds }}
🔐 Encoding/Decoding
Base64, URL, JWT encoding and decoding tools
🔢 Base64 Encoding/Decoding
{{ base64Result }}
🔗 URL Encoding/Decoding
{{ urlResult }}
🎫 JWT Decoding
{{ jwtResult }}
Unicode Encoding/Decoding
{{ unicodeResult }}
📝 Formatting Tools
JSON, YAML formatting and beautification
{{ searchResults.length > 0 ? `${currentSearchIndex + 1}/${searchResults.length}` :
'No results' }}
⚙️ Generators
Hash, UUID, password, random string generation tools
🔒 Hash Generator
{{ hashResult }}
🆔 UUID Generator
{{ uuidResult }}
🔑 Password Generator
{{ passwordResult }}
🎲 Random String Generator
{{ randomStringResult }}
🔍 Diff Comparison
Side-by-side text content difference comparison tool
+{{ diffStats.added }}
Added Lines
-{{ diffStats.removed }}
Removed Lines
{{ diffStats.unchanged }}
Unchanged Lines
Original
{{ line.lineNumber || '' }}
New
{{ line.lineNumber || '' }}
Text Comparison
+{{ diffStats.added }}
-{{ diffStats.removed }}
{{ line.unifiedNumber || '' }}
🔄 Format Conversion
JSON ↔ YAML conversion tool
{{ converterResult }}
🔧 Regular Expression Tester
Test and debug regular expressions with real-time feedback
🎯 Regular Expression
Pattern:
/{{ regexInput || 'empty' }}/{{ getRegexFlags() }}
❌ {{ regexError }}
⚠️ {{ regexError }}
✅ {{ regexMatches.length }} match(es) found
⚠️ No matches found
💡 For better performance, consider using shorter text
📝 Test Text
🎯 Match Results
Match {{ index + 1 }}
Line {{ match.lineIndex }}, Position {{ match.index
}}
Matched:
{{ match.match }}
Groups:
Group {{ groupIndex + 1 }}:
{{ group || '(empty)' }}