-
Notifications
You must be signed in to change notification settings - Fork 0
Optimize Unicode
github-actions edited this page Jul 24, 2026
·
1 revision
external help file: Detextive.dll-Help.xml Module Name: Detextive online version: https://docs.microsoft.com/dotnet/api/system.string.normalize#system-string-normalize%28system-text-normalizationform%29 schema: 2.0.0
Normalizes Unicode text.
Optimize-Unicode [-NormalizationForm <NormalizationForm>] -InputObject <String>
[-ProgressAction <ActionPreference>] [<CommonParameters>]
{{ Fill in the Description }}
PS C:\> "café" |Optimize-Unicode FormKD
café
The normalized form decomposes the single U+00E9 (`é`) character into U+0065 (`e`) and U+0301 (COMBINING ACUTE ACCENT), which should generally render the same, but may be compatible in different circumstances.
The Unicode string to normalize.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: FalseThe type of normalization to perform.
Type: NormalizationForm
Parameter Sets: (All)
Aliases: Form
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
https://docs.microsoft.com/dotnet/api/system.text.normalizationform