System.Text.Encodings.Web
9.0.4
Prefix Reserved
See the version list below for details.
dotnet add package System.Text.Encodings.Web --version 9.0.4
NuGet\Install-Package System.Text.Encodings.Web -Version 9.0.4
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.4" />
<PackageVersion Include="System.Text.Encodings.Web" Version="9.0.4" />
<PackageReference Include="System.Text.Encodings.Web" />
paket add System.Text.Encodings.Web --version 9.0.4
#r "nuget: System.Text.Encodings.Web, 9.0.4"
#addin nuget:?package=System.Text.Encodings.Web&version=9.0.4
#tool nuget:?package=System.Text.Encodings.Web&version=9.0.4
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);
// <script>alert('XSS Attack!');</script>
// 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 | Versions 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. |
.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. |
-
.NETFramework 4.6.2
- System.Buffers (>= 4.5.1)
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
.NETStandard 2.0
- System.Buffers (>= 4.5.1)
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (1.5K)
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. |
|
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. |
|
Azure.Core
This is the implementation of the Azure Client Pipeline |
|
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 (281)
Showing the top 20 popular GitHub repositories that depend on System.Text.Encodings.Web:
Repository | Stars |
---|---|
PowerShell/PowerShell
PowerShell for every system!
|
|
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
|
|
unoplatform/uno
Open-source platform for building cross-platform native Mobile, Web, Desktop and Embedded apps quickly. Create rich, C#/XAML, single-codebase apps from any IDE. Hot Reload included! 90m+ NuGet Downloads!!
|
|
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#.
|
|
ThreeMammals/Ocelot
.NET API Gateway
|
|
StockSharp/StockSharp
Algorithmic trading and quantitative trading open source platform to develop trading robots (stock markets, forex, crypto, bitcoins, and options).
|
|
RicoSuter/NSwag
The Swagger/OpenAPI toolchain for .NET, ASP.NET Core and TypeScript.
|
|
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
|
|
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
|
|
ravendb/ravendb
ACID Document Database
|
|
GlitchEnzo/NuGetForUnity
A NuGet Package Manager for Unity
|
|
hardkoded/puppeteer-sharp
Headless Chrome .NET API
|
|
open-telemetry/opentelemetry-dotnet
The OpenTelemetry .NET Client
|
Version | Downloads | Last updated | |
---|---|---|---|
10.0.0-preview.3.25171.5 | 10,888 | 4/10/2025 | |
10.0.0-preview.2.25163.2 | 25,115 | 3/18/2025 | |
10.0.0-preview.1.25080.5 | 31,244 | 2/25/2025 | |
9.0.4 | 885,254 | 4/8/2025 | |
9.0.3 | 2,921,814 | 3/11/2025 | |
9.0.2 | 4,601,476 | 2/11/2025 | |
9.0.1 | 6,112,790 | 1/14/2025 | |
9.0.0 | 19,878,851 | 11/12/2024 | |
9.0.0-rc.2.24473.5 | 1,068,133 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 162,408 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 187,557 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 212,590 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 155,726 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 116,892 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 240,952 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 137,774 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 169,037 | 2/13/2024 | |
8.0.0 | 272,132,158 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 2,074,635 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 569,352 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 600,418 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 339,012 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 286,581 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 527,362 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 488,513 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 519,290 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 273,030 | 2/21/2023 | |
7.0.0 | 309,927,073 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 343,897 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 313,528 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 309,637 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 163,390 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 106,607 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 160,416 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 133,561 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 105,773 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 93,853 | 2/17/2022 | |
6.0.1 | 1,512,880 | 11/12/2024 | |
6.0.0 | 676,103,583 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 626,355 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 462,443 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 135,125 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 104,771 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 131,307 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 106,518 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 336,192 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 181,784 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 102,852 | 2/12/2021 | |
5.0.1 | 139,629,781 | 3/9/2021 | |
5.0.0 | 75,282,962 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 120,918 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 206,538 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 104,666 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 184,305 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 82,674 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 88,643 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 165,170 | 5/18/2020 | |
5.0.0-preview.3.20214.6 | 313,395 | 4/23/2020 | |
5.0.0-preview.2.20160.6 | 163,962 | 4/2/2020 | |
5.0.0-preview.1.20120.5 | 97,000 | 3/16/2020 | |
4.7.2 | 627,454,528 | 3/9/2021 | |
4.7.1 | 86,872,902 | 5/12/2020 | |
4.7.0 | 81,777,949 | 12/3/2019 | |
4.7.0-preview3.19551.4 | 310,131 | 11/13/2019 | |
4.7.0-preview2.19523.17 | 59,536 | 11/1/2019 | |
4.7.0-preview1.19504.10 | 98,544 | 10/15/2019 | |
4.6.0 | 104,339,919 | 9/23/2019 | |
4.6.0-rc1.19456.4 | 83,323 | 9/16/2019 | |
4.6.0-preview9.19421.4 | 155,406 | 9/4/2019 | |
4.6.0-preview9.19416.11 | 2,432 | 9/4/2019 | |
4.6.0-preview8.19405.3 | 112,896 | 8/13/2019 | |
4.6.0-preview7.19362.9 | 5,485 | 7/23/2019 | |
4.6.0-preview6.19303.8 | 7,093 | 6/12/2019 | |
4.6.0-preview6.19264.9 | 2,517 | 9/4/2019 | |
4.6.0-preview5.19224.8 | 3,377 | 5/6/2019 | |
4.6.0-preview4.19212.13 | 2,693 | 4/18/2019 | |
4.6.0-preview3.19128.7 | 11,240 | 3/6/2019 | |
4.6.0-preview.19073.11 | 10,344 | 1/29/2019 | |
4.6.0-preview.18571.3 | 8,664 | 12/3/2018 | |
4.5.1 | 102,340,379 | 3/9/2021 | |
4.5.0 | 857,017,777 | 5/29/2018 | |
4.5.0-rc1 | 505,667 | 5/6/2018 | |
4.5.0-preview2-26406-04 | 708,296 | 4/10/2018 | |
4.5.0-preview1-26216-02 | 618,759 | 2/26/2018 | |
4.4.0 | 246,476,724 | 8/11/2017 | |
4.4.0-preview2-25405-01 | 199,321 | 6/27/2017 | |
4.4.0-preview1-25305-02 | 11,426 | 5/9/2017 | |
4.3.1 | 74,677,461 | 5/9/2017 | |
4.3.0 | 30,078,103 | 11/15/2016 | |
4.3.0-preview1-24530-04 | 207,585 | 10/24/2016 | |
4.0.1 | 47,771,942 | 5/9/2017 | |
4.0.0 | 78,342,828 | 6/27/2016 | |
4.0.0-rc2-24027 | 2,185,596 | 5/16/2016 | |
4.0.0-beta-23516 | 7,128 | 11/18/2015 | |
4.0.0-beta-23409 | 6,611 | 10/15/2015 |