Rfc2047EncoderDecoder 1.0.0
dotnet add package Rfc2047EncoderDecoder --version 1.0.0
NuGet\Install-Package Rfc2047EncoderDecoder -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Rfc2047EncoderDecoder" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rfc2047EncoderDecoder" Version="1.0.0" />
<PackageReference Include="Rfc2047EncoderDecoder" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rfc2047EncoderDecoder --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Rfc2047EncoderDecoder, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Rfc2047EncoderDecoder@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rfc2047EncoderDecoder&version=1.0.0
#tool nuget:?package=Rfc2047EncoderDecoder&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
RFC 2047 Encoder / Decoder for DevToys
An extension tool for DevToys that converts text to and from RFC 2047 encoded-word format.
RFC 2047 is commonly used in email headers for non-ASCII text, for example:
- Encoded word:
=?UTF-8?B?57mB6auU5Lit5Y2c?= - Decoded text:
繁體中文
Features
- Encode plain text into RFC 2047 encoded-word format.
- Decode RFC 2047 encoded words back to readable text.
- Toggle between Encode and Decode modes in the DevToys UI.
- Live conversion while typing.
Current Behavior
This project currently implements the following logic:
- Encoding:
- If the input is ASCII-only, the text is returned unchanged.
- If the input contains non-ASCII characters, the tool encodes the full input as UTF-8 Base64 and wraps it as one encoded word:
=?UTF-8?B?<base64>?=
- Decoding:
- Supports both
B(Base64) andQ(Quoted-Printable-like) RFC 2047 modes. - Uses the charset declared in each encoded word and decodes via .NET encodings.
- Decodes all matches in the input that follow the encoded-word pattern.
- Supports both
Usage
- Open DevToys and select RFC 2047 Encoder / Decoder.
- Choose conversion mode:
- Encode: text → RFC 2047 encoded words
- Decode: RFC 2047 encoded words → text
- Enter input in the Input panel.
- Read the result in the Output panel.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- DevToys.Api (>= 2.0.10-preview)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 143 | 5/8/2026 |