40 chars · 1 line
Waiting for input
40 chars · 1 line
Waiting for input
UUID input normalization
VetaTool trims leading and trailing whitespace before checking UUID syntax. A canonical UUID surrounded by ordinary spaces can therefore validate successfully, while spaces inserted inside the UUID still break the required 8-4-4-4-12 layout. This tool is free to use. No account or payment is required.
Last updated
The inspector calls trim before UUID validation, so spaces before the first hexadecimal digit or after the final digit are ignored.
Whitespace inside the UUID is different. It changes the canonical text and causes the format check to fail.
The input contains spaces around an otherwise canonical UUID v4.
550e8400-e29b-41d4-a716-446655440000 Valid UUID v4Common questions
The validator uses JavaScript string trim(), which removes standard leading and trailing whitespace before validation.
No. Internal spaces break the canonical 8-4-4-4-12 UUID text layout and fail the format check.
Debugging a specific UUID issue? Browse UUID troubleshooting.