Ukrainian text in your Webflow RSS feed displays as random characters because of an encoding issue—typically a missing or incorrect UTF-8 declaration. RSS readers expect UTF-8 encoding to properly render non-Latin characters like Cyrillic.
1. Understand the Problem
- Webflow RSS feeds use XML format.
- XML requires correct encoding to display special characters.
- Cyrillic characters (like Ukrainian) need UTF-8 encoding; if it's not declared or respected, you'll see random symbols or "mojibake" instead of proper text.
2. Confirm RSS Feed Encoding
- Webflow generates RSS feeds with
<?xml version="1.0" encoding="UTF-8"?> at the top. - View your RSS feed source (e.g., yoursite.com/rss.xml) and confirm it starts with that declaration.
- If it's missing or altered, the feed may not render Ukrainian characters properly.
3. Use a UTF-8 Compatible RSS Reader
- Some RSS readers (especially older or localized apps) default to encodings like ISO-8859-1.
- Test your feed in modern readers like Feedly or Inoreader to verify if the problem occurs there.
- If modern readers display the feed correctly, then the issue lies with the reader tool, not your Webflow RSS.
4. Double-Check CMS Content Input
- Make sure the Ukrainian characters are correctly entered in your Webflow CMS fields—not pasted from a source that might introduce non-standard characters or formatting.
- Sometimes hidden characters from Word/Docs can corrupt the encoding. Clean content with a plain text editor before pasting.
5. Use Plain Text Fields
- If you're using Rich Text fields in your RSS feed bindings, Webflow may include extra HTML.
- Try switching to Plain Text fields where possible in your RSS template to avoid additional encoding confusion.
6. Contact Webflow Support if Header Is Missing
- If your RSS feed doesn’t contain the XML UTF-8 declaration or is being served with incorrect headers, submit a ticket to Webflow Support. This may require their intervention.
Summary
Your Ukrainian characters appear as random symbols due to an encoding issue, most likely involving missing UTF-8 declaration or misbehavior by the RSS reader. Verify that the RSS feed includes encoding="UTF-8", test with modern RSS readers, and ensure your CMS content is clean and properly formatted.