How to convert TXT to RTF on iPhone
This one is honest housekeeping, not magic. Your text goes into an RTF envelope so that word processors treat it as a document — the words do not change, and no formatting is invented for you.
What RTF is
Rich Text Format is a document format Microsoft published in the 1980s that essentially every word processor still reads: Word, Pages, TextEdit, WordPad, LibreOffice, Google Docs. It stores text along with formatting — fonts, sizes, bold, italic, colours, alignment — as a stream of text-based control words rather than a binary blob.
It became the universal interchange format precisely because it is boring, documented, and owned by nobody in practice. If you need to hand a formatted document to a person whose software you cannot predict, RTF still beats every alternative except PDF.
What this conversion actually does
It writes your text into a valid RTF document with a plain 12-point default font, keeping your line and paragraph breaks. That is the whole operation.
It is worth saying what it does not do, because "rich text" invites the wrong expectation: it does not add formatting. Your text file contains no headings, no bold, no italics — that information was never in it — so none appears in the RTF. What you get is a document that a word processor will open, place a cursor in, and let you format yourself. The conversion moves the text into a container where formatting becomes possible; it does not guess at what you wanted.
If you want structure to survive automatically, the source has to carry it. Write in Markdown instead, and headings, bold, lists and links convert through to a formatted RTF — Markdown to RTF is supported directly.
So why not just rename the file?
People try this, and it is worth explaining why it fails. An RTF file is not plain text with a different extension — it is a specific syntax. A real RTF begins with a control word like {\rtf1\ansi...}, and braces and backslashes inside it are structure, not characters.
Rename a .txt to .rtf and you hand a word processor a file whose extension promises RTF and whose contents are not RTF. Depending on the app you get an error, a fallback to plain text, or a wall of literal control words.
The other half of the problem is your own content. If your text file contains a backslash or a curly brace — a Windows file path, a snippet of code, a JSON fragment — those characters mean something in RTF's syntax. A converter that writes RTF naively produces a document that is subtly corrupt: a stray brace silently swallows the rest of your text. Convexy writes RTF through the system's own RTF writer, which escapes those characters properly and encodes non-ASCII text — accents, curly quotes, other alphabets — the way the format requires. That is the actual value of this conversion over a rename.
When RTF is the right target, and when it is not
Choose RTF when the recipient will edit the document, or when a system specifically asks for .rtf — some submission portals, legal templates, and older corporate workflows still do. It is also the sensible way to get plain text into Word or Pages as a document rather than as a pasted blob.
Choose PDF instead when nobody should edit it and the layout must be identical everywhere. That is the more common need, and it is what most people actually mean when they say they want to "convert a text file to a document".
Choose HTML or Markdown instead when the destination is the web or a notes app. A text file converts to all four.
The conversion runs on your device using the system's own text frameworks. Nothing is uploaded, no account is needed, and there is no server — the app works with the network turned off. Text files being converted for a submission or a client tend to be the ones you would least like sitting in a stranger's upload queue.
A note on Word documents
Convexy does not read or write DOC or DOCX. If your goal is a Word file, converting to RTF and opening it in Word is the closest this app gets — Word will open the RTF happily, and you can save it as a .docx from there if you need that specific extension. There is no path in Convexy that produces a .docx directly, and there will not be one hidden behind a purchase.
How to do it
-
Bring the text file in
Tap Browse files in Convexy and pick the .txt, or share it into the app from Files or any editor.
-
Choose RTF
Convexy offers only what a text file can become: PDF, RTF, HTML and Markdown. Tap RTF.
-
Convert
Tap Convert. There is nothing to configure; special characters, braces and accents are escaped and encoded correctly by the system RTF writer.
-
Save or share
Save the .rtf to Files, or send it straight on. Word, Pages, TextEdit and Google Docs will all open it as an editable document.
-
Format it in a word processor
The RTF arrives unformatted, because your text file had no formatting to carry. Apply headings, bold and styles in whatever app you open it in.
Common questions
Will the RTF have formatting, headings or bold?
No. A plain text file contains no formatting, so there is none to transfer — you get your text in a plain 12-point font, ready to be formatted by hand. Any tool that appears to add headings to a text file is guessing where they belong. If you want structure carried across automatically, write the source in Markdown, which can convert to a formatted RTF.
Can I just rename my .txt file to .rtf instead?
No. RTF has its own syntax — a file that does not begin with the RTF control words is not an RTF, and word processors will either refuse it or show you raw text. Worse, braces and backslashes in your content are structural characters in RTF, so text containing a file path or a code snippet must be escaped properly or the document silently corrupts. That escaping is what this conversion does for you.
Is RTF the same as a Word document?
No. RTF is an open interchange format that Word happens to read. DOC and DOCX are Microsoft's own formats, and Convexy does not support them in either direction. If you need a .docx, open the RTF in Word or Pages and save it as one from there.
Do accents, emoji and non-Latin alphabets survive?
Yes. The RTF is written by the system's own RTF writer, which encodes non-ASCII characters the way the format requires. Your accents, curly quotes, and Cyrillic, Arabic or Chinese text come through intact rather than turning into question marks.
Should I convert to PDF instead?
Usually, yes — if nobody needs to edit the result. PDF fixes the layout so the document looks the same on every device, which is what most people actually want. RTF is the right answer only when the recipient is going to change the text, or when a system specifically demands a .rtf file.