System.Text.Encodings.Web 9.0.8

Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package System.Text.Encodings.Web --version 9.0.8
                    
NuGet\Install-Package System.Text.Encodings.Web -Version 9.0.8
                    
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="System.Text.Encodings.Web" Version="9.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="System.Text.Encodings.Web" Version="9.0.8" />
                    
Directory.Packages.props
<PackageReference Include="System.Text.Encodings.Web" />
                    
Project file
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 System.Text.Encodings.Web --version 9.0.8
                    
#r "nuget: System.Text.Encodings.Web, 9.0.8"
                    
#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 System.Text.Encodings.Web@9.0.8
                    
#: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=System.Text.Encodings.Web&version=9.0.8
                    
Install as a Cake Addin
#tool nuget:?package=System.Text.Encodings.Web&version=9.0.8
                    
Install as a Cake Tool

About

Provides types for encoding and escaping strings for use in JavaScript, HTML, and URLs.

This package is essential for protecting web applications against cross-site scripting (XSS) attacks by safely encoding text, and it offers extensive support for Unicode, allowing fine-grained control over which characters are encoded and which are left unescaped.

Key Features

  • Safe encoders for HTML, JavaScript, and URL strings.
  • Extensible to support custom encoding scenarios, including the ability to specify Unicode ranges.
  • Helps prevent cross-site scripting (XSS) vulnerabilities.
  • Flexible Unicode encoding with support for specifying individual or predefined ranges to cover broader sets of characters, including options to avoid escaping specific language character sets.

How to Use

Encoding HTML, JavaScript, and URLs

using System.Text.Encodings.Web;

string unsafeString = "<script>alert('XSS Attack!');</script>";

// HTML encode the string to safely display it on a web page.
string safeHtml = HtmlEncoder.Default.Encode(unsafeString);
Console.WriteLine(safeHtml);
// &lt;script&gt;alert(&#x27;XSS Attack!&#x27;);&lt;/script&gt;

// JavaScript encode the string to safely include it in a JavaScript context.
string safeJavaScript = JavaScriptEncoder.Default.Encode(unsafeString);
Console.WriteLine(safeJavaScript);
// \u003Cscript\u003Ealert(\u0027XSS Attack!\u0027);\u003C/script\u003E

string urlPart = "user input with spaces and & symbols";

// URL encode the string to safely include it in a URL.
string encodedUrlPart = UrlEncoder.Default.Encode(urlPart);
Console.WriteLine(encodedUrlPart);
// user%20input%20with%20spaces%20and%20%26%20symbols

Custom Encoding Scenario with Specific Unicode Ranges

using System.Text.Encodings.Web;
using System.Text.Unicode;

TextEncoderSettings customEncoderSettings = new TextEncoderSettings();
customEncoderSettings.AllowCharacters('!', '*', '-', '.', '_', '~'); // RFC 3986 unreserved characters
customEncoderSettings.AllowRange(new UnicodeRange('a', 26));
customEncoderSettings.AllowRange(new UnicodeRange('A', 26));
customEncoderSettings.AllowRange(new UnicodeRange('0', 10));

// Create a URL encoder with the custom settings
UrlEncoder customUrlEncoder = UrlEncoder.Create(customEncoderSettings);

string customUrlPart = "custom data: (@123!)";

// By default, the symbols '(', ')', and '@' are not encoded
string defaultEncoded = UrlEncoder.Default.Encode(customUrlPart);
Console.WriteLine(defaultEncoded);
// custom%20data%3A%20(@123!)

// Now, the symbols '(', ')', and '@' are also encoded
string customEncoded = customUrlEncoder.Encode(customUrlPart);
Console.WriteLine(customEncoded);
// custom%20data%3A%20%28%40123!%29

Serialization with Specific Unicode Character Sets

By default Cyrillic characters are encoded as Unicode escape sequences in JSON.

{
  "Date": "2019-08-01T00:00:00-07:00",
  "TemperatureCelsius": 25,
  "Summary": "\u0436\u0430\u0440\u043A\u043E"
}

This can be customized by providing a custom JavaScriptEncoder to JsonSerializerOptions:

JsonSerializerOptions options = new JsonSerializerOptions
{
    Encoder = JavaScriptEncoder.Create(UnicodeRanges.BasicLatin, UnicodeRanges.Cyrillic),
    WriteIndented = true
};
jsonString = JsonSerializer.Serialize(weatherForecast, options1);
{
  "Date": "2019-08-01T00:00:00-07:00",
  "TemperatureCelsius": 25,
  "Summary": "жарко"
}

More information about this can be found in the How to customize character encoding with System.Text.Json article.

Main Types

The main types provided by this library are:

  • System.Text.Encodings.Web.HtmlEncoder
  • System.Text.Encodings.Web.JavaScriptEncoder
  • System.Text.Encodings.Web.UrlEncoder
  • System.Text.Encodings.Web.TextEncoder
  • System.Text.Encodings.Web.TextEncoderSettings
  • System.Text.Unicode.UnicodeRange
  • System.Text.Unicode.UnicodeRanges

Additional Documentation

Feedback & Contributing

System.Text.Encodings.Web is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1.6K)

Showing the top 5 NuGet packages that depend on System.Text.Encodings.Web:

Package Downloads
System.Text.Json

Provides high-performance and low-allocating types that serialize objects to JavaScript Object Notation (JSON) text and deserialize JSON text to objects, with UTF-8 support built-in. Also provides types to read and write JSON text encoded as UTF-8, and to create an in-memory document object model (DOM), that is read-only, for random access of the JSON elements within a structured view of the data. The System.Text.Json library is built-in as part of the shared framework in .NET Runtime. The package can be installed when you need to use it in other target frameworks.

Azure.Core

This is the implementation of the Azure Client Pipeline

Microsoft.Extensions.DependencyModel

Provides abstractions for reading `.deps` files. When a .NET application is compiled, the SDK generates a JSON manifest file (`<ApplicationName>.deps.json`) that contains information about application dependencies. You can use `Microsoft.Extensions.DependencyModel` to read information from this manifest at run time. This is useful when you want to dynamically compile code (for example, using Roslyn Emit API) referencing the same dependencies as your main application. By default, the dependency manifest contains information about the application's target framework and runtime dependencies. Set the PreserveCompilationContext project property to `true` to additionally include information about reference assemblies used during compilation.

Microsoft.AspNetCore.Http.Abstractions

ASP.NET Core HTTP object model for HTTP requests and responses and also common extension methods for registering middleware in an IApplicationBuilder. Commonly used types: Microsoft.AspNetCore.Builder.IApplicationBuilder Microsoft.AspNetCore.Http.HttpContext Microsoft.AspNetCore.Http.HttpRequest Microsoft.AspNetCore.Http.HttpResponse

Microsoft.Data.SqlClient

The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS). Commonly Used Types: Microsoft.Data.SqlClient.SqlConnection Microsoft.Data.SqlClient.SqlException Microsoft.Data.SqlClient.SqlParameter Microsoft.Data.SqlClient.SqlDataReader Microsoft.Data.SqlClient.SqlCommand Microsoft.Data.SqlClient.SqlTransaction Microsoft.Data.SqlClient.SqlParameterCollection Microsoft.Data.SqlClient.SqlClientFactory When using NuGet 3.x this package requires at least version 3.4.

GitHub repositories (298)

Showing the top 20 popular GitHub repositories that depend on System.Text.Encodings.Web:

Repository Stars
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
peass-ng/PEASS-ng
PEASS - Privilege Escalation Awesome Scripts SUITE (with colors)
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
chocolatey/choco
Chocolatey - the package manager for Windows
dotnet/machinelearning
ML.NET is an open source and cross-platform machine learning framework for .NET.
JeffreySu/WeiXinMPSDK
微信全平台 .NET SDK, Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 8.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.
StockSharp/StockSharp
Algorithmic trading and quantitative trading open source platform to develop trading robots (stock markets, forex, crypto, bitcoins, and options).
Azure/azure-sdk-for-net
This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
dotnet/msbuild
The Microsoft Build Engine (MSBuild) is the build platform for .NET and Visual Studio.
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
microsoft/perfview
PerfView is a CPU and memory performance-analysis tool
microsoft/fluentui-blazor
Microsoft Fluent UI Blazor components library. For use with ASP.NET Core Blazor applications
GlitchEnzo/NuGetForUnity
A NuGet Package Manager for Unity
ravendb/ravendb
ACID Document Database
hardkoded/puppeteer-sharp
Headless Chrome .NET API
open-telemetry/opentelemetry-dotnet
The OpenTelemetry .NET Client
microsurging/surging
Surging is a micro-service engine that provides a lightweight, high-performance, modular RPC request pipeline. support Event-based Asynchronous Pattern and reactive programming ,The service engine supports http, TCP, WS,Grpc, Thrift,Mqtt, UDP, and DNS protocols. It uses ZooKeeper and Consul as a registry, and integrates it. Hash, random, polling, Fair Polling as a load balancing algorithm, built-in service governance to ensure reliable RPC communication, the engine contains Diagnostic, link tracking for protocol and middleware calls, and integration SkyWalking Distributed APM
projectkudu/kudu
Kudu is the engine behind git/hg deployments, WebJobs, and various other features in Azure Web Sites. It can also run outside of Azure.
Version Downloads Last Updated
10.0.0-preview.7.25380.108 20,503 8/12/2025
10.0.0-preview.6.25358.103 27,521 7/15/2025
10.0.0-preview.5.25277.114 53,383 6/6/2025
10.0.0-preview.4.25258.110 58,819 5/12/2025
10.0.0-preview.3.25171.5 91,087 4/10/2025
10.0.0-preview.2.25163.2 60,638 3/18/2025
10.0.0-preview.1.25080.5 58,994 2/25/2025
9.0.8 2,671,652 8/4/2025
9.0.7 2,666,094 7/8/2025
9.0.6 4,383,824 6/10/2025
9.0.5 5,468,986 5/13/2025
9.0.4 8,887,057 4/8/2025
9.0.3 7,981,830 3/11/2025
9.0.2 9,727,045 2/11/2025
9.0.1 11,541,789 1/14/2025
9.0.0 39,449,619 11/12/2024
9.0.0-rc.2.24473.5 2,178,501 10/8/2024
9.0.0-rc.1.24431.7 192,390 9/10/2024
9.0.0-preview.7.24405.7 255,826 8/13/2024
9.0.0-preview.6.24327.7 279,849 7/9/2024
9.0.0-preview.5.24306.7 192,592 6/11/2024
9.0.0-preview.4.24266.19 137,584 5/21/2024
9.0.0-preview.3.24172.9 264,773 4/11/2024
9.0.0-preview.2.24128.5 159,912 3/12/2024
9.0.0-preview.1.24080.9 195,119 2/13/2024
8.0.0 366,496,102 11/14/2023
8.0.0-rc.2.23479.6 2,379,241 10/10/2023
8.0.0-rc.1.23419.4 689,273 9/12/2023
8.0.0-preview.7.23375.6 700,971 8/8/2023
8.0.0-preview.6.23329.7 355,891 7/11/2023
8.0.0-preview.5.23280.8 313,793 6/13/2023
8.0.0-preview.4.23259.5 568,329 5/16/2023
8.0.0-preview.3.23174.8 517,625 4/11/2023
8.0.0-preview.2.23128.3 534,073 3/14/2023
8.0.0-preview.1.23110.8 285,559 2/21/2023
7.0.0 343,722,622 11/7/2022
7.0.0-rc.2.22472.3 362,199 10/11/2022
7.0.0-rc.1.22426.10 321,464 9/14/2022
7.0.0-preview.7.22375.6 316,842 8/9/2022
7.0.0-preview.6.22324.4 166,888 7/12/2022
7.0.0-preview.5.22301.12 110,884 6/14/2022
7.0.0-preview.4.22229.4 165,575 5/10/2022
7.0.0-preview.3.22175.4 136,266 4/13/2022
7.0.0-preview.2.22152.2 108,366 3/14/2022
7.0.0-preview.1.22076.8 94,961 2/17/2022
6.0.1 4,373,463 11/12/2024
6.0.0 784,421,212 11/8/2021
6.0.0-rc.2.21480.5 639,780 10/12/2021
6.0.0-rc.1.21451.13 472,484 9/14/2021
6.0.0-preview.7.21377.19 142,172 8/10/2021
6.0.0-preview.6.21352.12 106,206 7/14/2021
6.0.0-preview.5.21301.5 133,197 6/15/2021
6.0.0-preview.4.21253.7 113,286 5/24/2021
6.0.0-preview.3.21201.4 347,834 4/8/2021
6.0.0-preview.2.21154.6 185,024 3/11/2021
6.0.0-preview.1.21102.12 106,959 2/12/2021
5.0.1 146,664,682 3/9/2021 5.0.1 is deprecated because it is no longer maintained.
5.0.0 78,983,045 11/9/2020 5.0.0 is deprecated because it is no longer maintained; 5.0.0 has at least one vulnerability with critical severity.
5.0.0-rc.2.20475.5 122,908 10/13/2020
5.0.0-rc.1.20451.14 207,140 9/14/2020
5.0.0-preview.8.20407.11 106,069 8/25/2020
5.0.0-preview.7.20364.11 186,558 7/21/2020
5.0.0-preview.6.20305.6 84,432 6/25/2020
5.0.0-preview.5.20278.1 89,953 6/10/2020
5.0.0-preview.4.20251.6 167,307 5/18/2020
5.0.0-preview.3.20214.6 318,011 4/23/2020
5.0.0-preview.2.20160.6 164,669 4/2/2020
5.0.0-preview.1.20120.5 98,720 3/16/2020
4.7.2 731,660,822 3/9/2021
4.7.1 93,480,520 5/12/2020 4.7.1 has at least one vulnerability with critical severity.
4.7.0 85,266,422 12/3/2019 4.7.0 has at least one vulnerability with critical severity.
4.7.0-preview3.19551.4 312,232 11/13/2019 4.7.0-preview3.19551.4 has at least one vulnerability with critical severity.
4.7.0-preview2.19523.17 60,247 11/1/2019 4.7.0-preview2.19523.17 has at least one vulnerability with critical severity.
4.7.0-preview1.19504.10 102,286 10/15/2019 4.7.0-preview1.19504.10 has at least one vulnerability with critical severity.
4.6.0 109,245,665 9/23/2019 4.6.0 has at least one vulnerability with critical severity.
4.6.0-rc1.19456.4 84,235 9/16/2019
4.6.0-preview9.19421.4 155,960 9/4/2019
4.6.0-preview9.19416.11 2,721 9/4/2019
4.6.0-preview8.19405.3 121,136 8/13/2019
4.6.0-preview7.19362.9 5,762 7/23/2019
4.6.0-preview6.19303.8 7,379 6/12/2019
4.6.0-preview6.19264.9 2,811 9/4/2019
4.6.0-preview5.19224.8 3,667 5/6/2019
4.6.0-preview4.19212.13 2,972 4/18/2019
4.6.0-preview3.19128.7 11,521 3/6/2019
4.6.0-preview.19073.11 11,508 1/29/2019
4.6.0-preview.18571.3 8,952 12/3/2018
4.5.1 107,814,930 3/9/2021
4.5.0 933,318,659 5/29/2018 4.5.0 has at least one vulnerability with critical severity.
4.5.0-rc1 507,780 5/6/2018 4.5.0-rc1 has at least one vulnerability with critical severity.
4.5.0-preview2-26406-04 712,580 4/10/2018 4.5.0-preview2-26406-04 has at least one vulnerability with critical severity.
4.5.0-preview1-26216-02 620,833 2/26/2018 4.5.0-preview1-26216-02 has at least one vulnerability with critical severity.
4.4.0 255,638,541 8/11/2017 4.4.0 has at least one vulnerability with critical severity.
4.4.0-preview2-25405-01 200,661 6/27/2017 4.4.0-preview2-25405-01 has at least one vulnerability with critical severity.
4.4.0-preview1-25305-02 11,887 5/9/2017 4.4.0-preview1-25305-02 has at least one vulnerability with critical severity.
4.3.1 76,931,659 5/9/2017 4.3.1 has at least one vulnerability with critical severity.
4.3.0 31,225,007 11/15/2016 4.3.0 has at least one vulnerability with critical severity.
4.3.0-preview1-24530-04 208,248 10/24/2016 4.3.0-preview1-24530-04 has at least one vulnerability with critical severity.
4.0.1 48,458,945 5/9/2017 4.0.1 has at least one vulnerability with critical severity.
4.0.0 82,229,869 6/27/2016 4.0.0 has at least one vulnerability with critical severity.
4.0.0-rc2-24027 2,209,198 5/16/2016
4.0.0-beta-23516 7,541 11/18/2015
4.0.0-beta-23409 7,163 10/15/2015