BinaryEncoding.Base64

Updated on

BinaryEncoding.Base64 (0) is an enumeration that specifies the type of binary encoding. It is a member of the BinaryEncoding.Type and specifies the use of base-64 encoding.

Examples

= Binary.FromText( "1011", BinaryEncoding.Base64 ) // Returns binary with Base64 Encoding
= Binary.From(     "1011", BinaryEncoding.Base64 ) // Returns binary with Base64 Encoding

// Turns binary into text with Base64 Encoding, returns "AQsCFg=="
= Binary.ToText( #binary( { 1, 11, 2, 22 } ), BinaryEncoding.Base64 )

Other related enumerations are:

Applies to

Here’s a list of functions that work with BinaryEncoding.Type:

Contribute » | Contributors: Rick de Groot

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy