Binary plist files are commonly used by macOS and iOS applications because they are compact and efficient. However, they are not human-readable, which makes them difficult to inspect or edit. In this guide, you’ll learn how to convert a binary plist file to XML, so you can read and modify its contents easily.
A binary plist is a serialized version of a property list optimized for:
Unlike XML plist files, binary plist files cannot be opened directly in a text editor. If you try, you’ll see unreadable characters.
Converting to XML allows you to:
XML format is much easier to work with during development or analysis.
Method 1 — Use an online converter (fastest)
The simplest way is to use an online tool like: plist-viewer.com
Steps:
No installation required
Works on Windows, macOS, Linux and mobile devices with modern browsers.
Security is an important concern.
This tool processes files locally in your browser, which means:
This makes it safe for most use cases, including sensitive configuration files.
Method 2 — Use macOS plutil (native tool)
If you have access to macOS, you can use the built-in plutil command:
plutil -convert xml1 input.plist -o output.plist
This converts a binary plist into XML format.
Method 3 — Use scripts or third-party tools
Other options include:
Example in Python:
import plistlib
with open("input.plist", "rb") as f:
data = plistlib.load(f)
with open("output.plist", "wb") as f:
plistlib.dump(data, f)After conversion, the file becomes readable:
<dict> <key>Name</key> <string>Example</string> <key>Enabled</key> <true/> </dict>
By using plist-viewer.com, you agree to our C__C
Cookie Policy
Accept