@digitalpersona/core
Version:
DigitalPersona Web Access Core library
25 lines (16 loc) • 1.24 kB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@digitalpersona/core](./core.md) > [Utf16](./core.utf16.md)
## Utf16 class
Set of converters to UTF16.
<b>Signature:</b>
```typescript
export declare class Utf16
```
## Properties
| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [fromBase64](./core.utf16.frombase64.md) | <code>static</code> | <code>(s: Base64String) => Utf16String</code> | Decodes a Base64-encoded string to a UTF16 string. |
| [fromBase64Url](./core.utf16.frombase64url.md) | <code>static</code> | <code>(s: Base64UrlString) => Utf16String</code> | Decodes a Base64url-encoded string to a UTF16 string. |
| [fromUtf8](./core.utf16.fromutf8.md) | <code>static</code> | <code>(s: Utf8String) => Utf16String</code> | Converts a UTF8 string to a UTF16 string. |
| [noBom](./core.utf16.nobom.md) | <code>static</code> | <code>(s: Utf16String) => Utf16String</code> | Strips a Byte-Order-Mark (BOM) from the UTF16 string. |
| [withBom](./core.utf16.withbom.md) | <code>static</code> | <code>(s: Utf16String) => Utf16String</code> | Appends Byte-Order-Mark (BOM) to the UTF16 string. |