<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://fileformats.archiveteam.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Matsp888</id>
		<title>Just Solve the File Format Problem - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://fileformats.archiveteam.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Matsp888"/>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Special:Contributions/Matsp888"/>
		<updated>2026-05-11T04:10:10Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.2</generator>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-23T15:09:54Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], '''ASCII base-85''', or '''Base85''', is a binary-to-text encoding originally implemented by Paul Rutter in the 'btoa' program. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. A slight modification of it is used in [[PDF]] and [[PostScript]] files. It is also used in the [http://sourceforge.net/projects/mktags/ MkTags Matroska tag editor]. There are several varieties of this encoding.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
In the original [[uuencoding]]-like format used by 'btoa', the encoded data is delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; delimiter marks the beginning of an ASCII base-85 string literal. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker is added by the ASCII85Encode filter when it is closed, hence it should be regarded as being part of the encoded data. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data. In PDF it doesn't matter, since the data (including the EOD marker) is stored in a stream object.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-23T15:08:24Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], '''ASCII base-85''', or '''Base85''', is a binary-to-text encoding originally implemented by Paul Rutter in the 'btoa' program. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. A slight modification of it is used in [[PDF]] and [[PostScript]] files. It is also used in the [http://sourceforge.net/projects/mktags/ MkTags Matroska tag editor]. There are several varieties of this encoding.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
In the original [[uuencoding]]-like format used by 'btoa', the encoded data is delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; delimiter marks the beginning of an ASCII base-85 string literal. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker is added by the ASCII85Encode filter when it is closed, hence it should be regarded as being part of the encoded data. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data. In PDF it doesn't matter, since the data (including the EOD marker) is placed inside a stream object.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-23T14:59:12Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], '''ASCII base-85''', or '''Base85''', is a binary-to-text encoding originally implemented by Paul Rutter in the 'btoa' program. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. A slight modification of it is used in [[PDF]] and [[PostScript]] files. It is also used in the [http://sourceforge.net/projects/mktags/ MkTags Matroska tag editor]. There are several varieties of this encoding.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
In the original [[uuencoding]]-like format used by 'btoa', the encoded data is delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; delimiter marks the beginning of an ASCII base-85 string literal. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker is added by the ASCII85Encode filter when it is closed, hence it should be regarded as being part of the encoded data. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data. In PDF, they solve it by putting the data (including the EOD marker) in a stream object, but that's a different story.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-23T10:25:22Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: /* Identification */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], '''ASCII base-85''', or '''Base85''', is a binary-to-text encoding originally implemented by Paul Rutter in the 'btoa' program. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. A slight modification of it is used in [[PDF]] and [[PostScript]] files. It is also used in the [http://sourceforge.net/projects/mktags/ MkTags Matroska tag editor]. There are several varieties of this encoding.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
The original [[uuencoding]]-like format used in 'btoa' is delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; delimiter marks the beginning of an ASCII base-85 string literal. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker is added by the ASCII85Encode filter when it is closed, hence it should be regarded as being part of the encoded data. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data. In PDF, they solve it by putting the data (including the EOD marker) in a stream object, but that's a different story.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-23T10:25:00Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: /* Identification */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], '''ASCII base-85''', or '''Base85''', is a binary-to-text encoding originally implemented by Paul Rutter in the 'btoa' program. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. A slight modification of it is used in [[PDF]] and [[PostScript]] files. It is also used in the [http://sourceforge.net/projects/mktags/ MkTags Matroska tag editor]. There are several varieties of this encoding.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
The original [[uuencoding]]-like format used in 'btoa' is delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and ends with &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; delimiter marks the beginning of an ASCII base-85 string literal. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker is added by the ASCII85Encode filter when it is closed, hence it should be regarded as being part of the encoded data. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data. In PDF, they solve it by putting the data (including the EOD marker) in a stream object, but that's a different story.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-23T10:23:48Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], '''ASCII base-85''', or '''Base85''', is a binary-to-text encoding originally implemented by Paul Rutter in the 'btoa' program. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. A slight modification of it is used in [[PDF]] and [[PostScript]] files. It is also used in the [http://sourceforge.net/projects/mktags/ MkTags Matroska tag editor]. There are several varieties of this encoding.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
The original [[uuencoding]]-like format used in 'btoa' is delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; delimiter marks the beginning of an ASCII base-85 string literal. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker is added by the ASCII85Encode filter when it is closed, hence it should be regarded as being part of the encoded data. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data. In PDF, they solve it by putting the data (including the EOD marker) in a stream object, but that's a different story.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-23T10:22:23Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], '''ASCII base-85''', or '''Base85''', is a binary-to-text encoding originally implemented by Paul Rutter in the '''btoa''' program. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. A slight modification of it is used in [[PDF]] and [[PostScript]] files. It is also used in the [http://sourceforge.net/projects/mktags/ MkTags Matroska tag editor]. There are several varieties of this encoding.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
The original [[uuencoding]]-like format used in '''btoa''' is delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; delimiter marks the beginning of an ASCII base-85 string literal. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker is added by the ASCII85Encode filter when it is closed, hence it should be regarded as being part of the encoded data. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data. In PDF, they solve it by putting the data (including the EOD marker) in a stream object, but that's a different story.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-22T13:29:14Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], or '''Base85''', is a binary-to-text encoding. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. It is often used in [[PDF]] and [[PostScript]] files, and rarely anywhere else. One example among very few is the [http://sourceforge.net/projects/mktags/ MkTags Matroska tag editor]. There are several varieties of this encoding.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; delimiter marks the beginning of an ASCII base-85 string literal. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker is added by the ASCII85Encode filter when it is closed, hence it should be regarded as being part of the encoded data. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data. In PDF, they solve it by putting the data (including the EOD marker) in a stream object, but that's a different story.&lt;br /&gt;
&lt;br /&gt;
There is also a [[uuencoding]]-like format, delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-22T13:08:07Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], or '''Base85''', is a binary-to-text encoding. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. It is often used in [[PDF]] and [[PostScript]] files, and rarely anywhere else. There are several varieties of it.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; delimiter marks the beginning of an ASCII base-85 string literal. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker is added by the ASCII85Encode filter when it is closed, hence it should be regarded as being part of the encoded data. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data. In PDF, they solve it by putting the data (including the EOD marker) in a stream object, but that's a different story.&lt;br /&gt;
&lt;br /&gt;
There is also a [[uuencoding]]-like format, delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-22T12:38:44Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], or '''Base85''', is a binary-to-text encoding. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. It is often used in [[PDF]] and [[PostScript]] files, and rarely anywhere else. There are several varieties of it.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; token marks the beginning of an ASCII base-85 string literal, hence it is not part of the encoded data. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker, on the other hand, should be regarded as being part of the encoded data, since it is added by the ASCII85Encode filter when it is closed. Outside of PostScript, there is no official delimiter to mark the beginning of ASCII base-85 encoded data.  In PDF, they solve it by putting the data (including the EOD marker) in a stream object, but that's a different story.&lt;br /&gt;
&lt;br /&gt;
There is also a [[uuencoding]]-like format, delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-22T11:57:42Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: Added some links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], or '''Base85''', is a binary-to-text encoding. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. It is often used in [[PDF]] and [[PostScript]] files, and rarely anywhere else. There are several varieties of it.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; token marks the beginning of an ASCII base-85 string literal, hence it is not part of the encoded data. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker, on the other hand, should be regarded as being part of the encoded data, since it is added by the ASCII85Encode filter when it is closed.&lt;br /&gt;
&lt;br /&gt;
There is also a [[uuencoding]]-like format, delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* [http://sourceforge.net/projects/ascii85-tools/ ASCII85-Tools, Perl command-line utilities] - C version also available.&lt;br /&gt;
* [http://sourceforge.net/projects/mpperl-convert-ascii85-xs/ MPPerl::Convert::ASCII85::XS, a Perl module with time-critical code written in C]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-22T11:43:13Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], or '''Base85''', is a binary-to-text encoding. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. It is often used in [[PDF]] and [[PostScript]] files, and rarely anywhere else. There are several varieties of it.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; token marks the beginning of an ASCII base-85 string literal, hence it is not part of the encoded data. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker, on the other hand, should be regarded as being part of the encoded data, since it is added by the ASCII85Encode filter when it is closed.&lt;br /&gt;
&lt;br /&gt;
There is also a [[uuencoding]]-like format, delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/wiki/Ascii85</id>
		<title>Ascii85</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/wiki/Ascii85"/>
				<updated>2015-06-22T11:40:47Z</updated>
		
		<summary type="html">&lt;p&gt;Matsp888: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{FormatInfo&lt;br /&gt;
|formattype=electronic&lt;br /&gt;
|subcat=Transfer Encodings&lt;br /&gt;
}}&lt;br /&gt;
[[Ascii85]], or '''Base85''', is a binary-to-text encoding. It is similar in concept to [[Base64]] and [[Uuencoding|Uuencode]]. It is often used in [[PDF]] and [[PostScript]] files, and rarely anywhere else. There are several varieties of it.&lt;br /&gt;
&lt;br /&gt;
== Identification ==&lt;br /&gt;
In PostScript, the &amp;quot;&amp;lt;code&amp;gt;&amp;amp;lt;~&amp;lt;/code&amp;gt;&amp;quot; token marks the beginning of an ASCII base-85 string literal, hence it is not part of the encoded data. The &amp;quot;&amp;lt;code&amp;gt;~&amp;amp;gt;&amp;lt;/code&amp;gt;&amp;quot; EOD marker, on the other hand, should be regarded as part of the encoded data, since it is added by the ASCII85Encode filter when it is closed.&lt;br /&gt;
&lt;br /&gt;
There is also a [[uuencoding]]-like format, delimited by lines that begin with &amp;quot;&amp;lt;code&amp;gt;xbtoa Begin&amp;lt;/code&amp;gt;&amp;quot; and &amp;quot;&amp;lt;code&amp;gt;xbtoa End&amp;lt;/code&amp;gt;&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
* [http://www.stillhq.com/extracted/ascii85.tgz ascii85.tgz]&lt;br /&gt;
* [ftp://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/btoa-5.2.tar.gz btoa-5.2.tar.gz]&lt;br /&gt;
* Ascii85 libraries are readily available for most popular programming languages.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Wikipedia:Ascii85|Wikipedia article]]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_encode/ Online ASCII85 encoder]&lt;br /&gt;
* [http://www.tools4noobs.com/online_tools/ascii85_decode/ Online ASCII85 decoder]&lt;br /&gt;
* RFC 1924: A Compact Representation of IPv6 Addresses&lt;/div&gt;</summary>
		<author><name>Matsp888</name></author>	</entry>

	</feed>